]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/wx.rc
Make wxComboCtrlBase::Set*groundColour() methods public.
[wxWidgets.git] / include / wx / msw / wx.rc
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
99d80019
JS
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
99d80019 9// Licence: wxWindows Licence
1e3698e5 10/////////////////////////////////////////////////////////////////////////////
2bda0e17 11
2cef71bc 12#include <windows.h>
2bda0e17 13
39d2f9a7 14#if defined(_WIN32_WCE)
04e539f5 15 #include "wx/msw/wince/wince.rc"
39d2f9a7
JS
16#endif
17
c8d58531
MW
18#include "wx/msw/rcdefs.h"
19
2bda0e17
KB
20//////////////////////////////////////////////////////////////////////////////
21//
22// This is the MDI Window menu
23//
24
25wxWindowMenu MENU DISCARDABLE
26BEGIN
27 POPUP "&Window"
28 BEGIN
29 MENUITEM "&Cascade", 4002
42e69d6b
VZ
30 MENUITEM "Tile &Horizontally", 4001
31 MENUITEM "Tile &Vertically", 4005
32 MENUITEM "", -1
7f555861 33 MENUITEM "&Arrange Icons", 4003
2bda0e17
KB
34 MENUITEM "&Next", 4004
35 END
36END
37
38//////////////////////////////////////////////////////////////////////////////
39//
40// Standard wxWindows Cursors
41//
42
43WXCURSOR_HAND CURSOR DISCARDABLE "wx/msw/hand.cur"
44WXCURSOR_BULLSEYE CURSOR DISCARDABLE "wx/msw/bullseye.cur"
45WXCURSOR_PENCIL CURSOR DISCARDABLE "wx/msw/pencil.cur"
46WXCURSOR_MAGNIFIER CURSOR DISCARDABLE "wx/msw/magnif1.cur"
2bda0e17 47WXCURSOR_ROLLER CURSOR DISCARDABLE "wx/msw/roller.cur"
2bda0e17
KB
48WXCURSOR_PBRUSH CURSOR DISCARDABLE "wx/msw/pbrush.cur"
49WXCURSOR_PLEFT CURSOR DISCARDABLE "wx/msw/pntleft.cur"
50WXCURSOR_PRIGHT CURSOR DISCARDABLE "wx/msw/pntright.cur"
2bda0e17 51WXCURSOR_BLANK CURSOR DISCARDABLE "wx/msw/blank.cur"
27e7e859 52WXCURSOR_CROSS CURSOR DISCARDABLE "wx/msw/cross.cur"
15dadf31 53
2bda0e17
KB
54
55//////////////////////////////////////////////////////////////////////////////
56//
57// Default Icons
58//
59
06ad6296
VZ
60// First wx icon in alphabetical order, so it will be used by Explorer if the
61// application doesn't have any icons of its own
62wxICON_AAA ICON "wx/msw/std.ico"
63
c085e333
VZ
64//wxDEFAULT_FRAME ICON "wx/msw/std.ico"
65//wxDEFAULT_MDIPARENTFRAME ICON "wx/msw/mdi.ico"
66//wxDEFAULT_MDICHILDFRAME ICON "wx/msw/child.ico"
2bda0e17 67
51a58d8b
JS
68// Standard small icons
69wxICON_SMALL_CLOSED_FOLDER ICON "wx/msw/folder1.ico"
70wxICON_SMALL_OPEN_FOLDER ICON "wx/msw/folder2.ico"
71wxICON_SMALL_FILE ICON "wx/msw/file1.ico"
72wxICON_SMALL_COMPUTER ICON "wx/msw/computer.ico"
73wxICON_SMALL_DRIVE ICON "wx/msw/drive.ico"
74wxICON_SMALL_CDROM ICON "wx/msw/cdrom.ico"
75wxICON_SMALL_FLOPPY ICON "wx/msw/floppy.ico"
76wxICON_SMALL_REMOVEABLE ICON "wx/msw/removble.ico"
1e3698e5 77
2bda0e17
KB
78//////////////////////////////////////////////////////////////////////////////
79//
80// Bitmaps
81//
82
fb6261e9 83// For wxContextHelpButton
84bfc0d5 84csquery BITMAP "wx/msw/csquery.bmp"
039df303
JS
85
86// For obtaining the RGB values of standard colours
87wxBITMAP_STD_COLOURS BITMAP "wx/msw/colours.bmp"
88
5db93205
VS
89//////////////////////////////////////////////////////////////////////////////
90//
15f74a3f
VZ
91// Include manifest file for common controls library v6 required to use themes.
92//
93// Predefining wxUSE_NO_MANIFEST as 1 always disables the use of the manifest.
94// Otherwise we include it only if wxUSE_RC_MANIFEST is defined as 1.
5db93205
VS
95//
96
b1f68ca3 97#if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
a862159d 98
15f74a3f 99#if defined(wxUSE_RC_MANIFEST) && wxUSE_RC_MANIFEST
e396018d 100
20ed1e94
VZ
101// see "about isolated applications" topic in MSDN
102#ifdef ISOLATION_AWARE_ENABLED
103#define wxMANIFEST_ID 2
104#else
105#define wxMANIFEST_ID 1
106#endif
107
c8d58531 108#if defined(WX_CPU_AMD64)
20ed1e94 109wxMANIFEST_ID 24 "wx/msw/amd64.manifest"
6429ac6d 110#elif defined(WX_CPU_IA64)
20ed1e94 111wxMANIFEST_ID 24 "wx/msw/ia64.manifest"
c8d58531 112#elif defined(WX_CPU_X86)
20ed1e94 113wxMANIFEST_ID 24 "wx/msw/wx.manifest"
15f74a3f
VZ
114#else
115// Notice that if the manifest is included, WX_CPU_XXX constant corresponding
116// to the architecture we're compiling for must be defined. This can be done
117// either manually in your make/project file or by configuring the resource
118// compiler paths to search in $(WXWIN)/lib/$(COMPILER_PREFIX)_lib/mswu[d]
119// directory for its include files, as wx/msw/rcdefs.h file in this directory
120// is generated during wxWidgets build and contains the correct definition.
121#error "One of WX_CPU_XXX constants must be defined. See comment above."
b1f68ca3
JS
122#endif
123
15f74a3f 124#endif // wxUSE_RC_MANIFEST
a862159d 125
e396018d 126#endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)