ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/Installer/trunk/source/app_resources.h
Revision: 487
Committed: Wed Dec 30 01:51:38 2009 UTC (15 years, 9 months ago) by iritscen
Content type: text/x-chdr
File size: 1133 byte(s)
Log Message:
Adding update feature; moving/neatening some code; adding globals.h

File Contents

# Content
1 /***************************************************************************\
2 | Project: AE Installer |
3 | By: Gumby & Iritscen |
4 | File: App_Resources.h |
5 | Function: Creates menubar and loads image resources into memory. |
6 | Created: 06/05/2009 08:47:17 |
7 \***************************************************************************/
8
9
10 #ifndef _APP_RESOURCES_H_
11 #define _APP_RESOURCES_H_
12
13 /*!
14 * Control identifiers
15 */
16
17 ////@begin control identifiers
18 #define Open 10002
19 #define ID_MENU 10003
20 #define ID_MENU1 10004
21 ////@end control identifiers
22
23 class AppResources
24 {
25 public:
26 AppResources() {}
27
28 /*!
29 * Resource functions
30 */
31
32 ////@begin AppResources resource functions
33 /// Menubar creation function for ID_MENUBAR
34 static wxMenuBar* CreateMenuMenubar();
35
36 /// Retrieves bitmap resources
37 static wxBitmap GetBitmapResource( const wxString& name );
38
39 /// Retrieves icon resources
40 static wxIcon GetIconResource( const wxString& name );
41 ////@end AppResources resource functions
42
43 };
44
45 #endif
46 // _APP_RESOURCES_H_

Properties

Name Value
svn:executable *