summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-11-06 20:38:08 +0100
committerPixel <pixel@nobis-crew.org>2009-11-06 20:38:08 +0100
commit011d229cc5da218c280d1cd8af998bfaad04e0bd (patch)
treedebb1bb8db467696a3b2b54fc2af7bfe45fcf07b /src
parentdf7b78c867d710d363efc6c0076c5e317b615ddd (diff)
Adding various resources and manifest files to enable XP look when using UI under mingw32.
Diffstat (limited to 'src')
-rw-r--r--src/lua-interface.manifest22
-rw-r--r--src/lua-interface.rc44
-rw-r--r--src/lua.icobin0 -> 1078 bytes
-rw-r--r--src/pen.curbin0 -> 326 bytes
4 files changed, 66 insertions, 0 deletions
diff --git a/src/lua-interface.manifest b/src/lua-interface.manifest
new file mode 100644
index 0000000..af39578
--- /dev/null
+++ b/src/lua-interface.manifest
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<assemblyIdentity
+ version="0.7.0.0"
+ processorArchitecture="x86"
+ name="lua-interface"
+ type="win32"
+/>
+<description>Iup Application</description>
+<dependency>
+ <dependentAssembly>
+ <assemblyIdentity
+ type="win32"
+ name="Microsoft.Windows.Common-Controls"
+ version="6.0.0.0"
+ processorArchitecture="x86"
+ publicKeyToken="6595b64144ccf1df"
+ language="*"
+ />
+ </dependentAssembly>
+</dependency>
+</assembly>
diff --git a/src/lua-interface.rc b/src/lua-interface.rc
new file mode 100644
index 0000000..5a8c1a3
--- /dev/null
+++ b/src/lua-interface.rc
@@ -0,0 +1,44 @@
+LUA_ICON ICON "lua.ico"
+
+1 VERSIONINFO
+ FILEVERSION 0,7,0,0
+ PRODUCTVERSION 0,7,0,0
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "Comments", "http://www.nobis-crew.org/lua-interface\0"
+ VALUE "CompanyName", "Nobis\0"
+ VALUE "FileDescription", "lua-interface\0"
+ VALUE "FileVersion", "0.7.0\0"
+ VALUE "LegalCopyright", "Copyright © 2003-2009 Nicolas ""Pixel"" Noble\0"
+ VALUE "OriginalFilename", "lua-interface.dll\0"
+ VALUE "ProductName", "lua-interface\0"
+ VALUE "ProductVersion", "0.7.0\0"
+ END
+ END
+END
+
+CURSOR_PEN CURSOR "pen.cur"
+
+/* To avoid the inclusion of <winuser.h> */
+#define WS_CHILD 0x40000000L
+#define WS_VISIBLE 0x10000000L
+#define WS_CLIPSIBLINGS 0x04000000L
+#define DS_3DLOOK 0x0004L
+#define DS_CONTROL 0x0400L
+#define SS_OWNERDRAW 0x0000000DL
+#define WS_EX_STATICEDGE 0x00020000L
+
+#define IUP_PREVIEWCANVAS 3000
+
+iupPreviewDlg DIALOG DISCARDABLE 0, 0, 250, 95
+STYLE WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | DS_3DLOOK | DS_CONTROL
+FONT 8, "MS Shell Dlg"
+BEGIN
+ CONTROL "", IUP_PREVIEWCANVAS, "STATIC", SS_OWNERDRAW, 70, 0, 120, 90, WS_EX_STATICEDGE
+END
+
+/* The following line will enable Windows XP Visual Styles */
+1 24 "lua-interface.manifest"
diff --git a/src/lua.ico b/src/lua.ico
new file mode 100644
index 0000000..ccbabc4
--- /dev/null
+++ b/src/lua.ico
Binary files differ
diff --git a/src/pen.cur b/src/pen.cur
new file mode 100644
index 0000000..5912b15
--- /dev/null
+++ b/src/pen.cur
Binary files differ