/***************************************************************************\ | Project: AE Installer | | By: Gumby & Iritscen | | File: App_Resources.h | | Function: Creates menubar and loads image resources into memory. | | Created: 06/05/2009 08:47:17 | \***************************************************************************/ #ifndef _APP_RESOURCES_H_ #define _APP_RESOURCES_H_ /*! * Control identifiers */ ////@begin control identifiers #define Open 10002 #define ID_MENU 10003 #define ID_MENU1 10004 ////@end control identifiers class AppResources { public: AppResources() {} /*! * Resource functions */ ////@begin AppResources resource functions /// Menubar creation function for ID_MENUBAR static wxMenuBar* CreateMenuMenubar(); /// Retrieves bitmap resources static wxBitmap GetBitmapResource( const wxString& name ); /// Retrieves icon resources static wxIcon GetIconResource( const wxString& name ); ////@end AppResources resource functions }; #endif // _APP_RESOURCES_H_