window caption font and encoding

git-svn-id: svn://kolibrios.org@5926 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
pathoswithin 2015-11-23 04:21:00 +00:00
parent 025c153c07
commit 4837ce35b0
4 changed files with 41 additions and 101 deletions

View File

@ -3929,9 +3929,13 @@ Architecture Software Developer's Manual, Volume 3, Appendix B);
Возвращаемое значение: Возвращаемое значение:
* функция не возвращает значения * функция не возвращает значения
Замечания: Замечания:
* Строка заголовка должна быть в формате ASCIIZ. В заголовке * Строка заголовка должна заканчиваться нулём.
отображается не более 255 символов независимо от полной длины * Можно указать кодировку заголовка,
строки. поместив в начале строки байт со значениями:
1 = cp866
2 = UTF-16LE
3 = UTF-8
иначе будет использоваться cp866.
* Чтобы убрать заголовок, передайте NULL в ecx. * Чтобы убрать заголовок, передайте NULL в ecx.
====================================================================== ======================================================================

View File

@ -3890,12 +3890,16 @@ Remarks:
Parameters: Parameters:
* eax = 71 - function number * eax = 71 - function number
* ebx = 1 - subfunction number * ebx = 1 - subfunction number
* ecx = pointer to caption string * ecx = pointer to zero terminated string
Returned value: Returned value:
* function does not return value * function does not return value
Remarks: Remarks:
* String must be in the ASCIIZ-format. Disregarding real string * You may set the caption string encoding by putting
length, no more than 255 characters are drawn. at the start of the string a byte with next values:
1 = cp866
2 = UTF-16LE
3 = UTF-8
otherwise will be used cp866.
* Pass NULL in ecx to remove caption. * Pass NULL in ecx to remove caption.
====================================================================== ======================================================================

View File

@ -7,8 +7,6 @@
$Revision$ $Revision$
dtext_asciiz_esi:
btr ecx, 31
dtext: dtext:
; edx -> string ; edx -> string
; esi = number of characters ; esi = number of characters

View File

@ -386,58 +386,19 @@ align 4
call window._.set_window_box call window._.set_window_box
add esp, sizeof.BOX add esp, sizeof.BOX
; NOTE: do we really need this? to be reworked
; mov byte[DONT_DRAW_MOUSE], 0 ; mouse pointer
; mov byte[MOUSE_BACKGROUND], 0 ; no mouse under
; mov byte[MOUSE_DOWN], 0 ; react to mouse up/down
; NOTE: do we really need this? to be reworked
; call [draw_pointer]
;--------------------------------------
align 4
.exit: .exit:
ret ret
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
align 4 syscall_window_settings: ;///// system function 71 ////////////////////////////
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
syscall_window_settings: ;///// system function 71 /////////////////////////////
;------------------------------------------------------------------------------
;? <description>
;------------------------------------------------------------------------------
dec ebx ; subfunction #1 - set window caption
jnz .exit_fail
; NOTE: only window owner thread can set its caption,
; so there's no parameter for PID/TID
mov edi, [CURRENT_TASK] mov edi, [CURRENT_TASK]
shl edi, 5 shl edi, 5
mov [edi * 8 + SLOT_BASE + APPDATA.wnd_caption], ecx mov [edi * 8 + SLOT_BASE + APPDATA.wnd_caption], ecx
or [edi + window_data + WDATA.fl_wstyle], WSTYLE_HASCAPTION or [edi + window_data + WDATA.fl_wstyle], WSTYLE_HASCAPTION
jmp window._.draw_window_caption
call window._.draw_window_caption
xor eax, eax ; eax = 0 (success)
ret
; .get_window_caption:
; dec eax ; subfunction #2 - get window caption
; jnz .exit_fail
; not implemented yet
;--------------------------------------
align 4
.exit_fail:
xor eax, eax
inc eax ; eax = 1 (fail)
ret
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
align 4 align 4
;------------------------------------------------------------------------------
set_window_defaults: ;///////////////////////////////////////////////////////// set_window_defaults: ;/////////////////////////////////////////////////////////
;------------------------------------------------------------------------------
;? <description>
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
mov byte [window_data + 0x20 + WDATA.cl_titlebar + 3], 1 ; desktop is not movable mov byte [window_data + 0x20 + WDATA.cl_titlebar + 3], 1 ; desktop is not movable
push eax ecx push eax ecx
@ -1638,30 +1599,21 @@ window._.sys_set_window: ;/////////////////////////////////////////////////////
mov eax, [CURRENT_TASK] mov eax, [CURRENT_TASK]
shl eax, 5 shl eax, 5
add eax, window_data add eax, window_data
; save window colors ; save window colors
mov [eax + WDATA.cl_workarea], edx mov [eax + WDATA.cl_workarea], edx
mov [eax + WDATA.cl_titlebar], esi mov [eax + WDATA.cl_titlebar], esi
mov [eax + WDATA.cl_frames], edi mov [eax + WDATA.cl_frames], edi
mov edi, eax mov edi, eax
; Was it already defined before?
; was it already defined before?
test [edi + WDATA.fl_wdrawn], 1 test [edi + WDATA.fl_wdrawn], 1
jnz .set_client_box jnz .set_client_box
or [edi + WDATA.fl_wdrawn], 1 ; No, it wasn't. After first draw_window we need redraw mouse necessarily!
; After first draw_window we need redraw mouse necessarily!
; Otherwise the user can see cursor specified by f.37.5 from another window. ; Otherwise the user can see cursor specified by f.37.5 from another window.
; He will be really unhappy! He is terrible in rage - usually he throws stones! ; He will be really unhappy! Usually, he will be enraged!
or [edi + WDATA.fl_wdrawn], 1
mov [redrawmouse_unconditional], 1 mov [redrawmouse_unconditional], 1
call wakeup_osloop call wakeup_osloop
; NOTE: commented out since doesn't provide necessary functionality ; performing initial window definition
; anyway, to be reworked
; mov eax, [timer_ticks] ; [0xfdf0]
; add eax, 100
; mov [new_window_starting], eax
; no it wasn't, performing initial window definition
movzx eax, bx movzx eax, bx
mov [edi + WDATA.box.width], eax mov [edi + WDATA.box.width], eax
movzx eax, cx movzx eax, cx
@ -2316,6 +2268,8 @@ align 4
or edx, edx or edx, edx
jz .exit jz .exit
mov ebp, [edi + window_data + WDATA.box.left - 2]
mov bp, word[edi + window_data + WDATA.box.top]
movzx eax, [edi + window_data + WDATA.fl_wstyle] movzx eax, [edi + window_data + WDATA.fl_wstyle]
and al, 0x0F and al, 0x0F
cmp al, 3 cmp al, 3
@ -2327,66 +2281,46 @@ align 4
;-------------------------------------- ;--------------------------------------
align 4 align 4
.skinned: .skinned:
mov ebp, [edi + window_data + WDATA.box.left - 2]
mov bp, word[edi + window_data + WDATA.box.top]
movzx eax, word[edi + window_data + WDATA.box.width] movzx eax, word[edi + window_data + WDATA.box.width]
sub ax, [_skinmargins.left] sub ax, [_skinmargins.left]
sub ax, [_skinmargins.right] sub ax, [_skinmargins.right]
push edx
cwde
cdq
mov ebx, 6
idiv ebx
pop edx
or eax, eax
js .exit js .exit
mov esi, eax
mov ebx, dword[_skinmargins.left - 2] mov ebx, dword[_skinmargins.left - 2]
mov bx, word[_skinh] mov bx, word[_skinh]
sub bx, [_skinmargins.bottom] sub bx, [_skinmargins.bottom]
sub bx, [_skinmargins.top] sub bx, [_skinmargins.top]
sar bx, 1 sar bx, 1
adc bx, 0
add bx, [_skinmargins.top] add bx, [_skinmargins.top]
add bx, -3 sub bx, 8
add ebx, ebp
jmp .dodraw jmp .dodraw
;-------------------------------------- ;--------------------------------------
align 4 align 4
.not_skinned: .not_skinned:
cmp al, 1 cmp al, 1
je .exit je .exit
mov ebp, [edi + window_data + WDATA.box.left - 2]
mov bp, word[edi + window_data + WDATA.box.top]
movzx eax, word[edi + window_data + WDATA.box.width] movzx eax, word[edi + window_data + WDATA.box.width]
sub eax, 16 sub eax, 16
push edx
cwde
cdq
mov ebx, 6
idiv ebx
pop edx
or eax, eax
js .exit js .exit
mov ebx, 80002h
mov esi, eax
mov ebx, 0x00080007
add ebx, ebp
;--------------------------------------
align 4
.dodraw: .dodraw:
shr eax, 3
mov esi, eax
add ebx, ebp
mov ecx, [common_colours + 16] mov ecx, [common_colours + 16]
or ecx, 0x80000000 mov al, 1
cmp byte [edx], 4
jnc @f
mov al, [edx]
test al, al
jz .exit
inc edx
@@:
shl eax, 28
or ecx, eax
xor edi, edi xor edi, edi
call dtext_asciiz_esi call dtext
;--------------------------------------
align 4
.exit: .exit:
; call [draw_pointer] jmp __sys_draw_pointer
call __sys_draw_pointer
ret
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
align 4 align 4
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------