CapsLock check support for @panel.
git-svn-id: svn://kolibrios.org@1920 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
2ae48e0a00
commit
b543704e50
@ -18,6 +18,8 @@ include 'lang.inc'
|
|||||||
include '..\..\..\macros.inc'
|
include '..\..\..\macros.inc'
|
||||||
include 'MOI.INC' ;à ᪫ ¤ª¨ ª« ¢¨ âãàë
|
include 'MOI.INC' ;à ᪫ ¤ª¨ ª« ¢¨ âãàë
|
||||||
|
|
||||||
|
caps_lock_check fix 0
|
||||||
|
|
||||||
time_bgr_color = 0x66cc
|
time_bgr_color = 0x66cc
|
||||||
|
|
||||||
width dd 305
|
width dd 305
|
||||||
@ -65,6 +67,23 @@ handle_key:
|
|||||||
cmp al, 8
|
cmp al, 8
|
||||||
jz alter
|
jz alter
|
||||||
prod:
|
prod:
|
||||||
|
;{Albom
|
||||||
|
if caps_lock_check
|
||||||
|
cmp al, 58
|
||||||
|
jne @f
|
||||||
|
pusha
|
||||||
|
mov eax,26
|
||||||
|
mov ebx,2
|
||||||
|
mov ecx,9
|
||||||
|
int 0x40
|
||||||
|
mov ebx,eax
|
||||||
|
mov eax, 2
|
||||||
|
call draw_window ;;;???
|
||||||
|
popa
|
||||||
|
ret
|
||||||
|
@@:
|
||||||
|
end if
|
||||||
|
;}Albom
|
||||||
cmp al, 15
|
cmp al, 15
|
||||||
jz alt_tab_pressed
|
jz alt_tab_pressed
|
||||||
cmp al, 88
|
cmp al, 88
|
||||||
@ -81,6 +100,7 @@ prod:
|
|||||||
; jz page_list_prev
|
; jz page_list_prev
|
||||||
cmp al, 69
|
cmp al, 69
|
||||||
jz start_mousemul_application
|
jz start_mousemul_application
|
||||||
|
|
||||||
cmp [current_alt_tab_app], -1
|
cmp [current_alt_tab_app], -1
|
||||||
jz @f
|
jz @f
|
||||||
test ah, 0x30
|
test ah, 0x30
|
||||||
@ -366,6 +386,17 @@ START:
|
|||||||
mcall 66,,8 ; Alt+7
|
mcall 66,,8 ; Alt+7
|
||||||
mcall 66,,,101h ; Alt+Shift+Tab
|
mcall 66,,,101h ; Alt+Shift+Tab
|
||||||
mcall 66,,69 ; Alt+Shift+NumLock
|
mcall 66,,69 ; Alt+Shift+NumLock
|
||||||
|
;{Albom
|
||||||
|
; CapsLock
|
||||||
|
if caps_lock_check
|
||||||
|
mov eax, 66
|
||||||
|
mov edx, 0
|
||||||
|
mov ebx, 4
|
||||||
|
xor ecx, ecx
|
||||||
|
mov cl, 58
|
||||||
|
int 0x40
|
||||||
|
end if
|
||||||
|
;}Albom
|
||||||
|
|
||||||
mcall 18, 8, 1
|
mcall 18, 8, 1
|
||||||
test eax, eax
|
test eax, eax
|
||||||
@ -1322,6 +1353,12 @@ label_2:
|
|||||||
|
|
||||||
mov ecx,[bte] ; color
|
mov ecx,[bte] ; color
|
||||||
|
|
||||||
|
;{Albom
|
||||||
|
if caps_lock_check
|
||||||
|
call flag_text_setup ; make flag_text 'enfigerufretua' or 'ENFIGERUFRETUA' depending on CapsLock state.
|
||||||
|
end if
|
||||||
|
;}Albom
|
||||||
|
|
||||||
dec edx
|
dec edx
|
||||||
shl edx,1
|
shl edx,1
|
||||||
add edx,flag_text
|
add edx,flag_text
|
||||||
@ -1350,7 +1387,31 @@ label_2:
|
|||||||
; popa
|
; popa
|
||||||
; ret
|
; ret
|
||||||
|
|
||||||
|
;{Albom
|
||||||
|
if caps_lock_check
|
||||||
|
flag_text_setup:
|
||||||
|
pusha
|
||||||
|
|
||||||
|
mov eax, 66
|
||||||
|
mov ebx, 3
|
||||||
|
int 40h
|
||||||
|
|
||||||
|
mov edi, flag_text
|
||||||
|
mov esi, flag_text_caps_off
|
||||||
|
|
||||||
|
test eax, 0x40
|
||||||
|
jz @f
|
||||||
|
add esi, 14
|
||||||
|
@@:
|
||||||
|
mov ecx, 14
|
||||||
|
rep movsb
|
||||||
|
|
||||||
|
popa
|
||||||
|
ret
|
||||||
|
flag_text_caps_off db 'enfigerufretua'
|
||||||
|
db 'ENFIGERUFRETUA'
|
||||||
|
end if
|
||||||
|
;Albom}
|
||||||
|
|
||||||
|
|
||||||
; ***************************************************
|
; ***************************************************
|
||||||
@ -1973,16 +2034,17 @@ draw_info: ; draw cpu usage, time, date
|
|||||||
inc edx ;button 22
|
inc edx ;button 22
|
||||||
int 0x40
|
int 0x40
|
||||||
|
|
||||||
|
|
||||||
; flags
|
; flags
|
||||||
|
|
||||||
; mov eax,26
|
; mov eax,26
|
||||||
; mov ebx,5
|
; mov ebx,5
|
||||||
; int 0x40
|
; int 0x40
|
||||||
; mov ebx,eax
|
; mov ebx,eax
|
||||||
;
|
|
||||||
; mov eax,1
|
; mov eax,2
|
||||||
; mov [type_lang],al
|
; mov [type_lang],al
|
||||||
; call draw_flag
|
; call draw_flag
|
||||||
|
|
||||||
mov eax,26
|
mov eax,26
|
||||||
mov ebx,2
|
mov ebx,2
|
||||||
@ -2196,10 +2258,10 @@ dalshe:
|
|||||||
cmp [graph_text],1
|
cmp [graph_text],1
|
||||||
jne no_y3
|
jne no_y3
|
||||||
sub bx,2
|
sub bx,2
|
||||||
mov ecx,0xffffff
|
; mov ecx,0xffffff
|
||||||
no_y3:
|
no_y3:
|
||||||
|
|
||||||
|
mov ecx,0xffffff
|
||||||
mov edx,[esp] ; __:_X
|
mov edx,[esp] ; __:_X
|
||||||
and edx,15
|
and edx,15
|
||||||
mov eax,4
|
mov eax,4
|
||||||
@ -2207,7 +2269,7 @@ dalshe:
|
|||||||
add edx,text
|
add edx,text
|
||||||
mov esi,1
|
mov esi,1
|
||||||
int 0x40
|
int 0x40
|
||||||
|
mov ecx,0xffffff
|
||||||
pop edx ; __:X_
|
pop edx ; __:X_
|
||||||
shr edx,4
|
shr edx,4
|
||||||
and edx,15
|
and edx,15
|
||||||
@ -2216,7 +2278,7 @@ dalshe:
|
|||||||
add edx,text
|
add edx,text
|
||||||
mov esi,1
|
mov esi,1
|
||||||
int 0x40
|
int 0x40
|
||||||
|
mov ecx,0xffffff
|
||||||
mov edx,[esp] ; _X:__
|
mov edx,[esp] ; _X:__
|
||||||
and edx,15
|
and edx,15
|
||||||
mov eax,4
|
mov eax,4
|
||||||
@ -2224,7 +2286,7 @@ dalshe:
|
|||||||
add edx,text
|
add edx,text
|
||||||
mov esi,1
|
mov esi,1
|
||||||
int 0x40
|
int 0x40
|
||||||
|
mov ecx,0xffffff
|
||||||
pop edx ; X_:__
|
pop edx ; X_:__
|
||||||
shr edx,4
|
shr edx,4
|
||||||
and edx,15
|
and edx,15
|
||||||
|
Loading…
Reference in New Issue
Block a user