Subversion Repositories Kolibri OS

Rev

Rev 4789 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2517 leency 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
3
;; Copyright (C) KolibriOS team 2004-2011. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
7119 dunkaist 8
include 'skin.inc'
2517 leency 9
 
10
SKIN_PARAMS \
11
  height          = bmp_base.height,\     ; skin height
12
  margins         = [5:1:43:1],\          ; margins [left:top:right:bottom]
13
  colors active   = [binner=0x00081d:\    ; border inner color
14
                     bouter=0x00081d:\    ; border outer color
15
                     bframe=0x0054e7],\   ; border frame color
16
  colors inactive = [binner=0x00081d:\    ; border inner color
17
                     bouter=0x00081d:\    ; border outer color
18
                     bframe=0x1a8acc],\   ; border frame color
19
  dtp             = 'myblue.dtp'          ; dtp colors
20
 
21
SKIN_BUTTONS \
22
  close    = [-21:3][16:16],\             ; buttons coordinates
23
  minimize = [-39:3][16:16]               ; [left:top][width:height]
24
 
25
SKIN_BITMAPS \
26
  left active   = bmp_left,\              ; skin bitmaps pointers
27
  left inactive = bmp_left1,\
28
  oper active   = bmp_oper,\
29
  oper inactive = bmp_oper1,\
30
  base active   = bmp_base,\
31
  base inactive = bmp_base1
32
 
33
BITMAP bmp_left ,'left.bmp'               ; skin bitmaps
34
BITMAP bmp_oper ,'oper.bmp'
35
BITMAP bmp_base ,'base.bmp'
36
BITMAP bmp_left1,'left_1.bmp'
37
BITMAP bmp_oper1,'oper_1.bmp'
38
BITMAP bmp_base1,'base_1.bmp'