Subversion Repositories Kolibri OS

Rev

Rev 1032 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1032 Rev 1068
1
ed_struc_size=72
1
ed_struc_size=72
2
struc  edit_box width,left,top,color,shift_color,focus_border_color,\
2
struc  edit_box width,left,top,color,shift_color,focus_border_color,\
3
       blur_border_color,text_color,max,text,flags,size,pos
3
       blur_border_color,text_color,max,text,flags,size,pos
4
{
4
{
5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;Bit mask from editbox 
6
;Bit mask from editbox 
7
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8
ed_figure_only= 1000000000000000b   ;®¤­¨ ᨬ¢®«ë 
8
ed_figure_only= 1000000000000000b   ;®¤­¨ ᨬ¢®«ë 
9
ed_always_focus= 100000000000000b
9
ed_always_focus= 100000000000000b
10
ed_focus=                     10b   ;䮪ãá ¯à¨«®¦¥­¨ï
10
ed_focus=                     10b   ;䮪ãá ¯à¨«®¦¥­¨ï
11
ed_shift_on=                1000b   ;¥á«¨ ­¥ ãáâ ­®¢«¥­ -§­ ç¨â ¢¯¥à¢ë¥ ­ ¦ â shift,¥á«¨ ¡ë« ãáâ ­®¢«¥­, §­ ç¨â ¬ë 㦥 çâ® - â® ¤¥« «¨ 㤥ন¢ ï shift
11
ed_shift_on=                1000b   ;¥á«¨ ­¥ ãáâ ­®¢«¥­ -§­ ç¨â ¢¯¥à¢ë¥ ­ ¦ â shift,¥á«¨ ¡ë« ãáâ ­®¢«¥­, §­ ç¨â ¬ë 㦥 çâ® - â® ¤¥« «¨ 㤥ন¢ ï shift
12
ed_shift_on_off=1111111111110111b
12
ed_shift_on_off=1111111111110111b
13
ed_shift=                    100b   ;¢ª«îç ¥âáï ¯à¨ ­ ¦ â¨¨ ­  shift â.¥. ¥á«¨ ­ ¦¨¬ î
13
ed_shift=                    100b   ;¢ª«îç ¥âáï ¯à¨ ­ ¦ â¨¨ ­  shift â.¥. ¥á«¨ ­ ¦¨¬ î
14
ed_shift_off=   1111111111111011b
14
ed_shift_off=   1111111111111011b
15
ed_shift_bac=              10000b   ;¡¨â ¤«ï ®ç¨á⪨ ¢ë¤¥«¥­®£® shift â.¥. ¯à¨ ãáâ ­®¢ª¥ £®¢®à¨â çâ® ¥áâì ¢ë¤¥«¥­¨¥
15
ed_shift_bac=              10000b   ;¡¨â ¤«ï ®ç¨á⪨ ¢ë¤¥«¥­®£® shift â.¥. ¯à¨ ãáâ ­®¢ª¥ £®¢®à¨â çâ® ¥áâì ¢ë¤¥«¥­¨¥
16
ed_shift_bac_cl=1111111111101111b   ;®ç¨á⪠ ¯à¨ 㤠«¥­¨¨ ¢ë¤¥«¥­¨ï
16
ed_shift_bac_cl=1111111111101111b   ;®ç¨á⪠ ¯à¨ 㤠«¥­¨¨ ¢ë¤¥«¥­¨ï
17
ed_shift_cl=    1111111111100011b
17
ed_shift_cl=    1111111111100011b
18
ed_shift_mcl=   1111111111111011b
18
ed_shift_mcl=   1111111111111011b
19
ed_left_fl=               100000b
19
ed_left_fl=               100000b
20
ed_right_fl=    1111111111011111b
20
ed_right_fl=    1111111111011111b
21
ed_offset_fl=            1000000b
21
ed_offset_fl=            1000000b
22
ed_offset_cl=   1111111110111111b
22
ed_offset_cl=   1111111110111111b
23
ed_insert=              10000000b
23
ed_insert=              10000000b
24
ed_insert_cl=   1111111101111111b
24
ed_insert_cl=   1111111101111111b
25
ed_mouse_on =          100000000b
25
ed_mouse_on =          100000000b
26
ed_mous_adn_b=         100011000b
26
ed_mous_adn_b=         100011000b
27
ed_mouse_on_off=1111111011111111b
27
ed_mouse_on_off=1111111011111111b
28
ed_height=14 ; ¢ëá®â 
28
ed_height=14 ; ¢ëá®â 
29
 
29
 
30
.width dd width
30
.width dd width
31
.left dd left
31
.left dd left
32
.top dd top
32
.top dd top
33
.color dd color
33
.color dd color
34
.shift_color dd shift_color
34
.shift_color dd shift_color
35
.focus_border_color dd focus_border_color
35
.focus_border_color dd focus_border_color
36
.blur_border_color dd blur_border_color
36
.blur_border_color dd blur_border_color
37
.text_color dd text_color
37
.text_color dd text_color
38
.max dd max
38
.max dd max
39
.text dd text
39
.text dd text
40
.flags dd flags+0
40
.flags dd flags+0
41
.size dd size+0
41
.size dd size+0
42
.pos dd pos+0
42
.pos dd pos+0
43
.offset dd 0
43
.offset dd 0
44
.cl_curs_x dd 0
44
.cl_curs_x dd 0
45
.cl_curs_y dd 0
45
.cl_curs_y dd 0
46
.shift   dd 0
46
.shift   dd 0
47
.shift_old   dd 0
47
.shift_old   dd 0
48
}
48
}
49
struc check_box left,top,ch_text_margin,ch_size,color,border_color,text_color,text,ch_text_length,flags
49
struc check_box left,top,ch_text_margin,ch_size,color,border_color,text_color,text,ch_text_length,flags
50
{        ;áâàãªâãà  ¯ à ¬¥â஢ ¤«ï 祪 ¡®ªá 
50
{        ;áâàãªâãà  ¯ à ¬¥â஢ ¤«ï 祪 ¡®ªá 
51
ch_flag_en=10b
51
ch_flag_en=10b
52
.left: dw left      ;+0        ;¯®«®¦¥­¨¥ ¯® å
52
.left: dw left      ;+0        ;¯®«®¦¥­¨¥ ¯® å
53
.top: dw top        ;¯®«®¦¥­¨¥ ¯® ã
53
.top: dw top        ;¯®«®¦¥­¨¥ ¯® ã
54
.ch_text_margin:  dd ch_text_margin ;à ááâ®ï­¨¥ ®â ¯àאַ㣮«ì­¨ª  祪 ¡®ªá  ¤® ­ ¤¯¨á¨
54
.ch_text_margin:  dd ch_text_margin ;à ááâ®ï­¨¥ ®â ¯àאַ㣮«ì­¨ª  祪 ¡®ªá  ¤® ­ ¤¯¨á¨
55
.ch_size: dd ch_size ;à §¬¥à ª¢ ¤à â  祪 ¡®ªá , ¤«ï ¯à¨¬¥à  12
55
.ch_size: dd ch_size ;à §¬¥à ª¢ ¤à â  祪 ¡®ªá , ¤«ï ¯à¨¬¥à  12
56
.color: dd color    ;梥⠢­ãâਠ祪¡®ªá 
56
.color: dd color    ;梥⠢­ãâਠ祪¡®ªá 
57
.border_color: dd border_color ;梥â à ¬ª¨
57
.border_color: dd border_color ;梥â à ¬ª¨
58
.text_color: dd text_color     ;梥⠭ ¤¯¨á¨
58
.text_color: dd text_color     ;梥⠭ ¤¯¨á¨
59
.text: dd text                 ; ¤à¥á ¢ ª®¤¥ ¯à®£à ¬¬ë £¤¥ à á¯®«®¦¥­ ⥪áâ
59
.text: dd text                 ; ¤à¥á ¢ ª®¤¥ ¯à®£à ¬¬ë £¤¥ à á¯®«®¦¥­ ⥪áâ
60
.ch_text_length: dd ch_text_length ;¤«¨­­  áâப¨ á ᨬ¢®« ¬¨
60
.ch_text_length: dd ch_text_length ;¤«¨­­  áâப¨ á ᨬ¢®« ¬¨
61
.flags: dd flags+0   ; ä« £¨        
61
.flags: dd flags+0   ; ä« £¨        
62
}
62
}
63
struc option_box point_gr,left,top,op_text_margin,op_size,color,border_color,text_color,text,op_text_length,flags
63
struc option_box point_gr,left,top,op_text_margin,op_size,color,border_color,text_color,text,op_text_length,flags
64
{        ;áâàãªâãà  ¯ à ¬¥â஢ ¤«ï 祪 ¡®ªá 
64
{        ;áâàãªâãà  ¯ à ¬¥â஢ ¤«ï 祪 ¡®ªá 
65
op_flag_en=10b
65
op_flag_en=10b
66
.option_group: dd point_gr
66
.option_group: dd point_gr
67
.left: dw left      ;+0        ;¯®«®¦¥­¨¥ ¯® å
67
.left: dw left      ;+0        ;¯®«®¦¥­¨¥ ¯® å
68
.top: dw top        ;¯®«®¦¥­¨¥ ¯® ã
68
.top: dw top        ;¯®«®¦¥­¨¥ ¯® ã
69
.ch_text_margin:  dd op_text_margin ;à ááâ®ï­¨¥ ®â ¯àאַ㣮«ì­¨ª  祪 ¡®ªá  ¤® ­ ¤¯¨á¨
69
.ch_text_margin:  dd op_text_margin ;à ááâ®ï­¨¥ ®â ¯àאַ㣮«ì­¨ª  祪 ¡®ªá  ¤® ­ ¤¯¨á¨
70
.ch_size: dd op_size ;à §¬¥à ª¢ ¤à â  祪 ¡®ªá , ¤«ï ¯à¨¬¥à  12
70
.ch_size: dd op_size ;à §¬¥à ª¢ ¤à â  祪 ¡®ªá , ¤«ï ¯à¨¬¥à  12
71
.color: dd color    ;梥⠢­ãâਠ祪¡®ªá 
71
.color: dd color    ;梥⠢­ãâਠ祪¡®ªá 
72
.border_color: dd border_color ;梥â à ¬ª¨
72
.border_color: dd border_color ;梥â à ¬ª¨
73
.text_color: dd text_color     ;梥⠭ ¤¯¨á¨
73
.text_color: dd text_color     ;梥⠭ ¤¯¨á¨
74
.text: dd text                 ; ¤à¥á ¢ ª®¤¥ ¯à®£à ¬¬ë £¤¥ à á¯®«®¦¥­ ⥪áâ
74
.text: dd text                 ; ¤à¥á ¢ ª®¤¥ ¯à®£à ¬¬ë £¤¥ à á¯®«®¦¥­ ⥪áâ
75
.ch_text_length: dd op_text_length ;¤«¨­­  áâப¨ á ᨬ¢®« ¬¨
75
.ch_text_length: dd op_text_length ;¤«¨­­  áâப¨ á ᨬ¢®« ¬¨
76
.flags: dd flags+0   ; ä« £¨        
76
.flags: dd flags+0   ; ä« £¨        
77
}
77
}
-
 
78