Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / WXDialog / app_resources.h
blobe7b17c14867f5ae5cf6d7ad9eef4c740af97ed83
1 /*=========================================================================
3 Program: WXDialog - wxWidgets X-platform GUI Front-End for CMake
4 Module: $RCSfile: app_resources.h,v $
5 Language: C++
6 Date: $Date: 2005/06/30 19:54:14 $
7 Version: $Revision: 1.1 $
9 Author: Jorgen Bodde
11 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
12 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
14 This software is distributed WITHOUT ANY WARRANTY; without even
15 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 PURPOSE. See the above copyright notices for more information.
18 =========================================================================*/
20 #ifndef _APP_RESOURCES_H_
21 #define _APP_RESOURCES_H_
23 #if defined(__GNUG__) && !defined(__APPLE__)
24 #pragma interface "app_resources.cpp"
25 #endif
27 /*!
28 * Control identifiers
31 ////@begin control identifiers
32 #define ID_CACHE_IGNORE 10051
33 #define ID_CACHE_DELETE 10052
34 #define ID_CACHE_BROWSE 10053
35 ////@end control identifiers
37 class AppResources
39 public:
40 AppResources() {}
42 /*!
43 * Resource functions
46 ////@begin AppResources resource functions
47 /// Menu creation function for ID_MENU
48 static wxMenu* CreatePopupMenu();
50 /// Retrieves bitmap resources
51 static wxBitmap GetBitmapResource( const wxString& name );
53 /// Retrieves icon resources
54 static wxIcon GetIconResource( const wxString& name );
55 ////@end AppResources resource functions
59 #endif
60 // _APP_RESOURCES_H_