diff --git a/skins/ConLenov/mntech/Tupfile.lua b/skins/ConLenov/mntech/Tupfile.lua new file mode 100644 index 0000000000..c29bcee846 --- /dev/null +++ b/skins/ConLenov/mntech/Tupfile.lua @@ -0,0 +1,3 @@ +if tup.getconfig("NO_FASM") ~= "" then return end +tup.rule("default.dtp.asm", 'fasm "%f" "%o"', "default.dtp") +tup.rule({"mntech.asm", extra_inputs = {"default.dtp"}}, 'fasm "%f" "%o" ' .. tup.getconfig("KPACK_CMD"), "mntech.skn") diff --git a/skins/ConLenov/mntech/base.bmp b/skins/ConLenov/mntech/base.bmp new file mode 100644 index 0000000000..8d5ccc10d3 Binary files /dev/null and b/skins/ConLenov/mntech/base.bmp differ diff --git a/skins/ConLenov/mntech/base_1.bmp b/skins/ConLenov/mntech/base_1.bmp new file mode 100644 index 0000000000..8ff5bde492 Binary files /dev/null and b/skins/ConLenov/mntech/base_1.bmp differ diff --git a/skins/ConLenov/mntech/build.bat b/skins/ConLenov/mntech/build.bat new file mode 100644 index 0000000000..8c472582e5 --- /dev/null +++ b/skins/ConLenov/mntech/build.bat @@ -0,0 +1,4 @@ +@del default.skn +@fasm default.dtp.asm default.dtp +@fasm mntech.asm default.skn +@del default.dtp diff --git a/skins/ConLenov/mntech/default.dtp.asm b/skins/ConLenov/mntech/default.dtp.asm new file mode 100644 index 0000000000..6af9a8f5b2 --- /dev/null +++ b/skins/ConLenov/mntech/default.dtp.asm @@ -0,0 +1,10 @@ +frame dd 0x40403b +grab dd 0x625f54 +grab_button dd 0x625a4d +grab_button_text dd 0xFFFFFF +grab_text dd 0xFFFFFF +work dd 0xf6f6f6 +work_button dd 0xb2b2b2 +work_button_text dd 0xffffff +work_text dd 0x000000 +work_graph dd 0xb2b2b2 \ No newline at end of file diff --git a/skins/ConLenov/mntech/left.bmp b/skins/ConLenov/mntech/left.bmp new file mode 100644 index 0000000000..fba0b751cd Binary files /dev/null and b/skins/ConLenov/mntech/left.bmp differ diff --git a/skins/ConLenov/mntech/left_1.bmp b/skins/ConLenov/mntech/left_1.bmp new file mode 100644 index 0000000000..0ac6ba3a0c Binary files /dev/null and b/skins/ConLenov/mntech/left_1.bmp differ diff --git a/skins/ConLenov/mntech/mntech.asm b/skins/ConLenov/mntech/mntech.asm new file mode 100644 index 0000000000..c47ed7ed10 --- /dev/null +++ b/skins/ConLenov/mntech/mntech.asm @@ -0,0 +1,31 @@ +include "../../skin.inc" + +SKIN_PARAMS \ + height = bmp_base.height,\ ; skin height + margins = [5:1:37:1],\ ; margins [left:top:right:bottom] + colors active = [binner=0xf6f6f6:\ ; border inner color + bouter=0xf6f6f6:\ ; border outer color + bframe=0xf6f6f6],\ ; border frame color + colors inactive = [binner=0xf6f6f6:\ ; border inner color + bouter=0xf6f6f6:\ ; border outer color + bframe=0xf6f6f6],\ ; border frame color + dtp = 'default.dtp' ; dtp colors + +SKIN_BUTTONS \ + close = [-18:4][14:14],\ ; buttons coordinates + minimize = [-33:4][14:14] ; [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 ,'left.bmp' ; skin bitmaps +BITMAP bmp_oper ,'oper.bmp' +BITMAP bmp_base ,'base.bmp' +BITMAP bmp_left1,'left_1.bmp' +BITMAP bmp_oper1,'oper_1.bmp' +BITMAP bmp_base1,'base_1.bmp' \ No newline at end of file diff --git a/skins/ConLenov/mntech/oper.bmp b/skins/ConLenov/mntech/oper.bmp new file mode 100644 index 0000000000..bd078660a8 Binary files /dev/null and b/skins/ConLenov/mntech/oper.bmp differ diff --git a/skins/ConLenov/mntech/oper_1.bmp b/skins/ConLenov/mntech/oper_1.bmp new file mode 100644 index 0000000000..fb48e80cd1 Binary files /dev/null and b/skins/ConLenov/mntech/oper_1.bmp differ diff --git a/skins/skinlist.lua b/skins/skinlist.lua index 408fa3d574..69af4eb4c3 100644 --- a/skins/skinlist.lua +++ b/skins/skinlist.lua @@ -1,6 +1,7 @@ -- Provides list of skins for distribution kit, -- included by ../data/Tupfile.lua. skinlist = { +"ConLenov/mntech/mntech.skn", "Leency/AreaSq/AreaSq.skn", "Leency/Blueberries/Blueberries.skn", "Leency/HydrogenOS/HydrogenOS.skn",