STYLE: Fix line-too-long
[cmake.git] / Source / WXDialog / CMakeSetup.h
blob00c3c25e5703180550a64fcffdc96f17f3c60c7d
1 /*=========================================================================
3 Program: WXDialog - wxWidgets X-platform GUI Front-End for CMake
4 Module: $RCSfile: CMakeSetup.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 _CMAKESETUP_H_
21 #define _CMAKESETUP_H_
23 #if defined(__GNUG__) && !defined(__APPLE__)
24 #pragma interface "CMakeSetup.cpp"
25 #endif
27 /*!
28 * Includes
31 ////@begin includes
32 #include "wx/image.h"
33 ////@end includes
35 /*!
36 * Forward declarations
39 ////@begin forward declarations
40 ////@end forward declarations
42 /*!
43 * Control identifiers
46 ////@begin control identifiers
47 ////@end control identifiers
49 /*!
50 * CMakeSetupApp class declaration
53 class CMakeSetupApp: public wxApp
55 DECLARE_CLASS( CMakeSetupApp )
56 DECLARE_EVENT_TABLE()
58 public:
59 /// Constructor
60 CMakeSetupApp();
62 /// Initialises the application
63 virtual bool OnInit();
65 /// Called on exit
66 virtual int OnExit();
68 ////@begin CMakeSetupApp event handler declarations
70 ////@end CMakeSetupApp event handler declarations
72 ////@begin CMakeSetupApp member function declarations
74 ////@end CMakeSetupApp member function declarations
76 ////@begin CMakeSetupApp member variables
77 ////@end CMakeSetupApp member variables
79 private:
80 wxString m_AppPath;
83 /*!
84 * Application instance declaration
87 ////@begin declare app
88 DECLARE_APP(CMakeSetupApp)
89 ////@end declare app
91 #endif
92 // _CMAKESETUP_H_