Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / WXDialog / config.h
blobcd3bb9a35242dee8cffd1e91ba403db03a526c89
1 /*=========================================================================
3 Program: WXDialog - wxWidgets X-platform GUI Front-End for CMake
4 Module: $RCSfile: config.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 __CMAKE_CONFIG_H__
21 #define __CMAKE_CONFIG_H__
23 #define CM_LASTPROJECT_PATH "LastProjectPath" // last project path for CMakeLists.txt in edit box
24 #define CM_LASTBUILD_PATH "LastBuildPath" // last build path for cache in edit box
25 #define CM_MAX_RECENT_PATHS 5 // max amount most recent used paths in menu
26 #define CM_MAX_SEARCH_QUERIES 10 // max amount of entries in search query window
27 #define CM_RECENT_BUILD_PATH "LastRecentPath" // will be enumerated like LastRecentPath0 LastRecentPath1 etc
28 #define CM_SEARCH_QUERY "SearchQuery" // will be enumerated like SearchQuery0 SearchQuery1 etc
29 #define CM_XSIZE "CMakeXSize" // x size of window
30 #define CM_YSIZE "CMakeYSize" // y size of window
31 #define CM_XPOS "CMakeXPos" // x pos of window
32 #define CM_YPOS "CMakeYPos" // y pos of window
33 #define CM_SPLITTERPOS "CMakeSplitterPos" // position of splitter window
35 #define CM_CLOSEAFTERGEN "CMakeCloseAfterGenerate" // close CMake after succesful generation (old behaviour)
36 #define CM_CLOSEAFTERGEN_DEF false // inherit default false when not present
38 #define CM_RECENT_BUILD_ITEM 10000 // ID of menu item for recent builds
39 #define CMAKEGUI_MAJORVER 0 // major build
40 #define CMAKEGUI_MINORVER 9 // minor build
41 #define CMAKEGUI_ADDVER "b" // postfix (beta, alpha, none)
43 #endif