summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.h
authoreilers <eilers>2002-11-18 09:38:28 (UTC)
committer eilers <eilers>2002-11-18 09:38:28 (UTC)
commit8401def65aa4f19d91873bc57a3dcf25c358c490 (patch) (side-by-side diff)
tree3e64bd2d1b6f92c77304cc2d2c0fd06b07d718e5 /core/pim/addressbook/configdlg.h
parent4d0773414a0fb59e53f30d4d2363f73304f474dc (diff)
downloadopie-8401def65aa4f19d91873bc57a3dcf25c358c490.zip
opie-8401def65aa4f19d91873bc57a3dcf25c358c490.tar.gz
opie-8401def65aa4f19d91873bc57a3dcf25c358c490.tar.bz2
Back to main tree. Back to main tree.
Back to main tree. Waiting for moving to feature freeze ..
Diffstat (limited to 'core/pim/addressbook/configdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/configdlg.h30
1 files changed, 17 insertions, 13 deletions
diff --git a/core/pim/addressbook/configdlg.h b/core/pim/addressbook/configdlg.h
index 34e9718..53d3d01 100644
--- a/core/pim/addressbook/configdlg.h
+++ b/core/pim/addressbook/configdlg.h
@@ -2,5 +2,8 @@
#define _CONFIGDLG_H_
+#include <qmap.h>
+
#include "configdlg_base.h"
+#include "abconfig.h"
class ConfigDlg: public ConfigDlg_Base
@@ -11,17 +14,18 @@ public:
// Search Settings
- bool useRegExp() const;
- bool useWildCards() const;
- bool beCaseSensitive() const;
- bool signalWrapAround() const;
- bool useQtMail() const;
- bool useOpieMail() const;
-
- void setUseRegExp( bool v );
- void setUseWildCards( bool v );
- void setBeCaseSensitive( bool v );
- void setSignalWrapAround( bool v );
- void setQtMail( bool v );
- void setOpieMail( bool v );
+ void setConfig( const AbConfig& cnf );
+ AbConfig getConfig();
+
+protected slots:
+ void slotItemUp();
+ void slotItemDown();
+ void slotItemAdd();
+ void slotItemRemove();
+
+protected:
+ QStringList contFields;
+ AbConfig m_config;
+ QMap<QString, int> m_mapStrToID;
+ QMap<int, QString> m_mapIDToStr;
};