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;};
|
|