diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 16:01:30 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 16:01:30 (GMT) |
commit | 483e6ddafde3cf00b3858d901557c183506b9b78 (patch) | |
tree | 052fa738acd7981438d26044fd4f348ce522a952 /Source/FLTKDialog/CMakeSetupGUIImplementation.h | |
parent | 259b5ad928ee8d7315ab57335778306f9672e821 (diff) | |
download | CMake-483e6ddafde3cf00b3858d901557c183506b9b78.zip CMake-483e6ddafde3cf00b3858d901557c183506b9b78.tar.gz CMake-483e6ddafde3cf00b3858d901557c183506b9b78.tar.bz2 |
Implementation of the virtual Callbacks declared in the GUI
Diffstat (limited to 'Source/FLTKDialog/CMakeSetupGUIImplementation.h')
-rw-r--r-- | Source/FLTKDialog/CMakeSetupGUIImplementation.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Source/FLTKDialog/CMakeSetupGUIImplementation.h b/Source/FLTKDialog/CMakeSetupGUIImplementation.h new file mode 100644 index 0000000..506cc1e --- /dev/null +++ b/Source/FLTKDialog/CMakeSetupGUIImplementation.h @@ -0,0 +1,35 @@ + +#ifndef CMakeSetupGUIImplementation_h +#define CMakeSetupGUIImplementation_h + +#include "CMakeSetupGUI.h" + + +/** + * + * This class implements the virtual methods + * declared in the GUI interface + * + */ + +class CMakeSetupGUIImplementation : public CMakeSetupGUI +{ + +public: + + CMakeSetupGUIImplementation(); + virtual ~CMakeSetupGUIImplementation(); + virtual void Close( void ); + virtual void Show( void ); + virtual void BuildProjectFiles( void ); + virtual void BrowseForBinaryPath( void ); + virtual void BrowseForSourcePath( void ); + virtual void SetBinaryPath( const char * path ); + virtual void SetSourcePath( const char * path ); + virtual bool VerifyBinaryPath( const char * path ); + virtual bool VerifySourcePath( const char * path ); + +}; + + +#endif |