]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/wx.rc
Build fix for wxOSX after removing position in MacCreateKeyEvent().
[wxWidgets.git] / include / wx / msw / wx.rc
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// File: wx.rc
3// Purpose: wxWindows resource definitions. ALWAYS include
4// this in your application resource file.
5// Author: Julian Smart
6// Modified by:
7// Created:
8// Copyright: (c) Julian Smart
9// RCS-ID: $Id$
10// Licence: wxWindows Licence
11/////////////////////////////////////////////////////////////////////////////
12
13#include <windows.h>
14
15#if defined(_WIN32_WCE)
16 #include "wx/msw/wince/wince.rc"
17#endif
18
19#include "wx/msw/rcdefs.h"
20
21//////////////////////////////////////////////////////////////////////////////
22//
23// This is the MDI Window menu
24//
25
26wxWindowMenu MENU DISCARDABLE
27BEGIN
28 POPUP "&Window"
29 BEGIN
30 MENUITEM "&Cascade", 4002
31 MENUITEM "Tile &Horizontally", 4001
32 MENUITEM "Tile &Vertically", 4005
33 MENUITEM "", -1
34 MENUITEM "&Arrange Icons", 4003
35 MENUITEM "&Next", 4004
36 END
37END
38
39//////////////////////////////////////////////////////////////////////////////
40//
41// Standard wxWindows Cursors
42//
43
44WXCURSOR_HAND CURSOR DISCARDABLE "wx/msw/hand.cur"
45WXCURSOR_BULLSEYE CURSOR DISCARDABLE "wx/msw/bullseye.cur"
46WXCURSOR_PENCIL CURSOR DISCARDABLE "wx/msw/pencil.cur"
47WXCURSOR_MAGNIFIER CURSOR DISCARDABLE "wx/msw/magnif1.cur"
48WXCURSOR_ROLLER CURSOR DISCARDABLE "wx/msw/roller.cur"
49WXCURSOR_PBRUSH CURSOR DISCARDABLE "wx/msw/pbrush.cur"
50WXCURSOR_PLEFT CURSOR DISCARDABLE "wx/msw/pntleft.cur"
51WXCURSOR_PRIGHT CURSOR DISCARDABLE "wx/msw/pntright.cur"
52WXCURSOR_BLANK CURSOR DISCARDABLE "wx/msw/blank.cur"
53WXCURSOR_RIGHT_ARROW CURSOR DISCARDABLE "wx/msw/rightarr.cur"
54WXCURSOR_CROSS CURSOR DISCARDABLE "wx/msw/cross.cur"
55
56
57//////////////////////////////////////////////////////////////////////////////
58//
59// Default Icons
60//
61
62// First wx icon in alphabetical order, so it will be used by Explorer if the
63// application doesn't have any icons of its own
64wxICON_AAA ICON "wx/msw/std.ico"
65
66//wxDEFAULT_FRAME ICON "wx/msw/std.ico"
67//wxDEFAULT_MDIPARENTFRAME ICON "wx/msw/mdi.ico"
68//wxDEFAULT_MDICHILDFRAME ICON "wx/msw/child.ico"
69
70// Standard small icons
71wxICON_SMALL_CLOSED_FOLDER ICON "wx/msw/folder1.ico"
72wxICON_SMALL_OPEN_FOLDER ICON "wx/msw/folder2.ico"
73wxICON_SMALL_FILE ICON "wx/msw/file1.ico"
74wxICON_SMALL_COMPUTER ICON "wx/msw/computer.ico"
75wxICON_SMALL_DRIVE ICON "wx/msw/drive.ico"
76wxICON_SMALL_CDROM ICON "wx/msw/cdrom.ico"
77wxICON_SMALL_FLOPPY ICON "wx/msw/floppy.ico"
78wxICON_SMALL_REMOVEABLE ICON "wx/msw/removble.ico"
79
80//////////////////////////////////////////////////////////////////////////////
81//
82// Bitmaps
83//
84
85// For wxContextHelpButton
86csquery BITMAP "wx/msw/csquery.bmp"
87
88// For obtaining the RGB values of standard colours
89wxBITMAP_STD_COLOURS BITMAP "wx/msw/colours.bmp"
90
91//////////////////////////////////////////////////////////////////////////////
92//
93// Manifest file for Windows XP
94//
95
96#if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
97
98// Visual Studio 2005 generates the manifest automatically and so we
99// shouldn't include it in the resources manually:
100#if !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
101
102// see "about isolated applications" topic in MSDN
103#ifdef ISOLATION_AWARE_ENABLED
104#define wxMANIFEST_ID 2
105#else
106#define wxMANIFEST_ID 1
107#endif
108
109#if defined(WX_CPU_AMD64)
110wxMANIFEST_ID 24 "wx/msw/amd64.manifest"
111#elif defined(WX_CPU_IA64)
112wxMANIFEST_ID 24 "wx/msw/ia64.manifest"
113#elif defined(WX_CPU_X86)
114wxMANIFEST_ID 24 "wx/msw/wx.manifest"
115#endif
116
117#endif // !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
118
119#endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)