clumsy/etc/clumsy.rc

37 lines
1.1 KiB
Plaintext

CLUMSY_ICON ICON "clumsy-icon.ico" /* the first icon will also defines the executable icon in Explorer */
/****************************************************/
/* Used by IupFileDlg when SHOWPREVIEW=Yes */
/* 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 lines will enable Windows XP/Vista Visual Styles */
#ifdef X64
/* 64 bit */
1 24 "clumsy64.manifest"
#else
/* 32 bit */
1 24 "clumsy.manifest"
#endif
/****************************************************/