Subversion Repositories Kolibri OS

Rev

Rev 6457 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6457 Rev 6479
Line 1... Line 1...
1
#ifndef KOLIBRI_COLORS_H
1
#ifndef KOLIBRI_COLORS_H
2
#define KOLIBRI_COLORS_H
2
#define KOLIBRI_COLORS_H
-
 
3
/*
-
 
4
  * +0: dword: frames - öâåò ðàìêè
-
 
5
  * +4: dword: grab - öâåò çàãîëîâêà
-
 
6
  * +8: dword: grab_button - öâåò êíîïêè íà ïîëîñå çàãîëîâêà
-
 
7
  * +12 = +0xC: dword: grab_button_text - öâåò òåêñòà íà êíîïêå
-
 
8
    íà ïîëîñå çàãîëîâêà
-
 
9
  * +16 = +0x10: dword: grab_text - öâåò òåêñòà íà çàãîëîâêå
-
 
10
  * +20 = +0x14: dword: work - öâåò ðàáî÷åé îáëàñòè
-
 
11
  * +24 = +0x18: dword: work_button - öâåò êíîïêè â ðàáî÷åé îáëàñòè
-
 
12
  * +28 = +0x1C: dword: work_button_text - öâåò òåêñòà íà êíîïêå
-
 
13
    â ðàáî÷åé îáëàñòè
-
 
14
  * +32 = +0x20: dword: work_text - öâåò òåêñòà â ðàáî÷åé îáëàñòè
-
 
15
  * +36 = +0x24: dword: work_graph - öâåò ãðàôèêè â ðàáî÷åé îáëàñòè
-
 
16
*/
-
 
17
 
3
typedef struct {
18
typedef struct {
4
  unsigned int color_frame_area;
19
  unsigned int color_frame_area; // 0 öâåò ðàìêè
5
  unsigned int color_grab_bar;
20
  unsigned int color_grab_bar; // 4
6
  unsigned int color_grab_bar_button;
21
  unsigned int color_grab_bar_button; // 8
7
  unsigned int color_grab_button_text;
22
  unsigned int color_grab_button_text; // 12
8
  unsigned int color_grab_text;
23
  unsigned int color_grab_text; // 16
9
  unsigned int color_work_area;
24
  unsigned int color_work_area; // 20
10
  unsigned int color_work_button;
25
  unsigned int color_work_button; // 24
11
  unsigned int color_work_button_text;
26
  unsigned int color_work_button_text; // 28
12
  unsigned int color_work_text;
27
  unsigned int color_work_text; // 32
13
  unsigned int color_work_graph;
28
  unsigned int color_work_graph; // 36
14
}kolibri_system_colors;
29
}kolibri_system_colors;
Line 15... Line 30...
15
 
30
 
Line 16... Line 31...
16
kolibri_system_colors kolibri_color_table;
31
kolibri_system_colors kolibri_color_table;