Subversion Repositories Kolibri OS

Rev

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

Rev 1464 Rev 1489
1
;*****************************************************************************
1
;*****************************************************************************
2
; Box_Lib - library of graphical components
2
; Box_Lib - library of graphical components
3
;
3
;
4
; Authors:
4
; Authors:
5
; Alexey Teplov aka 
5
; Alexey Teplov aka 
6
; Marat Zakiyanov aka Mario79, aka Mario
6
; Marat Zakiyanov aka Mario79, aka Mario
7
; Evtikhov Maxim aka Maxxxx32
7
; Evtikhov Maxim aka Maxxxx32
8
; Eugene Grechnikov aka Diamond
8
; Eugene Grechnikov aka Diamond
9
; hidnplayr
9
; hidnplayr
10
; Igor Afanasiev aka IgorA
10
; Igor Afanasiev aka IgorA
11
;*****************************************************************************
11
;*****************************************************************************
12
 
12
 
13
format MS COFF
13
format MS COFF
14
 
14
 
15
public EXPORTS
15
public EXPORTS
16
 
16
 
17
section '.flat' code readable align 16
17
section '.flat' code readable align 16
18
include '../../../../macros.inc'
18
include '../../../../macros.inc'
19
include '../../../../proc32.inc'
19
include '../../../../proc32.inc'
20
include 'bl_sys.mac'
20
include 'bl_sys.mac'
21
include 'box_lib.mac' ;macro which should make life easier :)
21
include 'box_lib.mac' ;macro which should make life easier :)
22
 
22
 
23
;-----------------------------------------------------------------------------
23
;-----------------------------------------------------------------------------
24
;ôóíêöèÿ äëÿ âûäåëåíèÿ ïàìÿòè
24
mem.alloc   dd ? ;ôóíêöèÿ äëÿ âûäåëåíèÿ ïàìÿòè
25
;input:
-
 
26
; ecx = size data
-
 
27
;otput:
-
 
28
; eax = pointer to memory
-
 
29
align 4
-
 
30
mem_Alloc:
-
 
31
  push ebx
-
 
32
  mov eax,68
-
 
33
  mov ebx,12
-
 
34
  int 0x40
-
 
35
  pop ebx
-
 
36
  ret
-
 
37
;ôóíêöèÿ äëÿ îñâîáîæäåíèÿ ïàìÿòè
25
mem.free    dd ? ;ôóíêöèÿ äëÿ îñâîáîæäåíèÿ ïàìÿòè
38
;input:
-
 
39
; ecx = pointer to memory
-
 
40
align 4
-
 
41
proc mem_Free, mptr:dword
-
 
42
	push eax ebx ecx
-
 
43
	mov ecx,[mptr]
-
 
44
	cmp ecx,0
-
 
45
	jz @f
-
 
46
		mov eax,68
-
 
47
		mov ebx,13
-
 
48
		int 0x40
-
 
49
	@@:
-
 
50
	pop ecx ebx eax
-
 
51
	ret
-
 
52
endp
-
 
53
;ôóíêöèÿ äëÿ ïåðåðàñïðåäåëåíèÿ ïàìÿòè
26
mem.realloc dd ? ;ôóíêöèÿ äëÿ ïåðåðàñïðåäåëåíèÿ ïàìÿòè
54
;otput:
-
 
55
; eax = pointer to memory
-
 
56
align 4
-
 
57
proc mem_ReAlloc, mptr:dword, size:dword
-
 
58
	push ebx ecx edx
27
dll.load    dd ?
59
	mov	edx, [mptr]
-
 
60
	mov	ecx, [size]
-
 
61
	mcall 68, 20
-
 
62
	pop	edx ecx ebx
-
 
63
	ret
-
 
64
endp
-
 
65
 
28
 
66
;----------------------------------------------------
29
;----------------------------------------------------
67
;EditBox
30
;EditBox
68
;----------------------------------------------------
31
;----------------------------------------------------
69
align 16
32
align 16
70
use_editbox_draw	;macro reveals the function of the display.
33
use_editbox_draw	;macro reveals the function of the display.
71
align 16
34
align 16
72
use_editbox_key 	;macro reveals processing function of the keypad.
35
use_editbox_key 	;macro reveals processing function of the keypad.
73
align 16
36
align 16
74
use_editbox_mouse	;macro reveals processing function of the mouse.
37
use_editbox_mouse	;macro reveals processing function of the mouse.
75
 
38
 
76
;----------------------------------------------------
39
;----------------------------------------------------
77
;CheckBox
40
;CheckBox
78
;----------------------------------------------------
41
;----------------------------------------------------
79
align 16
42
align 16
80
use_checkbox_draw	;macro reveals the function of the display.
43
use_checkbox_draw	;macro reveals the function of the display.
81
align 16
44
align 16
82
use_checkbox_mouse	;macro reveals processing function of the mouse.
45
use_checkbox_mouse	;macro reveals processing function of the mouse.
83
 
46
 
84
 
47
 
85
;--------------------------------------------------
48
;--------------------------------------------------
86
;radiobutton Group
49
;radiobutton Group
87
;--------------------------------------------------
50
;--------------------------------------------------
88
align 16
51
align 16
89
use_optionbox_driver	;macro that control the operating modes
52
use_optionbox_driver	;macro that control the operating modes
90
align 16
53
align 16
91
use_optionbox_draw	;macro reveals the function of the display.
54
use_optionbox_draw	;macro reveals the function of the display.
92
align 16
55
align 16
93
use_optionbox_mouse	;macro reveals processing function of the mouse.
56
use_optionbox_mouse	;macro reveals processing function of the mouse.
94
 
57
 
95
;--------------------------------------------------
58
;--------------------------------------------------
96
;scrollbar Group
59
;scrollbar Group
97
;--------------------------------------------------
60
;--------------------------------------------------
98
align 16
61
align 16
99
use_scroll_bar
62
use_scroll_bar
100
align 16
63
align 16
101
use_scroll_bar_vertical
64
use_scroll_bar_vertical
102
align 16
65
align 16
103
use_scroll_bar_horizontal
66
use_scroll_bar_horizontal
104
 
67
 
105
;--------------------------------------------------
68
;--------------------------------------------------
106
;dinamic button Group
69
;dinamic button Group
107
;--------------------------------------------------
70
;--------------------------------------------------
108
align 16
71
align 16
109
use_dinamic_button
72
use_dinamic_button
110
 
73
 
111
;--------------------------------------------------
74
;--------------------------------------------------
112
;menubar Group
75
;menubar Group
113
;--------------------------------------------------
76
;--------------------------------------------------
114
align 16
77
align 16
115
use_menu_bar
78
use_menu_bar
116
 
79
 
117
;--------------------------------------------------
80
;--------------------------------------------------
118
;filebrowser Group
81
;filebrowser Group
119
;--------------------------------------------------
82
;--------------------------------------------------
120
align 16
83
align 16
121
use_file_browser
84
use_file_browser
122
 
85
 
123
;--------------------------------------------------
86
;--------------------------------------------------
124
;tree list
87
;tree list
125
;--------------------------------------------------
88
;--------------------------------------------------
126
align 16
89
align 16
127
use_tree_list
90
use_tree_list
128
 
91
 
129
;--------------------------------------------------
92
;--------------------------------------------------
130
;PathShow Group
93
;PathShow Group
131
;--------------------------------------------------
94
;--------------------------------------------------
132
align 16
95
align 16
133
use_path_show
96
use_path_show
134
 
97
 
135
;--------------------------------------------------
98
;--------------------------------------------------
136
;text editor
99
;text editor
137
;--------------------------------------------------
100
;--------------------------------------------------
138
align 16
101
align 16
139
use_text_edit
102
use_text_edit
-
 
103
 
-
 
104
;input:
-
 
105
; eax = óêàçàòåëü íà ôóíêöèþ âûäåëåíèÿ ïàìÿòè
-
 
106
; ebx = ... îñâîáîæäåíèÿ ïàìÿòè
-
 
107
; ecx = ... ïåðåðàñïðåäåëåíèÿ ïàìÿòè
140
 
108
; edx = ... çàãðóçêè áèáëèîòåêè (ïîêà íå èñïîëüçóåòñÿ)
141
align 16
109
align 16
-
 
110
lib_init:
-
 
111
	mov	[mem.alloc], eax
-
 
112
	mov	[mem.free], ebx
-
 
113
	mov	[mem.realloc], ecx
142
init:
114
	mov	[dll.load], edx
143
ret
115
ret
144
 
116
 
145
 
117
 
146
align 16
118
align 16
147
EXPORTS:
119
EXPORTS:
148
 
120
 
149
 
121
 
150
dd	sz_init,			init
122
dd	sz_init,			lib_init
151
dd	sz_version,			0x00000001
123
dd	sz_version,			0x00000001
152
 
124
 
153
dd	sz_edit_box,			edit_box
125
dd	sz_edit_box,			edit_box
154
dd	sz_edit_box_key,		edit_box_key
126
dd	sz_edit_box_key,		edit_box_key
155
dd	sz_edit_box_mouse,		edit_box_mouse
127
dd	sz_edit_box_mouse,		edit_box_mouse
156
dd	szVersion_ed,			0x00000001
128
dd	szVersion_ed,			0x00000001
157
 
129
 
158
dd	sz_check_box_draw,		check_box_draw
130
dd	sz_check_box_draw,		check_box_draw
159
dd	sz_check_box_mouse,		check_box_mouse
131
dd	sz_check_box_mouse,		check_box_mouse
160
dd	szVersion_ch,			0x00000001
132
dd	szVersion_ch,			0x00000001
161
 
133
 
162
dd	sz_option_box_draw,		option_box_draw
134
dd	sz_option_box_draw,		option_box_draw
163
dd	sz_option_box_mouse,		option_box_mouse
135
dd	sz_option_box_mouse,		option_box_mouse
164
dd	szVersion_op,			0x00000001
136
dd	szVersion_op,			0x00000001
165
 
137
 
166
dd	sz_Scrollbar_ver_draw,		scroll_bar_vertical.draw
138
dd	sz_Scrollbar_ver_draw,		scroll_bar_vertical.draw
167
dd	sz_Scrollbar_ver_mouse, 	scroll_bar_vertical.mouse
139
dd	sz_Scrollbar_ver_mouse, 	scroll_bar_vertical.mouse
168
dd	sz_Scrollbar_hor_draw,		scroll_bar_horizontal.draw
140
dd	sz_Scrollbar_hor_draw,		scroll_bar_horizontal.draw
169
dd	sz_Scrollbar_hor_mouse, 	scroll_bar_horizontal.mouse
141
dd	sz_Scrollbar_hor_mouse, 	scroll_bar_horizontal.mouse
170
dd	szVersion_scrollbar,		0x00010001
142
dd	szVersion_scrollbar,		0x00010001
171
 
143
 
172
dd	sz_Dbutton_draw,		dinamic_button.draw
144
dd	sz_Dbutton_draw,		dinamic_button.draw
173
dd	sz_Dbutton_mouse,		dinamic_button.mouse
145
dd	sz_Dbutton_mouse,		dinamic_button.mouse
174
dd	szVersion_dbutton,		0x00010001
146
dd	szVersion_dbutton,		0x00010001
175
 
147
 
176
dd	sz_Menu_bar_draw,		menu_bar.draw
148
dd	sz_Menu_bar_draw,		menu_bar.draw
177
dd	sz_Menu_bar_mouse,		menu_bar.mouse
149
dd	sz_Menu_bar_mouse,		menu_bar.mouse
178
dd	sz_Menu_bar_activate,		menu_bar.activate
150
dd	sz_Menu_bar_activate,		menu_bar.activate
179
dd	szVersion_menu_bar,		0x00010002
151
dd	szVersion_menu_bar,		0x00010002
180
 
152
 
181
dd	sz_FileBrowser_draw,		fb_draw_panel
153
dd	sz_FileBrowser_draw,		fb_draw_panel
182
dd	sz_FileBrowser_mouse,		fb_mouse
154
dd	sz_FileBrowser_mouse,		fb_mouse
183
dd	sz_FileBrowser_key,		fb_key
155
dd	sz_FileBrowser_key,		fb_key
184
dd	szVersion_FileBrowser,		0x00010001
156
dd	szVersion_FileBrowser,		0x00010001
185
 
157
 
186
dd	sz_tl_data_init,		tl_data_init
158
dd	sz_tl_data_init,		tl_data_init
187
dd	sz_tl_data_clear,		tl_data_clear
159
dd	sz_tl_data_clear,		tl_data_clear
188
dd	sz_tl_info_clear,		tl_info_clear
160
dd	sz_tl_info_clear,		tl_info_clear
189
dd	sz_tl_key,			tl_key
161
dd	sz_tl_key,			tl_key
190
dd	sz_tl_mouse,			tl_mouse
162
dd	sz_tl_mouse,			tl_mouse
191
dd	sz_tl_draw,			tl_draw
163
dd	sz_tl_draw,			tl_draw
192
dd	sz_tl_info_undo,		tl_info_undo
164
dd	sz_tl_info_undo,		tl_info_undo
193
dd	sz_tl_info_redo,		tl_info_redo
165
dd	sz_tl_info_redo,		tl_info_redo
194
dd	sz_tl_node_add, 		tl_node_add
166
dd	sz_tl_node_add, 		tl_node_add
195
dd	sz_tl_node_set_data,		tl_node_set_data
167
dd	sz_tl_node_set_data,		tl_node_set_data
196
dd	sz_tl_node_get_data,		tl_node_get_data
168
dd	sz_tl_node_get_data,		tl_node_get_data
197
dd	sz_tl_node_delete,		tl_node_delete
169
dd	sz_tl_node_delete,		tl_node_delete
198
dd	sz_tl_cur_beg,			tl_cur_beg
170
dd	sz_tl_cur_beg,			tl_cur_beg
199
dd	sz_tl_cur_next, 		tl_cur_next
171
dd	sz_tl_cur_next, 		tl_cur_next
200
dd	sz_tl_cur_perv, 		tl_cur_perv
172
dd	sz_tl_cur_perv, 		tl_cur_perv
201
dd	sz_tl_node_close_open,		tl_node_close_open
173
dd	sz_tl_node_close_open,		tl_node_close_open
202
dd	sz_tl_node_lev_inc,		tl_node_lev_inc
174
dd	sz_tl_node_lev_inc,		tl_node_lev_inc
203
dd	sz_tl_node_lev_dec,		tl_node_lev_dec
175
dd	sz_tl_node_lev_dec,		tl_node_lev_dec
204
dd	sz_tl_node_move_up,		tl_node_move_up
176
dd	sz_tl_node_move_up,		tl_node_move_up
205
dd	sz_tl_node_move_down,		tl_node_move_down
177
dd	sz_tl_node_move_down,		tl_node_move_down
206
dd	sz_tl_node_poi_get_info,	tl_node_poi_get_info
178
dd	sz_tl_node_poi_get_info,	tl_node_poi_get_info
207
dd	sz_tl_node_poi_get_next_info,	tl_node_poi_get_next_info
179
dd	sz_tl_node_poi_get_next_info,	tl_node_poi_get_next_info
208
dd	sz_tl_node_poi_get_data,	tl_node_poi_get_data
180
dd	sz_tl_node_poi_get_data,	tl_node_poi_get_data
209
dd	sz_tl_save_mem, 		tl_save_mem
181
dd	sz_tl_save_mem, 		tl_save_mem
210
dd	sz_tl_load_mem, 		tl_load_mem
182
dd	sz_tl_load_mem, 		tl_load_mem
211
dd	sz_tl_get_mem_size,		tl_get_mem_size
183
dd	sz_tl_get_mem_size,		tl_get_mem_size
212
dd	sz_tl_version_tree_list,	0x00000001
184
dd	sz_tl_version_tree_list,	0x00000001
213
 
185
 
214
dd	sz_PathShow_prepare,		path_show.prepare
186
dd	sz_PathShow_prepare,		path_show.prepare
215
dd	sz_PathShow_draw,		path_show.draw
187
dd	sz_PathShow_draw,		path_show.draw
216
dd	szVersion_path_show,		0x00010001
188
dd	szVersion_path_show,		0x00010001
217
 
189
 
218
dd	sz_ted_but_save_file,		ted_but_save_file
190
dd	sz_ted_but_save_file,		ted_but_save_file
219
dd	sz_ted_but_sumb_upper,		ted_but_sumb_upper
191
dd	sz_ted_but_sumb_upper,		ted_but_sumb_upper
220
dd	sz_ted_but_sumb_lover,		ted_but_sumb_lover
192
dd	sz_ted_but_sumb_lover,		ted_but_sumb_lover
221
dd	sz_ted_can_save,		ted_can_save
193
dd	sz_ted_can_save,		ted_can_save
222
dd	sz_ted_clear,			ted_clear
194
dd	sz_ted_clear,			ted_clear
223
dd	sz_ted_delete,			ted_delete
195
dd	sz_ted_delete,			ted_delete
224
dd	sz_ted_draw,			ted_draw
196
dd	sz_ted_draw,			ted_draw
225
dd	sz_ted_init,			ted_init
197
dd	sz_ted_init,			ted_init
226
dd	sz_ted_init_scroll_bars,	ted_init_scroll_bars
198
dd	sz_ted_init_scroll_bars,	ted_init_scroll_bars
227
dd	sz_ted_init_syntax_file,	ted_init_syntax_file
199
dd	sz_ted_init_syntax_file,	ted_init_syntax_file
228
dd	sz_ted_is_select,		ted_is_select
200
dd	sz_ted_is_select,		ted_is_select
229
dd	sz_ted_key,			ted_key
201
dd	sz_ted_key,			ted_key
230
dd	sz_ted_mouse,			ted_mouse
202
dd	sz_ted_mouse,			ted_mouse
231
dd	sz_ted_open_file,		ted_open_file
203
dd	sz_ted_open_file,		ted_open_file
232
dd	sz_ted_text_add,		ted_text_add
204
dd	sz_ted_text_add,		ted_text_add
233
dd	sz_ted_but_select_word, 	ted_but_select_word
205
dd	sz_ted_but_select_word, 	ted_but_select_word
234
dd	sz_ted_but_cut, 		ted_but_cut
206
dd	sz_ted_but_cut, 		ted_but_cut
235
dd	sz_ted_but_copy,		ted_but_copy
207
dd	sz_ted_but_copy,		ted_but_copy
236
dd	sz_ted_but_paste,		ted_but_paste
208
dd	sz_ted_but_paste,		ted_but_paste
237
dd	sz_ted_but_undo,		ted_but_undo
209
dd	sz_ted_but_undo,		ted_but_undo
238
dd	sz_ted_but_redo,		ted_but_redo
210
dd	sz_ted_but_redo,		ted_but_redo
239
dd	sz_ted_but_reverse,		ted_but_reverse
211
dd	sz_ted_but_reverse,		ted_but_reverse
240
dd	sz_ted_but_find_next,		ted_but_find_next
212
dd	sz_ted_but_find_next,		ted_but_find_next
241
dd	sz_ted_text_colored,		ted_text_colored
213
dd	sz_ted_text_colored,		ted_text_colored
242
dd	sz_ted_version, 		0x00000002
214
dd	sz_ted_version, 		0x00000002
243
 
215
 
244
dd	0,0
216
dd	0,0
245
 
217
 
246
 
218
 
247
sz_init 			db 'lib_init',0
219
sz_init 			db 'lib_init',0
248
sz_version			db 'version',0
220
sz_version			db 'version',0
249
 
221
 
250
sz_edit_box			db 'edit_box',0
222
sz_edit_box			db 'edit_box',0
251
sz_edit_box_key 		db 'edit_box_key',0
223
sz_edit_box_key 		db 'edit_box_key',0
252
sz_edit_box_mouse		db 'edit_box_mouse',0
224
sz_edit_box_mouse		db 'edit_box_mouse',0
253
szVersion_ed			db 'version_ed',0
225
szVersion_ed			db 'version_ed',0
254
 
226
 
255
sz_check_box_draw		db 'check_box_draw',0
227
sz_check_box_draw		db 'check_box_draw',0
256
sz_check_box_mouse		db 'check_box_mouse',0
228
sz_check_box_mouse		db 'check_box_mouse',0
257
szVersion_ch			db 'version_ch',0
229
szVersion_ch			db 'version_ch',0
258
 
230
 
259
sz_option_box_draw		db 'option_box_draw',0
231
sz_option_box_draw		db 'option_box_draw',0
260
sz_option_box_mouse		db 'option_box_mouse',0
232
sz_option_box_mouse		db 'option_box_mouse',0
261
szVersion_op			db 'version_op',0
233
szVersion_op			db 'version_op',0
262
 
234
 
263
sz_Scrollbar_ver_draw		db 'scrollbar_v_draw',0
235
sz_Scrollbar_ver_draw		db 'scrollbar_v_draw',0
264
sz_Scrollbar_ver_mouse		db 'scrollbar_v_mouse',0
236
sz_Scrollbar_ver_mouse		db 'scrollbar_v_mouse',0
265
sz_Scrollbar_hor_draw		db 'scrollbar_h_draw',0
237
sz_Scrollbar_hor_draw		db 'scrollbar_h_draw',0
266
sz_Scrollbar_hor_mouse		db 'scrollbar_h_mouse',0
238
sz_Scrollbar_hor_mouse		db 'scrollbar_h_mouse',0
267
szVersion_scrollbar		db 'version_scrollbar',0
239
szVersion_scrollbar		db 'version_scrollbar',0
268
 
240
 
269
sz_Dbutton_draw 		db 'dbutton_draw',0
241
sz_Dbutton_draw 		db 'dbutton_draw',0
270
sz_Dbutton_mouse		db 'dbutton_mouse',0
242
sz_Dbutton_mouse		db 'dbutton_mouse',0
271
szVersion_dbutton		db 'version_dbutton',0
243
szVersion_dbutton		db 'version_dbutton',0
272
 
244
 
273
sz_Menu_bar_draw		db 'menu_bar_draw',0
245
sz_Menu_bar_draw		db 'menu_bar_draw',0
274
sz_Menu_bar_mouse		db 'menu_bar_mouse',0
246
sz_Menu_bar_mouse		db 'menu_bar_mouse',0
275
sz_Menu_bar_activate		db 'menu_bar_activate',0
247
sz_Menu_bar_activate		db 'menu_bar_activate',0
276
szVersion_menu_bar		db 'version_menu_bar',0
248
szVersion_menu_bar		db 'version_menu_bar',0
277
 
249
 
278
sz_FileBrowser_draw		db 'FileBrowser_draw',0
250
sz_FileBrowser_draw		db 'FileBrowser_draw',0
279
sz_FileBrowser_mouse		db 'FileBrowser_mouse',0
251
sz_FileBrowser_mouse		db 'FileBrowser_mouse',0
280
sz_FileBrowser_key		db 'FileBrowser_key',0
252
sz_FileBrowser_key		db 'FileBrowser_key',0
281
szVersion_FileBrowser		db 'version_FileBrowser',0
253
szVersion_FileBrowser		db 'version_FileBrowser',0
282
 
254
 
283
sz_tl_data_init 		db 'tl_data_init',0
255
sz_tl_data_init 		db 'tl_data_init',0
284
sz_tl_data_clear		db 'tl_data_clear',0
256
sz_tl_data_clear		db 'tl_data_clear',0
285
sz_tl_info_clear		db 'tl_info_clear',0
257
sz_tl_info_clear		db 'tl_info_clear',0
286
sz_tl_key			db 'tl_key',0
258
sz_tl_key			db 'tl_key',0
287
sz_tl_mouse			db 'tl_mouse',0
259
sz_tl_mouse			db 'tl_mouse',0
288
sz_tl_draw			db 'tl_draw',0
260
sz_tl_draw			db 'tl_draw',0
289
sz_tl_info_undo 		db 'tl_info_undo',0
261
sz_tl_info_undo 		db 'tl_info_undo',0
290
sz_tl_info_redo 		db 'tl_info_redo',0
262
sz_tl_info_redo 		db 'tl_info_redo',0
291
sz_tl_node_add			db 'tl_node_add',0
263
sz_tl_node_add			db 'tl_node_add',0
292
sz_tl_node_set_data		db 'tl_node_set_data',0
264
sz_tl_node_set_data		db 'tl_node_set_data',0
293
sz_tl_node_get_data		db 'tl_node_get_data',0
265
sz_tl_node_get_data		db 'tl_node_get_data',0
294
sz_tl_node_delete		db 'tl_node_delete',0
266
sz_tl_node_delete		db 'tl_node_delete',0
295
sz_tl_cur_beg			db 'tl_cur_beg',0
267
sz_tl_cur_beg			db 'tl_cur_beg',0
296
sz_tl_cur_next			db 'tl_cur_next',0
268
sz_tl_cur_next			db 'tl_cur_next',0
297
sz_tl_cur_perv			db 'tl_cur_perv',0
269
sz_tl_cur_perv			db 'tl_cur_perv',0
298
sz_tl_node_close_open		db 'tl_node_close_open',0
270
sz_tl_node_close_open		db 'tl_node_close_open',0
299
sz_tl_node_lev_inc		db 'tl_node_lev_inc',0
271
sz_tl_node_lev_inc		db 'tl_node_lev_inc',0
300
sz_tl_node_lev_dec		db 'tl_node_lev_dec',0
272
sz_tl_node_lev_dec		db 'tl_node_lev_dec',0
301
sz_tl_node_move_up		db 'tl_node_move_up',0
273
sz_tl_node_move_up		db 'tl_node_move_up',0
302
sz_tl_node_move_down		db 'tl_node_move_down',0
274
sz_tl_node_move_down		db 'tl_node_move_down',0
303
sz_tl_node_poi_get_info 	db 'tl_node_poi_get_info',0
275
sz_tl_node_poi_get_info 	db 'tl_node_poi_get_info',0
304
sz_tl_node_poi_get_next_info	db 'tl_node_poi_get_next_info',0
276
sz_tl_node_poi_get_next_info	db 'tl_node_poi_get_next_info',0
305
sz_tl_node_poi_get_data 	db 'tl_node_poi_get_data',0
277
sz_tl_node_poi_get_data 	db 'tl_node_poi_get_data',0
306
sz_tl_save_mem			db 'tl_save_mem',0
278
sz_tl_save_mem			db 'tl_save_mem',0
307
sz_tl_load_mem			db 'tl_load_mem',0
279
sz_tl_load_mem			db 'tl_load_mem',0
308
sz_tl_get_mem_size		db 'tl_get_mem_size',0
280
sz_tl_get_mem_size		db 'tl_get_mem_size',0
309
sz_tl_version_tree_list 	db 'version_tree_list',0
281
sz_tl_version_tree_list 	db 'version_tree_list',0
310
 
282
 
311
sz_PathShow_prepare		db 'PathShow_prepare',0
283
sz_PathShow_prepare		db 'PathShow_prepare',0
312
sz_PathShow_draw		db 'PathShow_draw',0
284
sz_PathShow_draw		db 'PathShow_draw',0
313
szVersion_path_show		db 'version_PathShow',0
285
szVersion_path_show		db 'version_PathShow',0
314
 
286
 
315
sz_ted_but_save_file		db 'ted_but_save_file',0
287
sz_ted_but_save_file		db 'ted_but_save_file',0
316
sz_ted_but_sumb_upper		db 'ted_but_sumb_upper',0
288
sz_ted_but_sumb_upper		db 'ted_but_sumb_upper',0
317
sz_ted_but_sumb_lover		db 'ted_but_sumb_lover',0
289
sz_ted_but_sumb_lover		db 'ted_but_sumb_lover',0
318
sz_ted_can_save 		db 'ted_can_save',0
290
sz_ted_can_save 		db 'ted_can_save',0
319
sz_ted_clear			db 'ted_clear',0
291
sz_ted_clear			db 'ted_clear',0
320
sz_ted_delete			db 'ted_delete',0
292
sz_ted_delete			db 'ted_delete',0
321
sz_ted_draw			db 'ted_draw',0
293
sz_ted_draw			db 'ted_draw',0
322
sz_ted_init			db 'ted_init',0
294
sz_ted_init			db 'ted_init',0
323
sz_ted_init_scroll_bars 	db 'ted_init_scroll_bars',0
295
sz_ted_init_scroll_bars 	db 'ted_init_scroll_bars',0
324
sz_ted_init_syntax_file 	db 'ted_init_syntax_file',0
296
sz_ted_init_syntax_file 	db 'ted_init_syntax_file',0
325
sz_ted_is_select		db 'ted_is_select',0
297
sz_ted_is_select		db 'ted_is_select',0
326
sz_ted_key			db 'ted_key',0
298
sz_ted_key			db 'ted_key',0
327
sz_ted_mouse			db 'ted_mouse',0
299
sz_ted_mouse			db 'ted_mouse',0
328
sz_ted_open_file		db 'ted_open_file',0
300
sz_ted_open_file		db 'ted_open_file',0
329
sz_ted_text_add 		db 'ted_text_add',0
301
sz_ted_text_add 		db 'ted_text_add',0
330
sz_ted_but_select_word		db 'ted_but_select_word',0
302
sz_ted_but_select_word		db 'ted_but_select_word',0
331
sz_ted_but_cut			db 'ted_but_cut',0
303
sz_ted_but_cut			db 'ted_but_cut',0
332
sz_ted_but_copy 		db 'ted_but_copy',0
304
sz_ted_but_copy 		db 'ted_but_copy',0
333
sz_ted_but_paste		db 'ted_but_paste',0
305
sz_ted_but_paste		db 'ted_but_paste',0
334
sz_ted_but_undo 		db 'ted_but_undo',0
306
sz_ted_but_undo 		db 'ted_but_undo',0
335
sz_ted_but_redo 		db 'ted_but_redo',0
307
sz_ted_but_redo 		db 'ted_but_redo',0
336
sz_ted_but_reverse		db 'ted_but_reverse',0
308
sz_ted_but_reverse		db 'ted_but_reverse',0
337
sz_ted_but_find_next		db 'ted_but_find_next',0
309
sz_ted_but_find_next		db 'ted_but_find_next',0
338
sz_ted_text_colored		db 'ted_text_colored',0
310
sz_ted_text_colored		db 'ted_text_colored',0
339
sz_ted_version			db 'version_text_edit',0
311
sz_ted_version			db 'version_text_edit',0