Subversion Repositories Kolibri OS

Rev

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

Rev 109 Rev 316
Line 77... Line 77...
77
    int  0x40
77
    int  0x40
78
                                   ; DRAW WINDOW
78
                                   ; DRAW WINDOW
79
    mov  eax,0                     ; function 0 : define and draw window
79
    mov  eax,0                     ; function 0 : define and draw window
80
    mov  ebx,100*65536+200         ; [x start] *65536 + [x size]
80
    mov  ebx,100*65536+200         ; [x start] *65536 + [x size]
81
    mov  ecx,100*65536+200         ; [y start] *65536 + [y size]
81
    mov  ecx,100*65536+200         ; [y start] *65536 + [y size]
82
    mov  edx,0x03ffffff            ; color of work area RRGGBB,8->color gl
82
    mov  edx,0x13ffffff            ; color of work area RRGGBB,8->color gl
83
    mov  esi,0x806688cc
-
 
84
    mov  edi,0x006688cc
-
 
85
    int  0x40
-
 
86
                                   ; WINDOW LABEL
83
    mov  edi,header                ; WINDOW LABEL
87
    mov  eax,4                     ; function 4 : write text to window
-
 
88
    mov  ebx,8*65536+8             ; [x start] *65536 + [y start]
-
 
89
    mov  ecx,0x00ddeeff            ; color of text RRGGBB
-
 
90
    mov  edx,labelt                ; pointer to text beginning
-
 
91
    mov  esi,labellen-labelt       ; text length
-
 
92
    int  0x40
84
    int  0x40
Line 93... Line 85...
93
 
85
 
Line 94... Line 86...
94
    call draw_slider_info
86
    call draw_slider_info
Line 380... Line 372...
380
;**************************************************
372
;**************************************************
381
;* End Slider Code
373
;* End Slider Code
382
;**************************************************
374
;**************************************************
Line 383... Line 375...
383
 
375
 
384
; DATA AREA
376
; DATA AREA
385
labelt:     db  'Color Slider'
-
 
386
labellen:
377
header     db  'Color Slider',0
387
I_END:
-
 
388
-
 
389
-
 
390
-