Subversion Repositories Kolibri OS

Rev

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

Rev 1660 Rev 1661
Line 139... Line 139...
139
{
139
{
140
	mov     ebp,start
140
	mov     ebp,start
141
	mov     ecx,((end-start)/ch_struc_size)
141
	mov     ecx,((end-start)/ch_struc_size)
142
@@:
142
@@:
143
	push    ebp			;óêàçàòåëü íà ïåðâûé checkbox
143
	push    ebp			;óêàçàòåëü íà ïåðâûé checkbox
144
	call	[check_box_mouse]	;ìàêðîñ ïðîâåðêè ìûøêè íàä checkbox'îì
144
	call	[init_checkbox]	;ìàêðîñ ïðîâåðêè ìûøêè íàä checkbox'îì
145
	add     ebp,ch_struc_size
145
	add     ebp,ch_struc_size
146
	loop    @b
146
	loop    @b
147
}
147
}
Line 148... Line 148...
148
 
148
 
149
;Ìàêðîñ îòðèñîâêè ãðóïïû checkboxes.
149
;Ìàêðîñ ïðîâåðêè ìûøêè ãðóïïû checkboxes.
150
macro checkboxes_draw start,end
150
macro checkboxes_mouse start,end
151
{
151
{
152
	mov     ebp,start
152
	mov     ebp,start
153
	mov     ecx,((end-start)/ch_struc_size)
153
	mov     ecx,((end-start)/ch_struc_size)
154
@@:
154
@@:
155
	push    ebp			;óêàçàòåëü íà ïåðâûé checkbox
155
	push    ebp			;óêàçàòåëü íà ïåðâûé checkbox
156
	call	[check_box_draw]	;íàðèñîâàòü checkbox
156
	call	[check_box_mouse]	;íàðèñîâàòü checkbox
157
	add     ebp,ch_struc_size
157
	add     ebp,ch_struc_size
158
	loop    @b
158
	loop    @b
Line 159... Line 159...
159
}
159
}