--- as_gui.h 2002/11/26 14:10:32 1.25
+++ as_gui.h 2002/11/26 17:23:51 1.26
@@ -55,8 +55,9 @@
QAction *m_pFilenewact, *m_pFileopenact;
QAction *m_pFilesaveact, *m_pFilesaveasact;
QAction *m_pFilecloseact, *m_pFilequitact;
- QAction *m_pAddrowact, *m_pDeleterowact;
- QAction *m_pWritedataact;
+ QAction *m_pAddrowact, *m_pDelrowact;
+ QAction *m_pCutact, *m_pCopyact;
+ QAction *m_pPasteact, *m_pWritedataact;
// Table, cells, and entries in package layout
QTable *m_pMaintable;
@@ -79,6 +80,9 @@
protected slots:
virtual void init(void); // Override init to include custom controls
+ void cutEntry(void); // Cut a task entry from the list
+ void copyEntry(void); // Copy a task entry from the list
+ void pasteEntry(void); // Paste a task entry to the list
void addEntry(void); // Add a task entry to the list
void delEntry(void); // Delete a task entry from the list
void writeEntry(void); // Write the task list to a filedescriptor
@@ -90,15 +94,23 @@
void aboutTitraq(void); // Learn more about this program itself
void aboutOSSP(void); // Learn more about the OSSP
void aboutQt(void); // Learn more about Qt
- void cut(void); // Edit menu cut
- void copy(void); // Edit menu copy
- void paste(void); // Edit menu paste
void selAll(void); // Edit menu select all
void updEdit(int, int); // Update edit controls
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
+ void showEditbar(void); // View menu show edit toolbar
+ void showWhatsbar(void); // View menu show whats this toolbar
+ void showLinecol(void); // View menu show line numbers column
+ void showGuidcol(void); // View menu show GUIDs column
+ void showDatecol(void); // View menu show Dates column
+ void showUsercol(void); // View menu show Users column
+ void showTaskcol(void); // View menu show Tasks column
+ void showStartcol(void); // View menu show Start time column
+ void showFinishcol(void); // View menu show Finish time column
+ void showAmountcol(void); // View menu show Amounts column
+ void showRemarkcol(void); // View menu show Remarks column
protected:
// Application main events
@@ -120,6 +132,7 @@
// Belong to us
QToolBar *m_pFiletools;
QToolBar *m_pEdittools;
+ QToolBar *m_pWhatstools;
QString *m_szFilename;
// Standard members
|