git-svn-id: svn://kolibrios.org@403 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Alexey Teplov ( 2007-03-09 08:41:43 +00:00
parent 03d5be2191
commit e652fe540f
2 changed files with 2 additions and 23 deletions

View File

@ -1058,7 +1058,7 @@ struc edit_box width,left,top,color,focus_border_color,\
.max dd max
.text dd text
.flags dw flags+0
.size dd 0
.size dd size+0
.pos dd 0
.offset dd 0
.cl_curs_x dd 0
@ -1067,27 +1067,6 @@ struc edit_box width,left,top,color,focus_border_color,\
.shift_old dd 0
}
struc edit_box1 width,left,top,color,focus_border_color,\
blur_border_color,text_color,max,text,flags,ed_size
{
.width dd width
.left dd left
.top dd top
.color dd color
.focus_border_color dd focus_border_color
.blur_border_color dd blur_border_color
.text_color dd text_color
.max dd max
.text dd text
.flags dw flags+0
.size dd ed_size
.pos dd 0
.offset dd 0
.cl_curs_x dd 0
.cl_curs_y dd 0
.shift dd 0
.shift_old dd 0
}
macro edit_boxes_set_sys_color start,end,color_table
{

View File

@ -82,7 +82,7 @@ draw_window: ;
;DATA ¤ ­­ë¥
editboxes:
edit1 edit_box 168,5,10,0xffffff,0,0,0,99,ed_buffer.2,ed_figure_only
edit2 edit_box1 250,5,30,0xffffff,0,0,0,308,hed,ed_focus,53
edit2 edit_box 250,5,30,0xffffff,0,0,0,308,hed,ed_focus,53
edit3 edit_box 35,5,50,0xffffff,0,0,0,9,ed_buffer.3,ed_figure_only
edit4 edit_box 16,5,70,0xffffff,0,0,0,1,ed_buffer.4,ed_figure_only
editboxes_end: