Subversion Repositories Kolibri OS

Rev

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

Rev 3839 Rev 4674
Line 15... Line 15...
15
dword scrollbar_h_mouse = #aScrollbar_h_mouse;
15
dword scrollbar_h_mouse = #aScrollbar_h_mouse;
16
dword version_scrollbar = #aVersion_scrollbar;
16
dword version_scrollbar = #aVersion_scrollbar;
Line 17... Line 17...
17
 
17
 
18
dword PathShow_prepare = #aPathShow_prepare;
18
dword PathShow_prepare = #aPathShow_prepare;
-
 
19
dword PathShow_draw    = #aPathShow_draw;
-
 
20
 
-
 
21
dword progressbar_draw = #aProgressbar_draw;
-
 
22
dword progressbar_progress = #aProgressbar_progress;
19
dword PathShow_draw    = #aPathShow_draw;
23
 
Line 20... Line 24...
20
$DD 2 dup 0
24
$DD 2 dup 0
21
 
25
 
22
char aEdit_box_draw [9]     = "edit_box\0";
26
char aEdit_box_draw [9]     = "edit_box\0";
Line 40... Line 44...
40
char aVersion_op       [11] = "version_op\0" ;
44
char aVersion_op       [11] = "version_op\0" ;
Line 41... Line 45...
41
 
45
 
42
char aPathShow_prepare [17] = "PathShow_prepare\0";
46
char aPathShow_prepare [17] = "PathShow_prepare\0";
Line -... Line 47...
-
 
47
char aPathShow_draw    [14] = "PathShow_draw\0";
-
 
48
 
-
 
49
char aProgressbar_draw  [17] = "progressbar_draw\0";
Line 43... Line 50...
43
char aPathShow_draw    [14] = "PathShow_draw\0";
50
char aProgressbar_progress[21] = "progressbar_progress\0";
44
 
51
 
45
 
52
 
46
struct PathShow_data
53
struct PathShow_data
Line 99... Line 106...
99
position2,//	equ [edi+72]
106
position2,//	equ [edi+72]
100
work_size,//	equ [edi+76]
107
work_size,//	equ [edi+76]
101
all_redraw,//	equ [edi+80]
108
all_redraw,//	equ [edi+80]
102
ar_offset;//	equ [edi+84]
109
ar_offset;//	equ [edi+84]
103
};
110
};
104
111
 
-
 
112
struct pb //progressbar
-
 
113
{
-
 
114
dword value,
-
 
115
left,
-
 
116
top,
-
 
117
width,
-
 
118
height,
-
 
119
style,
-
 
120
min,
-
 
121
max,
-
 
122
back_color,
-
 
123
progress_color,
-
 
124
frame_color;
-
 
125
};
-
 
126
105
127