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 146... Line 146...
146
    int  0x40
146
    int  0x40
Line 147... Line 147...
147
 
147
 
148
    mov  eax,0                     ; DRAW WINDOW
148
    mov  eax,0                     ; DRAW WINDOW
149
    mov  ebx,1*65536+200           ; [x start] *65536 + [x size]
149
    mov  ebx,1*65536+200           ; [x start] *65536 + [x size]
150
    mov  ecx,200*65536+240         ; [y start] *65536 + [y size]
150
    mov  ecx,200*65536+240         ; [y start] *65536 + [y size]
151
    mov  edx,0x03000000            ; work area color (type II)
-
 
152
    mov  esi,0x82a0a0a0            ; grab bar color (w/glide)
151
    mov  edx,0x13000000            ; work area color (type II)
153
    mov  edi,0x82bbbbbb            ; frame color
-
 
154
    int  0x40
-
 
155
    mov  eax,4                     ; WINDOW LABEL
-
 
156
    mov  ebx,8*65536+8             ; [x start] *65536 + [y start]
-
 
157
    mov  ecx,0xeeeeee              ; color of text (white)
-
 
158
    mov  edx,prog_name             ; pointer to header
-
 
159
    mov  esi,namelen-prog_name     ; text length
152
    mov  edi,header                ; frame color
Line 160... Line 153...
160
    int  0x40
153
    int  0x40
Line 161... Line 154...
161
   
154
   
Line 323... Line 316...
323
 
316
 
324
;   *********************************************
317
;   *********************************************
325
;   **********  DATA DEFINITIONS AREA ***********
318
;   **********  DATA DEFINITIONS AREA ***********
Line 326... Line -...
326
;   *********************************************
-
 
327
 
319
;   *********************************************
328
prog_name:
-
 
Line 329... Line 320...
329
    db   'COLOR REFERENCE     H>HELP'
320
 
330
namelen:
321
header    db   'COLOR REFERENCE H>HELP',0
Line 331... Line 322...
331
 
322