diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/About.txt b/skins/WindowsXP/Nova_skins/Nova_blue/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_blue/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Active/base.bmp deleted file mode 100644 index 02730219e5..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Active/left.bmp deleted file mode 100644 index 3900f5339f..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Active/oper.bmp deleted file mode 100644 index 43ad640732..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/BLUE.DTP b/skins/WindowsXP/Nova_skins/Nova_blue/BLUE.DTP deleted file mode 100644 index 66c9bf2777..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/BLUE.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/base.bmp deleted file mode 100644 index f577580335..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/left.bmp deleted file mode 100644 index 928676798c..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/oper.bmp deleted file mode 100644 index 4d693e8de5..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.asm b/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.asm deleted file mode 100644 index f62aff0cae..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.asm +++ /dev/null @@ -1,37 +0,0 @@ -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 ; -;================================; - - diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.skn b/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.skn deleted file mode 100644 index 3cbe89fc36..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Nova_blue.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_blue/Screenshot.png deleted file mode 100644 index 4772f207f6..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_blue/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_blue/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_blue/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_blue/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/About.txt b/skins/WindowsXP/Nova_skins/Nova_brown/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_brown/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Active/base.bmp deleted file mode 100644 index 7ac78a4181..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Active/left.bmp deleted file mode 100644 index b53220c959..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Active/oper.bmp deleted file mode 100644 index f4eeb647de..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/base.bmp deleted file mode 100644 index 975ebe3328..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/left.bmp deleted file mode 100644 index d3996dadd1..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/oper.bmp deleted file mode 100644 index 4f766ca9bb..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.asm b/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.asm deleted file mode 100644 index 0e683d5cfc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.skn b/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.skn deleted file mode 100644 index 0ece02e1cc..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Nova_brown.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/ORANGE.DTP b/skins/WindowsXP/Nova_skins/Nova_brown/ORANGE.DTP deleted file mode 100644 index aca152d836..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/ORANGE.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_brown/Screenshot.png deleted file mode 100644 index 8be68b1515..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_brown/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_brown/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_brown/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_brown/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_green/About.txt b/skins/WindowsXP/Nova_skins/Nova_green/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_green/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Active/base.bmp deleted file mode 100644 index 99cecb1633..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Active/left.bmp deleted file mode 100644 index 16c21c912e..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Active/oper.bmp deleted file mode 100644 index 8a765a26a8..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/GREEN.DTP b/skins/WindowsXP/Nova_skins/Nova_green/GREEN.DTP deleted file mode 100644 index 17df4240d5..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/GREEN.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Inactive/base.bmp deleted file mode 100644 index fb31853c66..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Inactive/left.bmp deleted file mode 100644 index 23e5bcfdd4..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_green/Inactive/oper.bmp deleted file mode 100644 index 809dd6ef97..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.asm b/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.asm deleted file mode 100644 index fdd92d8d31..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.skn b/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.skn deleted file mode 100644 index 1b72bfa37f..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Nova_green.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_green/Screenshot.png deleted file mode 100644 index 4fe01a97ec..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_green/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_green/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_green/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_green/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/About.txt b/skins/WindowsXP/Nova_skins/Nova_grey/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_grey/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Active/base.bmp deleted file mode 100644 index b050b09060..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Active/left.bmp deleted file mode 100644 index ddd50cfe92..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Active/oper.bmp deleted file mode 100644 index b9b653982e..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/GREY.DTP b/skins/WindowsXP/Nova_skins/Nova_grey/GREY.DTP deleted file mode 100644 index 786964100a..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/GREY.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/base.bmp deleted file mode 100644 index 0d8c6ee47a..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/left.bmp deleted file mode 100644 index 1b3803b603..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/oper.bmp deleted file mode 100644 index 4550459a6d..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.asm b/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.asm deleted file mode 100644 index bd137adb92..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.skn b/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.skn deleted file mode 100644 index 4d3190a1e9..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Nova_grey.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_grey/Screenshot.png deleted file mode 100644 index 5f7910e362..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_grey/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_grey/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_grey/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_grey/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/About.txt b/skins/WindowsXP/Nova_skins/Nova_pink/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_pink/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Active/base.bmp deleted file mode 100644 index 5661e1b0d3..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Active/left.bmp deleted file mode 100644 index 0112213aed..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Active/oper.bmp deleted file mode 100644 index 6e4572eee5..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/base.bmp deleted file mode 100644 index 28db327aab..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/left.bmp deleted file mode 100644 index 674ef74454..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/oper.bmp deleted file mode 100644 index adda75dfc5..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.asm b/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.asm deleted file mode 100644 index 07bebb5107..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.skn b/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.skn deleted file mode 100644 index dbc07d23e4..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Nova_pink.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/PINK.DTP b/skins/WindowsXP/Nova_skins/Nova_pink/PINK.DTP deleted file mode 100644 index 30c401029d..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/PINK.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_pink/Screenshot.png deleted file mode 100644 index 20bf09898c..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_pink/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_pink/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_pink/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_pink/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_red/About.txt b/skins/WindowsXP/Nova_skins/Nova_red/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_red/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Active/base.bmp deleted file mode 100644 index d5cbabbd54..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Active/left.bmp deleted file mode 100644 index 3f95dca961..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Active/oper.bmp deleted file mode 100644 index 6977ba47a8..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Inactive/base.bmp deleted file mode 100644 index 4a2a8c9354..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Inactive/left.bmp deleted file mode 100644 index f60bc6bcac..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_red/Inactive/oper.bmp deleted file mode 100644 index 2f7fdd6f76..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.asm b/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.asm deleted file mode 100644 index c675f35061..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.skn b/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.skn deleted file mode 100644 index 53afb0aacd..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Nova_red.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/RED.DTP b/skins/WindowsXP/Nova_skins/Nova_red/RED.DTP deleted file mode 100644 index ab934aa25a..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/RED.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_red/Screenshot.png deleted file mode 100644 index 28b945d6cf..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_red/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_red/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_red/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_red/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/About.txt b/skins/WindowsXP/Nova_skins/Nova_violet/About.txt deleted file mode 100644 index 600c7ecebc..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_violet/About.txt +++ /dev/null @@ -1,12 +0,0 @@ - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; Specially for KolibriOS. ;; -;; Skin created by Rock_maniak_forever. ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -***************************************** -* Пролетарии всех стран, объединяйтесь! * -* Proletarian of all countryes, unite! * -***************************************** diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Active/base.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Active/base.bmp deleted file mode 100644 index 33a6ac118c..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Active/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Active/left.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Active/left.bmp deleted file mode 100644 index a811aebe28..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Active/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Active/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Active/oper.bmp deleted file mode 100644 index db674448ad..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Active/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/base.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/base.bmp deleted file mode 100644 index 877a88d749..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/base.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/left.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/left.bmp deleted file mode 100644 index 0b65740c9b..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/left.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/oper.bmp b/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/oper.bmp deleted file mode 100644 index 4373c2b0ba..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Inactive/oper.bmp and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.asm b/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.asm deleted file mode 100644 index 57b9cf774a..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.asm +++ /dev/null @@ -1,39 +0,0 @@ -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 \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.skn b/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.skn deleted file mode 100644 index 7895c1d692..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Nova_violet.skn and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/Screenshot.png b/skins/WindowsXP/Nova_skins/Nova_violet/Screenshot.png deleted file mode 100644 index 7ce413eb09..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/Screenshot.png and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/VIOLET.DTP b/skins/WindowsXP/Nova_skins/Nova_violet/VIOLET.DTP deleted file mode 100644 index a78039e369..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Nova_violet/VIOLET.DTP and /dev/null differ diff --git a/skins/WindowsXP/Nova_skins/Nova_violet/my_skin.inc b/skins/WindowsXP/Nova_skins/Nova_violet/my_skin.inc deleted file mode 100644 index ccbb3c191c..0000000000 --- a/skins/WindowsXP/Nova_skins/Nova_violet/my_skin.inc +++ /dev/null @@ -1,235 +0,0 @@ -;============================================================================ -; 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 -} \ No newline at end of file diff --git a/skins/WindowsXP/Nova_skins/Screenshot.png b/skins/WindowsXP/Nova_skins/Screenshot.png deleted file mode 100644 index eaaedb086e..0000000000 Binary files a/skins/WindowsXP/Nova_skins/Screenshot.png and /dev/null differ