Subversion Repositories Kolibri OS

Rev

Rev 10002 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10002 Rev 10008
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2024. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2024. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 10002 $
8
$Revision: 10008 $
9
 
9
 
10
 
10
 
Line 497... Line 497...
497
        box                   BOX   ; +34
497
        box                   BOX   ; +34
498
        slot_state            dw ?  ; +50
498
        slot_state            dw ?  ; +50
499
                              dw ?  ; +52
499
                              dw ?  ; +52
500
        client_box            BOX   ; +54
500
        client_box            BOX   ; +54
501
        wnd_state             db ?  ; +70
501
        wnd_state             db ?  ; +70
-
 
502
        event_mask            dd ?  ; +71
-
 
503
        keyboard_mode         db ?  ; +75
502
ends
504
ends
Line 503... Line 505...
503
 
505
 
504
struct  APPDATA
506
struct  APPDATA
505
        app_name        rb 11
507
        app_name        rb 11
Line 571... Line 573...
571
TSTATE_ZOMBIE         = 3
573
TSTATE_ZOMBIE         = 3
572
TSTATE_TERMINATING    = 4
574
TSTATE_TERMINATING    = 4
573
TSTATE_WAITING        = 5
575
TSTATE_WAITING        = 5
574
TSTATE_FREE           = 9
576
TSTATE_FREE           = 9
Line 575... Line 577...
575
 
577
 
576
; Window constants:
578
; Window constants(fl_wstate):
577
WSTATE_NORMAL    = 00000000b
579
WSTATE_NORMAL    = 00000000b
578
WSTATE_MAXIMIZED = 00000001b
580
WSTATE_MAXIMIZED = 00000001b
579
WSTATE_MINIMIZED = 00000010b
581
WSTATE_MINIMIZED = 00000010b
580
WSTATE_ROLLEDUP  = 00000100b
582
WSTATE_ROLLEDUP  = 00000100b
Line 610... Line 612...
610
        caption         dd ?
612
        caption         dd ?
611
        captionEncoding db ?
613
        captionEncoding db ?
612
                        rb 3
614
                        rb 3
613
        saved_box       BOX
615
        saved_box       BOX
614
        cursor          dd ?
616
        cursor          dd ?
615
        temp_cursor     dd ?
617
        temp_cursor     dd ?   ;?
616
        draw_bgr_x      dd ?
618
        draw_bgr_x      dd ?
617
        draw_bgr_y      dd ?
619
        draw_bgr_y      dd ?
618
        draw_data       RECT
620
        draw_data       RECT
619
        thread          dd ? ; ptr APPDATA
621
        thread          dd ? ; ptr APPDATA
-
 
622
        buttons         rd 1 ; ptr array buttons
620
                        rb 12
623
                        rb 12 - 4
621
ends
624
ends
Line 622... Line 625...
622
 
625
 
Line 623... Line 626...
623
label WDATA.fl_wstyle byte at WDATA.cl_workarea + 3
626
label WDATA.fl_wstyle byte at WDATA.cl_workarea + 3