forked from KolibriOS/kolibrios
Mistakes in controls are corrected: ProgressBar, Text, Image.
git-svn-id: svn://kolibrios.org@682 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
a3ee7f3740
commit
748fe8669e
@ -137,4 +137,10 @@ image:
|
||||
|
||||
exit_image:
|
||||
|
||||
mov edi,[PointerForImage]
|
||||
add edi,control_header_size
|
||||
mov esi,dword Image
|
||||
mov ecx,im_control_data_size
|
||||
rep movsb
|
||||
|
||||
ret 8
|
||||
|
@ -117,6 +117,11 @@ progress_bar:
|
||||
|
||||
and [ProgressBar.type],deactivate_trap
|
||||
|
||||
cmp [ProgressBar.progress],dword 0.02
|
||||
jae nofull_redraw
|
||||
call draw_all_progress_bar
|
||||
nofull_redraw:
|
||||
|
||||
call draw_progress
|
||||
|
||||
no_draw_progress_bar:
|
||||
@ -141,6 +146,12 @@ progress_bar:
|
||||
|
||||
exit_progress_bar:
|
||||
|
||||
mov edi,[PointerForProgressBar]
|
||||
add edi,control_header_size
|
||||
mov esi,dword ProgressBar
|
||||
mov ecx,pb_control_data_size
|
||||
rep movsb
|
||||
|
||||
ret 8
|
||||
|
||||
draw_all_progress_bar:
|
||||
|
@ -160,4 +160,10 @@ text:
|
||||
|
||||
exit_text:
|
||||
|
||||
mov edi,[PointerForText]
|
||||
add edi,control_header_size
|
||||
mov esi,dword Text
|
||||
mov ecx,tx_control_data_size
|
||||
rep movsb
|
||||
|
||||
ret 8
|
||||
|
16
programs/develop/libGUI/src/version.inc
Normal file
16
programs/develop/libGUI/src/version.inc
Normal file
@ -0,0 +1,16 @@
|
||||
;****************************************************
|
||||
;****************get version of library**************
|
||||
;****************************************************
|
||||
;IN
|
||||
;not
|
||||
;OUT
|
||||
;version of library
|
||||
;fersion format year:mouth:day
|
||||
align 4
|
||||
|
||||
get_version:
|
||||
|
||||
xor eax,eax
|
||||
mov eax,dword 071216 ;16.12.07
|
||||
|
||||
ret
|
@ -1,3 +1,13 @@
|
||||
16.12.07
|
||||
|
||||
RUSSIAN
|
||||
|
||||
Èñïðàâëåíû îøèáêè â êîíòðîëàõ: ProgressBar, Text, Image.
|
||||
|
||||
ENGLISH
|
||||
|
||||
Mistakes in controls are corrected: ProgressBar, Text, Image.
|
||||
|
||||
28.11.07
|
||||
|
||||
RUSSIAN
|
||||
|
Loading…
Reference in New Issue
Block a user