Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 402 → Rev 403

/programs/develop/examples/editbox/trunk/EDITBOX.INC
1058,7 → 1058,7
.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
.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
{
/programs/develop/examples/editbox/trunk/editbox.asm
82,7 → 82,7
;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: