Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2190 → Rev 2191

/programs/system/spanel/trunk/spanel.asm
186,19 → 186,10
mov eax,0 ; function 0 : define and draw window
mov ebx,100*65536+385 ; [x start] *65536 + [x size]
mov ecx,100*65536+190 ; [y start] *65536 + [y size]
mov edx,0x03ffffff ; color of work area RRGGBB,8->color gl
mov esi,0x805080d0 ; color of grab bar RRGGBB,8->color gl
mov edi,0x005080d0 ; color of frames RRGGBB
mov edx,0x14ffffff ; color of work area RRGGBB,8->color gl
mov edi,labelt ; color of frames RRGGBB
int 0x40
 
; WINDOW LABEL
mov eax,4 ; function 4 : write text to window
mov ebx,8*65536+8 ; [x start] *65536 + [y start]
mov ecx,0x10ddeeff ; color of text RRGGBB
mov edx,labelt ; pointer to text beginning
mov esi,labellen-labelt ; text length
int 0x40
 
mov eax,8
mov ebx,25*65536+335 ;160
mov ecx,162*65536+12
259,7 → 250,7
 
 
labelt:
db 'PANEL SETUP'
db 'Panel setup'
labellen:
 
I_END: