Nova skins added.
git-svn-id: svn://kolibrios.org@3023 a494cfbc-eb01-0410-851d-a64ba20cac60
12
skins/Nova_skins/Nova_blue/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_blue/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_blue/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_blue/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_blue/BLUE.DTP
Normal file
BIN
skins/Nova_skins/Nova_blue/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_blue/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_blue/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
37
skins/Nova_skins/Nova_blue/Nova_blue.asm
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0x9FBCCD:\ ; border inner color
|
||||||
|
bouter=0x9FBCCD:\ ; border outer color
|
||||||
|
bframe=0x2E576F],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xB7CDDA:\ ; border inner color
|
||||||
|
bouter=0xB7CDDA:\ ; border outer color
|
||||||
|
bframe=0x4D788E],\ ; border frame color
|
||||||
|
dtp = 'BLUE.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
|
BIN
skins/Nova_skins/Nova_blue/Nova_blue.skn
Normal file
BIN
skins/Nova_skins/Nova_blue/Screenshot.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
235
skins/Nova_skins/Nova_blue/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_brown/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_brown/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_brown/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_brown/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_brown/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_brown/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_brown/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_brown/Nova_brown.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0xDFB498:\ ; border inner color
|
||||||
|
bouter=0xDFB498:\ ; border outer color
|
||||||
|
bframe=0x874B24],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xE8C7B1:\ ; border inner color
|
||||||
|
bouter=0xE8C7B1:\ ; border outer color
|
||||||
|
bframe=0xA36C40],\ ; border frame color
|
||||||
|
dtp = 'ORANGE.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; C06A32
|
||||||
|
|
||||||
|
; 874B24
|
BIN
skins/Nova_skins/Nova_brown/Nova_brown.skn
Normal file
BIN
skins/Nova_skins/Nova_brown/ORANGE.DTP
Normal file
BIN
skins/Nova_skins/Nova_brown/Screenshot.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
235
skins/Nova_skins/Nova_brown/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_green/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_green/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_green/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_green/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_green/GREEN.DTP
Normal file
BIN
skins/Nova_skins/Nova_green/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_green/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_green/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_green/Nova_green.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0x9CD1A5:\ ; border inner color
|
||||||
|
bouter=0x9CD1A5:\ ; border outer color
|
||||||
|
bframe=0x297436],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xB4DEBC:\ ; border inner color
|
||||||
|
bouter=0xB4DEBC:\ ; border outer color
|
||||||
|
bframe=0x479355],\ ; border frame color
|
||||||
|
dtp = 'GREEN.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; 3AA44C
|
||||||
|
|
||||||
|
; 297436
|
BIN
skins/Nova_skins/Nova_green/Nova_green.skn
Normal file
BIN
skins/Nova_skins/Nova_green/Screenshot.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
235
skins/Nova_skins/Nova_green/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_grey/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_grey/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_grey/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_grey/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_grey/GREY.DTP
Normal file
BIN
skins/Nova_skins/Nova_grey/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_grey/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_grey/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_grey/Nova_grey.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0xD0D0D0:\ ; border inner color
|
||||||
|
bouter=0xD0D0D0:\ ; border outer color
|
||||||
|
bframe=0x727272],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xDDDDDD:\ ; border inner color
|
||||||
|
bouter=0xDDDDDD:\ ; border outer color
|
||||||
|
bframe=0x919191],\ ; border frame color
|
||||||
|
dtp = 'GREY.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; A2A2A2
|
||||||
|
|
||||||
|
; 727272
|
BIN
skins/Nova_skins/Nova_grey/Nova_grey.skn
Normal file
BIN
skins/Nova_skins/Nova_grey/Screenshot.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
235
skins/Nova_skins/Nova_grey/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_pink/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_pink/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_pink/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_pink/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_pink/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_pink/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_pink/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_pink/Nova_pink.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0xD79ED2:\ ; border inner color
|
||||||
|
bouter=0xD79ED2:\ ; border outer color
|
||||||
|
bframe=0x7C2C76],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xE2B6DE:\ ; border inner color
|
||||||
|
bouter=0xE2B6DE:\ ; border outer color
|
||||||
|
bframe=0x994A95],\ ; border frame color
|
||||||
|
dtp = 'PINK.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; B03EA7
|
||||||
|
|
||||||
|
; 7C2C76
|
BIN
skins/Nova_skins/Nova_pink/Nova_pink.skn
Normal file
BIN
skins/Nova_skins/Nova_pink/PINK.DTP
Normal file
BIN
skins/Nova_skins/Nova_pink/Screenshot.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
235
skins/Nova_skins/Nova_pink/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_red/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_red/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_red/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_red/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_red/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_red/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_red/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_red/Nova_red.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0xDA9A9A:\ ; border inner color
|
||||||
|
bouter=0xDA9A9A:\ ; border outer color
|
||||||
|
bframe=0x812727],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xE4B3B3:\ ; border inner color
|
||||||
|
bouter=0xE4B3B3:\ ; border outer color
|
||||||
|
bframe=0x9E4444],\ ; border frame color
|
||||||
|
dtp = 'RED.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; B73737
|
||||||
|
|
||||||
|
; 812727
|
BIN
skins/Nova_skins/Nova_red/Nova_red.skn
Normal file
BIN
skins/Nova_skins/Nova_red/RED.DTP
Normal file
BIN
skins/Nova_skins/Nova_red/Screenshot.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
235
skins/Nova_skins/Nova_red/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
12
skins/Nova_skins/Nova_violet/About.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; ;;
|
||||||
|
;; Specially for KolibriOS. ;;
|
||||||
|
;; Skin created by Rock_maniak_forever. ;;
|
||||||
|
;; ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
*****************************************
|
||||||
|
* Ïðîëåòàðèè âñåõ ñòðàí, îáúåäèíÿéòåñü! *
|
||||||
|
* Proletarian of all countryes, unite! *
|
||||||
|
*****************************************
|
BIN
skins/Nova_skins/Nova_violet/Active/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_violet/Active/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_violet/Active/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
skins/Nova_skins/Nova_violet/Inactive/base.bmp
Normal file
After Width: | Height: | Size: 150 B |
BIN
skins/Nova_skins/Nova_violet/Inactive/left.bmp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
skins/Nova_skins/Nova_violet/Inactive/oper.bmp
Normal file
After Width: | Height: | Size: 3.6 KiB |
39
skins/Nova_skins/Nova_violet/Nova_violet.asm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
include 'my_skin.inc'
|
||||||
|
|
||||||
|
SKIN_PARAMS \
|
||||||
|
height = bmp_base.height,\ ; skin height
|
||||||
|
margins = [19:1:43:1],\ ; margins [left:top:right:bottom]
|
||||||
|
colors active = [binner=0xBB9BDA:\ ; border inner color
|
||||||
|
bouter=0xBB9BDA:\ ; border outer color
|
||||||
|
bframe=0x552881],\ ; border frame color
|
||||||
|
colors inactive = [binner=0xCCB4E4:\ ; border inner color
|
||||||
|
bouter=0xCCB4E4:\ ; border outer color
|
||||||
|
bframe=0x76459E],\ ; border frame color
|
||||||
|
dtp = 'VIOLET.DTP' ; dtp colors
|
||||||
|
|
||||||
|
SKIN_BUTTONS \
|
||||||
|
close = [-32:0][26:18],\ ; buttons coordinates
|
||||||
|
minimize = [-49:0][17:18] ; [left:top][width:height]
|
||||||
|
|
||||||
|
SKIN_BITMAPS \
|
||||||
|
left active = bmp_left,\ ; skin bitmaps pointers
|
||||||
|
left inactive = bmp_left1,\
|
||||||
|
oper active = bmp_oper,\
|
||||||
|
oper inactive = bmp_oper1,\
|
||||||
|
base active = bmp_base,\
|
||||||
|
base inactive = bmp_base1
|
||||||
|
|
||||||
|
BITMAP bmp_left ,'active/left.bmp' ; skin bitmaps
|
||||||
|
BITMAP bmp_oper ,'active/oper.bmp'
|
||||||
|
BITMAP bmp_base ,'active/base.bmp'
|
||||||
|
BITMAP bmp_left1,'inactive/left.bmp'
|
||||||
|
BITMAP bmp_oper1,'inactive/oper.bmp'
|
||||||
|
BITMAP bmp_base1,'inactive/base.bmp'
|
||||||
|
|
||||||
|
;================================;
|
||||||
|
; Created by Rock_maniak_forever ;
|
||||||
|
;================================;
|
||||||
|
|
||||||
|
; 7838B7
|
||||||
|
|
||||||
|
; 552881
|
BIN
skins/Nova_skins/Nova_violet/Nova_violet.skn
Normal file
BIN
skins/Nova_skins/Nova_violet/Screenshot.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
skins/Nova_skins/Nova_violet/VIOLET.DTP
Normal file
235
skins/Nova_skins/Nova_violet/my_skin.inc
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
;============================================================================
|
||||||
|
; This file should be used to generate skins of new standard
|
||||||
|
;============================================================================
|
||||||
|
; skin file structure:
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; header:
|
||||||
|
; dd 'SKIN'
|
||||||
|
; dd = version (1 for now)
|
||||||
|
; dd @ params
|
||||||
|
; dd @ buttons
|
||||||
|
; dd @ bitmaps
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; NOTE: order of sections listed below is insignificant
|
||||||
|
; since they're identified by pointer in above header
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; params:
|
||||||
|
; dd = skin height
|
||||||
|
; dw = right margin
|
||||||
|
; dw = left margin
|
||||||
|
; dw = bottom margin
|
||||||
|
; dw = top margin
|
||||||
|
; dd = inner line color
|
||||||
|
; dd = outer line color
|
||||||
|
; dd = frame color
|
||||||
|
; dd = dtp file size
|
||||||
|
; ?? = dtp file itself
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; buttons:
|
||||||
|
; dd = button type (1 = close, 2 = minimize)
|
||||||
|
; dw = left button coord (could be negative)
|
||||||
|
; dw = top button coord (could be negative)
|
||||||
|
; dw = button width
|
||||||
|
; dw = button height
|
||||||
|
; ... etc for all buttons
|
||||||
|
; dd = 0 (end of buttons list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmaps:
|
||||||
|
; dw = bitmap kind (1 = left, 2 = oper, 3 = base)
|
||||||
|
; dw = bitmap type (1 = active, 0 = inactive)
|
||||||
|
; dd @ bitmap
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; dd 0 (end of bitmaps list)
|
||||||
|
; ...
|
||||||
|
;----------------------------------------------------------------------------
|
||||||
|
; ...
|
||||||
|
; bitmap:
|
||||||
|
; dd = bitmap width
|
||||||
|
; dd = bitmap height
|
||||||
|
; ?? = raw bitmap data
|
||||||
|
; ... etc for all bitmaps
|
||||||
|
; ...
|
||||||
|
;============================================================================
|
||||||
|
|
||||||
|
dd 'SKIN',1,__params__,__buttons__,__bitmaps__
|
||||||
|
|
||||||
|
struc BITMAPFILEHEADER {
|
||||||
|
.bfType dw ? ; WORD
|
||||||
|
.bfSize dd ? ; DWORD
|
||||||
|
.bfReserved1 dw ? ; WORD
|
||||||
|
.bfReserved2 dw ? ; WORD
|
||||||
|
.bfOffBits dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc BITMAPINFOHEADER {
|
||||||
|
.biSize dd ? ; DWORD
|
||||||
|
.biWidth dd ? ; LONG
|
||||||
|
.biHeight dd ? ; LONG
|
||||||
|
.biPlanes dw ? ; WORD
|
||||||
|
.biBitCount dw ? ; WORD
|
||||||
|
.biCompression dd ? ; DWORD
|
||||||
|
.biSizeImage dd ? ; DWORD
|
||||||
|
.biXPelsPerMeter dd ? ; LONG
|
||||||
|
.biYPelsPerMeter dd ? ; LONG
|
||||||
|
.biClrUsed dd ? ; DWORD
|
||||||
|
.biClrImportant dd ? ; DWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
struc _bmp {
|
||||||
|
.h BITMAPFILEHEADER
|
||||||
|
.i BITMAPINFOHEADER
|
||||||
|
}
|
||||||
|
virtual at 0
|
||||||
|
_bmp _bmp
|
||||||
|
end virtual
|
||||||
|
|
||||||
|
macro BITMAP _name*,_fname*
|
||||||
|
{
|
||||||
|
local w,h,a,r,g,b
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load w dword from _bmp.i.biWidth
|
||||||
|
load h dword from _bmp.i.biHeight
|
||||||
|
end virtual
|
||||||
|
align 4
|
||||||
|
label _name
|
||||||
|
.width = w
|
||||||
|
.height = h
|
||||||
|
dd w,h
|
||||||
|
a=54+(w*3+(w mod 4))*(h-1)
|
||||||
|
size = $
|
||||||
|
repeat h
|
||||||
|
repeat w
|
||||||
|
virtual at 0
|
||||||
|
file _fname
|
||||||
|
load r from a+0
|
||||||
|
load g from a+1
|
||||||
|
load b from a+2
|
||||||
|
end virtual
|
||||||
|
db r,g,b
|
||||||
|
a=a+3
|
||||||
|
end repeat
|
||||||
|
a=a-w*3*2-(w mod 4)
|
||||||
|
end repeat
|
||||||
|
}
|
||||||
|
|
||||||
|
macro define_colors name,[col,val]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local a,b,c
|
||||||
|
forward
|
||||||
|
match =binner,col \{ a = val \}
|
||||||
|
match =bouter,col \{ b = val \}
|
||||||
|
match =bframe,col \{ c = val \}
|
||||||
|
common
|
||||||
|
name equ a,b,c
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_PARAMS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local _height,_margins,_colors,_colors_1,_dtp,_dtp_sz
|
||||||
|
__params__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
match =height,qq \\{ _height = ww \\}
|
||||||
|
match =margins,qq \\{
|
||||||
|
match [q1:q2:q3:q4],ww
|
||||||
|
\\\{
|
||||||
|
_margins equ q3,q1,q4,q2
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =active,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =colors =inactive,qq
|
||||||
|
\\{
|
||||||
|
match [q10==q11:q20==q21:q30==q31],ww
|
||||||
|
\\\{
|
||||||
|
define_colors _colors_1,q10,q11,q20,q21,q30,q31
|
||||||
|
\\\}
|
||||||
|
\\}
|
||||||
|
match =dtp,qq \\{ _dtp equ ww \\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd _height
|
||||||
|
dw _margins
|
||||||
|
dd _colors,_colors_1
|
||||||
|
virtual at 0
|
||||||
|
file _dtp
|
||||||
|
_dtp_sz = $
|
||||||
|
end virtual
|
||||||
|
dd _dtp_sz
|
||||||
|
file _dtp
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BUTTONS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local btn
|
||||||
|
__buttons__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
btn = 0
|
||||||
|
match =close,qq \\{ btn = 1 \\}
|
||||||
|
match =minimize,qq \\{ btn = 2 \\}
|
||||||
|
match [q1:q2][q3:q4],ww
|
||||||
|
\\{
|
||||||
|
if btn <> 0
|
||||||
|
dd btn
|
||||||
|
dw q1,q2,q3,q4
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
||||||
|
|
||||||
|
macro SKIN_BITMAPS [a]
|
||||||
|
{
|
||||||
|
common
|
||||||
|
local bmp
|
||||||
|
__bitmaps__:
|
||||||
|
forward
|
||||||
|
match qq == ww,a
|
||||||
|
\{
|
||||||
|
bmp=-1
|
||||||
|
match qqq =active,qq \\{ bmp = 1 \\}
|
||||||
|
match qqq =inactive,qq \\{ bmp = 0 \\}
|
||||||
|
match =left qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 1,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =oper qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 2,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
match =base qqq,qq
|
||||||
|
\\{
|
||||||
|
if bmp >= 0
|
||||||
|
dw 3,bmp
|
||||||
|
dd ww
|
||||||
|
end if
|
||||||
|
\\}
|
||||||
|
\}
|
||||||
|
common
|
||||||
|
dd 0
|
||||||
|
}
|
BIN
skins/Nova_skins/Screenshot.png
Normal file
After Width: | Height: | Size: 12 KiB |