Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4408 leency 1
;SKIN (.SKN) - COMPILE WITH FASM
2
 
7691 leency 3
include '../skin.inc'
4408 leency 4
 
5
SKIN_PARAMS \
6
  height          = bmp_base.height,\     ; skin height
7256 leency 7
  margins         = [5:4:37:0],\          ; margins [left:top:right:bottom]
4408 leency 8
  colors active   = [binner=0x000000:\    ; border inner color
9
                     bouter=0x000000:\    ; border outer color
10
                     bframe=0x2d2d2d],\   ; border frame color
11
  colors inactive = [binner=0x000000:\    ; border inner color
12
                     bouter=0x000000:\    ; border outer color
13
                     bframe=0x2d2d2d],\   ; border frame color
14
  dtp             = 'default.dtp'          ; dtp colors
15
 
16
SKIN_BUTTONS \
7256 leency 17
  close    = [-19:3][16:16],\             ; buttons coordinates
18
  minimize = [-36:3][16:16]               ; [left:top][width:height]
4408 leency 19
 
20
SKIN_BITMAPS \
21
  left active   = bmp_left,\              ; skin bitmaps pointers
22
  left inactive = bmp_left1,\
23
  oper active   = bmp_oper,\
24
  oper inactive = bmp_oper1,\
25
  base active   = bmp_base,\
26
  base inactive = bmp_base1
27
 
28
BITMAP bmp_left ,'left.bmp'               ; skin bitmaps
29
BITMAP bmp_oper ,'oper.bmp'
30
BITMAP bmp_base ,'base.bmp'
7256 leency 31
BITMAP bmp_left1,'left.bmp'
4408 leency 32
BITMAP bmp_oper1,'oper_1.bmp'
7256 leency 33
BITMAP bmp_base1,'base.bmp'