Check-in Number:
|
4075 | |
Date: |
2003-Feb-22 00:42:09 (local)
2003-Feb-21 23:42:09 (UTC) |
User: | ms |
Branch: | |
Comment: |
Added detailed listing and signature prefs, with linkage to public accessors. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_assist.cpp 1.111 -> 1.112
--- as_assist.cpp 2003/02/21 10:11:35 1.111
+++ as_assist.cpp 2003/02/21 23:42:09 1.112
@@ -129,6 +129,8 @@
m_pPrefs->setBool(TITRAQ_PREFSOAPON, TITRAQ_DEFSOAPON);
m_pPrefs->setBool(TITRAQ_PREFBAKON, TITRAQ_DEFBAKON);
m_pPrefs->setBool(TITRAQ_PREFEXTENDON, TITRAQ_DEFEXTENDON);
+ m_pPrefs->setBool(TITRAQ_PREFDETAILON, TITRAQ_DEFDETAILON);
+ m_pPrefs->setBool(TITRAQ_PREFSIGNATON, TITRAQ_DEFSIGNATON);
m_pPrefs->setNumber(TITRAQ_PREFREPORTYPE, TITRAQ_DEFREPORTYPE);
m_pPrefs->setNumber(TITRAQ_PREFREPORTWEEKS, TITRAQ_DEFREPORTWEEKS);
m_pPrefs->setNumber(TITRAQ_PREFREPORTMONTHS, TITRAQ_DEFREPORTMONTHS);
|
|
ossp-pkg/as/as-gui/as_const.h 1.57 -> 1.58
--- as_const.h 2003/02/21 10:11:36 1.57
+++ as_const.h 2003/02/21 23:42:09 1.58
@@ -66,6 +66,10 @@
#define TITRAQ_DEFBAKON 1
#define TITRAQ_PREFEXTENDON "filextension"
#define TITRAQ_DEFEXTENDON 1
+#define TITRAQ_PREFDETAILON "detailisting"
+#define TITRAQ_DEFDETAILON 0
+#define TITRAQ_PREFSIGNATON "signatureline"
+#define TITRAQ_DEFSIGNATON 0
#define TITRAQ_PREFREPORTYPE "reportperiod"
#define TITRAQ_DEFREPORTYPE TITRAQ_REPORTWEEK
#define TITRAQ_PREFREPORTWEEKS "reportweeks"
|
|
ossp-pkg/as/as-gui/as_panel.h 1.12 -> 1.13
--- as_panel.h 2003/02/21 15:04:04 1.12
+++ as_panel.h 2003/02/21 23:42:09 1.13
@@ -111,6 +111,8 @@
bool getSoapon(void) {return (m_pSoapcheck->isChecked());};
bool getBackon(void) {return (m_pBackupcheck->isChecked());};
bool getExtendon(void) {return (m_pExtendcheck->isChecked());};
+ bool getDetailon(void) {return (m_pDetailcheck->isChecked());};
+ bool getSignaton(void) {return (m_pSigncheck->isChecked());};
QColor *getLight(void) {return m_pLight;};
QColor *getDark(void) {return m_pDark;};
QColor *getRevlight(void) {return (QColor *)&m_pOrigcolours->foreground();};
@@ -125,6 +127,8 @@
void setSoaphost(const QString &kInstr) {m_pSoapline->setText(kInstr);};
void setBackon(const bool &kbEnable = true) {m_pBackupcheck->setChecked(kbEnable);};
void setExtendon(const bool &kbEnable = true) {m_pExtendcheck->setChecked(kbEnable);};
+ void setDetailon(const bool &kbEnable = true) {m_pDetailcheck->setChecked(kbEnable);};
+ void setSignaton(const bool &kbEnable = true) {m_pSigncheck->setChecked(kbEnable);};
void lockCorba(const bool &kbLock = true) {m_pCorbacheck->setEnabled(!kbLock);};
void lockSoap(const bool &kbLock = true) {m_pSoapcheck->setEnabled(!kbLock);};
void setLight(const QColor *pLight) {m_pLight = (QColor *)pLight;};
|
|