summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/cmCursesMainForm.h
diff options
context:
space:
mode:
authorBerk Geveci <berk.geveci@kitware.com>2001-11-06 03:10:52 (GMT)
committerBerk Geveci <berk.geveci@kitware.com>2001-11-06 03:10:52 (GMT)
commit4848c81428b8b8218eb86f23451ff32d78c039cd (patch)
tree33efacbfbe9d519bf62302fffbd06e49d7668c88 /Source/CursesDialog/cmCursesMainForm.h
parent1a8e3ba1e666da622e6f9eb8bcf87ebc707eaaf6 (diff)
downloadCMake-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.h17
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