Subversion Repositories Kolibri OS

Rev

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

Rev 987 Rev 1624
Line 112... Line 112...
112
sz ini_options_auto_indent,'auto_indent',0
112
sz ini_options_auto_indent,'auto_indent',0
113
sz ini_options_smart_tab,'smart_tab',0
113
sz ini_options_smart_tab,'smart_tab',0
114
sz ini_options_optim_save,'optim_save',0
114
sz ini_options_optim_save,'optim_save',0
115
sz ini_options_line_nums,'line_nums',0
115
sz ini_options_line_nums,'line_nums',0
116
116
;-----------------------------------------------------------------------------
-
 
117
OpenDialog_data:
-
 
118
.type			dd 0
-
 
119
.procinfo		dd p_info	;+4
-
 
120
.com_area_name		dd communication_area_name	;+8
-
 
121
.com_area		dd 0	;+12
-
 
122
.opendir_pach		dd temp_dir_pach	;+16
-
 
123
.dir_default_pach	dd communication_area_default_pach	;+20
-
 
124
.start_path		dd open_dialog_path	;+24
-
 
125
.draw_window		dd draw_window_for_OD	;+28
-
 
126
.status			dd 0	;+32
-
 
127
.openfile_pach 		dd fname_Info	;+36
-
 
128
.filename_area		dd filename_area	;+40
-
 
129
.filter_area		dd Filter
-
 
130
.x:
-
 
131
.x_size			dw 420 ;+48 ; Window X size
-
 
132
.x_start		dw 10 ;+50 ; Window X position
-
 
133
.y:
-
 
134
.y_size			dw 320 ;+52 ; Window y size
-
 
135
.y_start		dw 10 ;+54 ; Window Y position
-
 
136
 
-
 
137
communication_area_name:
-
 
138
	db 'FFFFFFFF_open_dialog',0
-
 
139
open_dialog_path:
-
 
140
	db '/sys/File Managers/opendial',0
-
 
141
communication_area_default_pach:
-
 
142
	db '/sys',0
-
 
143
 
-
 
144
Filter:
-
 
145
dd	Filter.end - Filter
-
 
146
.1:
-
 
147
db	'TXT',0
-
 
148
db	'ASM',0
-
 
149
db	'INC',0
-
 
150
db	'INI',0
-
 
151
db	'LOG',0
-
 
152
db	'DAT',0
-
 
153
db	'INF',0
-
 
154
db	'BAT',0
-
 
155
db	'SH',0
-
 
156
 
-
 
157
.end:
-
 
158
db	0
-
 
159
 
-
 
160
open_dialog	db 0
-
 
161
;-----------------------------------------------------------------------------
-
 
162
-
 
163