Subversion Repositories Kolibri OS

Rev

Rev 1376 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
431 serge 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
593 mikedld 8
$Revision: 2305 $
9
 
10
 
1 ha 11
;
49 mikedld 12
;   WINDOW SKIN DATA
1 ha 13
;
14
 
15
iglobal
525 diamond 16
  _skin_file_default db '/sys/DEFAULT.SKN',0
49 mikedld 17
endg
1 ha 18
 
49 mikedld 19
struct SKIN_DATA
2305 hidnplayr 20
  colors.inner dd ?
21
  colors.outer dd ?
22
  colors.frame dd ?
23
  left.data    dd ?
24
  left.left    dd ?
25
  left.width   dd ?
26
  oper.data    dd ?
27
  oper.left    dd ?
28
  oper.width   dd ?
29
  base.data    dd ?
30
  base.left    dd ?
31
  base.width   dd ?
49 mikedld 32
ends
1 ha 33
 
49 mikedld 34
struct SKIN_BUTTON
2305 hidnplayr 35
  left	 dd ?
36
  top	 dd ?
37
  width  dd ?
38
  height dd ?
49 mikedld 39
ends
1 ha 40
 
49 mikedld 41
uglobal
1 ha 42
 
49 mikedld 43
align 4
1 ha 44
 
54 mikedld 45
skin_udata:
2305 hidnplayr 46
  _skinh	    dd ?
1 ha 47
 
114 mikedld 48
  _skinmargins: ;   rw 4
2305 hidnplayr 49
    .right	    dw ?
50
    .left	    dw ?
51
    .bottom	    dw ?
52
    .top	    dw ?
1 ha 53
 
49 mikedld 54
  skin_btn_close    SKIN_BUTTON
55
  skin_btn_minimize SKIN_BUTTON
1 ha 56
 
2305 hidnplayr 57
  skin_active	    SKIN_DATA
49 mikedld 58
  skin_inactive     SKIN_DATA
59
 
54 mikedld 60
align 4
61
 
62
skin_udata.end:
63
 
1 ha 64
endg