| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef CMakeSetupGUIImplementation_h
- #define CMakeSetupGUIImplementation_h
- #include "CMakeSetupGUI.h"
- #include "FLTKPropertyList.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 UpdateData( bool option );
- virtual void BuildProjectFiles( void );
- virtual void BrowseForBinaryPath( void );
- virtual void BrowseForSourcePath( void );
- virtual bool SetBinaryPath( const char * path );
- virtual bool SetSourcePath( const char * path );
- virtual void SaveCacheFromGUI( void );
- virtual void LoadCacheFromDiskToGUI( void );
- virtual void FillCacheGUIFromCacheManager( void );
- virtual void FillCacheManagerFromCacheGUI( void );
- private:
- virtual bool VerifyBinaryPath( const std::string & path ) const;
- virtual bool VerifySourcePath( const std::string & path ) const;
- virtual std::string ExpandPathAndMakeItAbsolute( const std::string & inputPath ) const;
- private:
- fltk::PropertyList m_CacheEntriesList;
- std::string m_WhereBuild;
- std::string m_WhereSource;
- std::string m_PathToExecutable;
- bool m_BuildPathChanged;
- };
- #endif
|