summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/abconfig.cpp
authordrw <drw>2005-02-06 23:12:25 (UTC)
committer drw <drw>2005-02-06 23:12:25 (UTC)
commit5652634e4ff03370564925ce0856b260c001dc0f (patch) (side-by-side diff)
tree614cbdec8ff9f4f674a9cb4e5caf44cce1def4f8 /core/pim/addressbook/abconfig.cpp
parent266d71ee80151b3c97671acc95275aa65b682388 (diff)
downloadopie-5652634e4ff03370564925ce0856b260c001dc0f.zip
opie-5652634e4ff03370564925ce0856b260c001dc0f.tar.gz
opie-5652634e4ff03370564925ce0856b260c001dc0f.tar.bz2
Convert to OPimMainWindow and UI tweaks. There is still a couple items yet to do...
Diffstat (limited to 'core/pim/addressbook/abconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/abconfig.cpp22
1 files changed, 19 insertions, 3 deletions
diff --git a/core/pim/addressbook/abconfig.cpp b/core/pim/addressbook/abconfig.cpp
index a3fd222..2583327 100644
--- a/core/pim/addressbook/abconfig.cpp
+++ b/core/pim/addressbook/abconfig.cpp
@@ -21,3 +21,3 @@ AbConfig::~AbConfig()
{
-}
+}
@@ -68,2 +68,7 @@ AbConfig::LPSearchMode AbConfig::letterPickerSearch() const
+const QString &AbConfig::category() const
+{
+ return m_category;
+}
+
void AbConfig::setUseRegExp( bool v )
@@ -123,2 +128,7 @@ void AbConfig::setLetterPickerSearch( const AbConfig::LPSearchMode mode )
+void AbConfig::setCategory( const QString &cat )
+{
+ m_category = cat;
+}
+
void AbConfig::load()
@@ -128,2 +138,5 @@ void AbConfig::load()
+ cfg.setGroup( "View" );
+ m_category = cfg.readEntry( "Category", "All" );
+
cfg.setGroup("Font");
@@ -168,2 +181,5 @@ void AbConfig::save()
Config cfg("AddressBook");
+ cfg.setGroup( "View" );
+ cfg.writeEntry( "Category", m_category );
+
cfg.setGroup("Font");
@@ -195,5 +211,5 @@ void AbConfig::save()
cfg.writeEntry( "PatchVersion", PATCHVERSION );
-
+
}
-
+
}