ossp-pkg/as/as-gui/as_gui.h 1.36 -> 1.37
--- as_gui.h 2002/12/02 13:25:36 1.36
+++ as_gui.h 2002/12/03 17:05:11 1.37
@@ -80,6 +80,10 @@
Titraqform(QWidget *pParent = 0, const char *kszName = 0, WFlags Flags = 0);
~Titraqform(void);
+ // Accessor methods
+ const bool isDirty(void) {return m_bDirt;}; // Check for changed state danger
+ void setDirty(bool bDirty = true) {m_bDirt = bDirty;}; // Clean or dirty
+
// Top level members
Preferences *m_pPrefs;
@@ -125,6 +129,7 @@
void updSizes(int, int, int); // Update edit sizes
void confirmEdit(void); // Confirm whole row edition
void configPrefs(void); // Edit menu configure preferences
+ void normalView(void); // View menu normal
void editingView(void); // View menu editing
void timingView(void); // View menu timing
void showFilebar(void); // View menu show file toolbar
@@ -167,12 +172,6 @@
// Standard members
bool m_bDirt; // To track dirty and clean states
- // Standard methods
- bool isDirty(void) {return m_bDirt;}; // Check for changed state danger
-
- // Accessor methods
- void setDirty(bool bDirty = true) {m_bDirt = bDirty;}; // Clean or dirty
-
// Constructor helpers
void setupPrefs(void); // Preferences
void setupActions(void); // Actions
|
|