diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:56:41 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:59:33 -0800 |
commit | d577d991b97ae2b5ee1af23641bcffc3f83af5b2 (patch) | |
tree | 590639d50205d1bcfaff2a7d2dc6ebf3f373c7ed /iup/etc |
Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux.
Diffstat (limited to 'iup/etc')
-rwxr-xr-x | iup/etc/iup.manifest | 22 | ||||
-rwxr-xr-x | iup/etc/iup.rc | 44 | ||||
-rwxr-xr-x | iup/etc/iup64.manifest | 22 | ||||
-rwxr-xr-x | iup/etc/pen.cur | bin | 0 -> 326 bytes | |||
-rwxr-xr-x | iup/etc/tecgraf.ico | bin | 0 -> 7438 bytes |
5 files changed, 88 insertions, 0 deletions
diff --git a/iup/etc/iup.manifest b/iup/etc/iup.manifest new file mode 100755 index 0000000..2988531 --- /dev/null +++ b/iup/etc/iup.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="3.0.0.0" + processorArchitecture="x86" + name="IupApp" + 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/iup/etc/iup.rc b/iup/etc/iup.rc new file mode 100755 index 0000000..eab8cf5 --- /dev/null +++ b/iup/etc/iup.rc @@ -0,0 +1,44 @@ +TECGRAF_ICON ICON "tecgraf.ico" + +1 VERSIONINFO + FILEVERSION 3,0,0,0 + PRODUCTVERSION 3,0,0,0 +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "www.tecgraf.puc-rio.br/iup\0" + VALUE "CompanyName", "Tecgraf/PUC-Rio\0" + VALUE "FileDescription", "IUP - Portable User Interface\0" + VALUE "FileVersion", "3.0.0\0" + VALUE "LegalCopyright", "Copyright © 1994-2009 Tecgraf, PUC-Rio.\0" + VALUE "OriginalFilename", "iup.dll\0" + VALUE "ProductName", "IUP for Windows\0" + VALUE "ProductVersion", "3.0.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 "iup.manifest" diff --git a/iup/etc/iup64.manifest b/iup/etc/iup64.manifest new file mode 100755 index 0000000..e399771 --- /dev/null +++ b/iup/etc/iup64.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="3.0.0.0" + processorArchitecture="amd64" + name="IupApp" + type="win32" +/> +<description>Iup Application</description> +<dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="amd64" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> +</dependency> +</assembly> diff --git a/iup/etc/pen.cur b/iup/etc/pen.cur Binary files differnew file mode 100755 index 0000000..5912b15 --- /dev/null +++ b/iup/etc/pen.cur diff --git a/iup/etc/tecgraf.ico b/iup/etc/tecgraf.ico Binary files differnew file mode 100755 index 0000000..0db610e --- /dev/null +++ b/iup/etc/tecgraf.ico |