Subversion Repositories Kolibri OS

Rev

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

Rev 485 Rev 551
Line 255... Line 255...
255
                                 ; DRAW WINDOW
255
                                 ; DRAW WINDOW
256
  xor  eax,eax                   ; function 0 : define and draw window
256
  xor  eax,eax                   ; function 0 : define and draw window
257
  mov  ebx,320*65536+(LEN_X-BORDER_LEFT-BORDER_RIGHT)*ADOBE_SIZE+X_LOCATION*2
257
  mov  ebx,320*65536+(LEN_X-BORDER_LEFT-BORDER_RIGHT)*ADOBE_SIZE+X_LOCATION*2
258
  mov  ecx,25*65536+ (LEN_Y-BORDER_TOP-BORDER_BOTTOM)*ADOBE_SIZE+Y_LOCATION+30
258
  mov  ecx,25*65536+ (LEN_Y-BORDER_TOP-BORDER_BOTTOM)*ADOBE_SIZE+Y_LOCATION+30
259
  mov  edx,[sc.work]             ; color of work area RRGGBB
259
  mov  edx,[sc.work]             ; color of work area RRGGBB
260
  or   edx,0x13000000
260
  or   edx,0x14000000
261
  mov  edi,title                ; WINDOW LABEL
261
  mov  edi,title                ; WINDOW LABEL
262
  mcall
262
  mcall
Line 263... Line 263...
263
 
263