kpack: changing program colors, while user changed the skin, some small GuI fixes

git-svn-id: svn://kolibrios.org@2673 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2012-05-24 22:03:49 +00:00
parent 681217c017
commit 37ce145294
2 changed files with 9 additions and 9 deletions

View File

@ -202,7 +202,7 @@ editboxes_end:
mouse_dd dd 0 mouse_dd dd 0
;--------------------------------------------------------------------- ;---------------------------------------------------------------------
check1 check_box 353,40,4,10,0x80FFFFFF,0,0,check_text,6 check1 check_box 353,39,4,10,0x80FFFFFF,0,0,check_text,6
check1_end: check1_end:
check_text db 'Kernel',0 check_text db 'Kernel',0

View File

@ -69,11 +69,6 @@ load_libraries l_libs_start,load_lib_end
movsw movsw
movsd movsd
; get system window info ; get system window info
mcall 48,3,color_table,40
;--------------------------------------
edit_boxes_set_sys_color edit1,editboxes_end,color_table
check_boxes_set_sys_color check1,check1_end,color_table
;--------------------------------------
xor eax,eax xor eax,eax
cmp [params],al cmp [params],al
je default je default
@ -426,6 +421,11 @@ draw_messages:
draw_window: draw_window:
; start redraw ; start redraw
mcall 12,1 mcall 12,1
mcall 48,3,color_table,40
;--------------------------------------
edit_boxes_set_sys_color edit1,editboxes_end,color_table
check_boxes_set_sys_color check1,check1_end,color_table
;-------------------------------------- ;--------------------------------------
; define window ; define window
xor eax,eax xor eax,eax
@ -505,7 +505,7 @@ draw_lines:
draw_buttons: draw_buttons:
; define compress button ; define compress button
mov cx,18 mov cx,18
mcall 8,<351,72>,,2,[color_table+24] mcall 8,<351,72>,<1, 17>,2,[color_table+24]
; uncompress button ; uncompress button
add ecx,18 shl 16 add ecx,18 shl 16
inc edx inc edx
@ -543,8 +543,8 @@ draw_buttons:
mcall mcall
; text on compress and decompress buttons ; text on compress and decompress buttons
or ecx,80000000h or ecx,80000000h
mcall ,<367,7>,,aCompress mcall ,<364,6>,,aCompress
mcall ,<359,25>,,aDecompress mcall ,<359,24>,,aDecompress
ret ret
;********************************************************************* ;*********************************************************************
;Pack procedures ;Pack procedures