Subversion Repositories Kolibri OS

Rev

Rev 975 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 975 Rev 984
Line 1... Line 1...
1
//BOX_LIB
1
//BOX_LIB
2
dword edit_box_draw = #aEdit_box_draw;
2
dword edit_box_draw = #aEdit_box_draw;
3
dword edit_box_key  = #aEdit_box_key;
3
dword edit_box_key  = #aEdit_box_key;
4
dword edit_box_mouse = #aEdit_box_mouse;
4
dword edit_box_mouse = #aEdit_box_mouse;
5
dword version_ed     = #aVersion_ed;
-
 
-
 
5
 
Line 6... Line 6...
6
 
6
 
7
dword  am__ = 0x0;
7
dword  am__ = 0x0;
Line 8... Line 8...
8
dword  bm__ = 0x0;
8
dword  bm__ = 0x0;
9
 
9
 
10
char aEdit_box_draw[9]  = "edit_box\0";
10
char aEdit_box_draw[9]  = "edit_box\0";
11
char aEdit_box_key[13] = "edit_box_key\0";
-
 
Line 12... Line -...
12
char aEdit_box_mouse[15] = "edit_box_mouse\0";
-
 
13
char aVersion_ed[11] = "version_ed\0";
-
 
14
 
-
 
15
char aCheck_box_draw  [15] = "check_box_draw\0";
-
 
16
char aCheck_box_mouse [16] = "check_box_mouse\0";
-
 
17
char aVersion_ch      [11] = "version_ch\0";
-
 
18
 
-
 
Line 19... Line 11...
19
char aOption_box_draw [16] = "option_box_draw\0";
11
char aEdit_box_key[13] = "edit_box_key\0";
20
char aOption_box_mouse[17] = "option_box_mouse\0";
12
char aEdit_box_mouse[15] = "edit_box_mouse\0";
21
char aVersion_op      [11] = "version_op\0" ;
13
 
22
 
14
 
Line 23... Line -...
23
 
-
 
24
struct edit_box{
15
 
25
dword width, left, top, color, shift_color, focus_border_color, blur_border_color,
16
struct edit_box{
26
text_color, max, text, flags, size, pos, offset, cl_curs_x, cl_curs_y, shift, shift_old;
17
dword width, left, top, color, shift_color, focus_border_color, blur_border_color,
27
};
18
text_color, max, text, flags, size, pos, offset, cl_curs_x, cl_curs_y, shift, shift_old;
28
 
19
};
29
 
20