diff options
author | Berk Geveci <berk.geveci@kitware.com> | 2001-11-06 03:10:52 (GMT) |
---|---|---|
committer | Berk Geveci <berk.geveci@kitware.com> | 2001-11-06 03:10:52 (GMT) |
commit | 4848c81428b8b8218eb86f23451ff32d78c039cd (patch) | |
tree | 33efacbfbe9d519bf62302fffbd06e49d7668c88 /Source/CursesDialog/cmCursesMainForm.h | |
parent | 1a8e3ba1e666da622e6f9eb8bcf87ebc707eaaf6 (diff) | |
download | CMake-4848c81428b8b8218eb86f23451ff32d78c039cd.zip CMake-4848c81428b8b8218eb86f23451ff32d78c039cd.tar.gz CMake-4848c81428b8b8218eb86f23451ff32d78c039cd.tar.bz2 |
Many improvements.
Diffstat (limited to 'Source/CursesDialog/cmCursesMainForm.h')
-rw-r--r-- | Source/CursesDialog/cmCursesMainForm.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.h b/Source/CursesDialog/cmCursesMainForm.h index 5102708..2408cf2 100644 --- a/Source/CursesDialog/cmCursesMainForm.h +++ b/Source/CursesDialog/cmCursesMainForm.h @@ -36,11 +36,25 @@ public: // list of current composites. bool LookForCacheEntry(const char* key); + static const int MIN_WIDTH; + static const int MIN_HEIGHT; + static const int IDEAL_WIDTH; + static const int MAX_WIDTH; + + // Description: + // This method should normally called only by the form. + // The only exception is during a resize. + void UpdateStatusBar(); + + // Description: + // This method should normally called only by the form. + // The only exception is during a resize. + void PrintKeys(); + protected: cmCursesMainForm(const cmCursesMainForm& from); void operator=(const cmCursesMainForm&); - void UpdateCurrentEntry(); void RunCMake(bool generateMakefiles); void FillCacheManagerFromUI(); @@ -49,6 +63,7 @@ protected: WINDOW* m_Window; std::string m_WhereSource; int m_Height; + }; #endif // __cmCursesMainForm_h |