• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • kdepim
  • Sitemap
  • Contact Us
 

kaddressbook

kabprefs.cpp

Go to the documentation of this file.
00001 /*
00002     This file is part of KAddressBook.
00003     Copyright (c) 2002 Mike Pilone <mpilone@slac.com>
00004 
00005     This program is free software; you can redistribute it and/or modify
00006     it under the terms of the GNU General Public License as published by
00007     the Free Software Foundation; either version 2 of the License, or
00008     (at your option) any later version.
00009 
00010     This program is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00013     GNU General Public License for more details.
00014 
00015     You should have received a copy of the GNU General Public License
00016     along with this program; if not, write to the Free Software
00017     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00018 
00019     As a special exception, permission is given to link this program
00020     with any edition of Qt, and distribute the resulting executable,
00021     without including the source code for Qt in the source distribution.
00022 */
00023 
00024 #include <kconfig.h>
00025 #include <klocale.h>
00026 
00027 #include "kabprefs.h"
00028 
00029 class KABPrefsHelper {
00030   public:
00031     KABPrefsHelper() : q( 0 ) {}
00032     ~KABPrefsHelper() { delete q; }
00033     KABPrefs *q;
00034 };
00035 
00036 K_GLOBAL_STATIC( KABPrefsHelper, s_globalKABPrefs )
00037 
00038 KABPrefs::KABPrefs()
00039   : KABPrefsBase()
00040 {
00041   Q_ASSERT(!s_globalKABPrefs->q);
00042   s_globalKABPrefs->q = this;
00043 
00044   KConfigSkeleton::setCurrentGroup( "General" );
00045 
00046   QStringList defaultMap;
00047   defaultMap << "http://maps.google.com/maps?f=q&hl=%1&q=%n,%l,%s";
00048   addItemString( "LocationMapURL", mLocationMapURL, defaultMap[ 0 ] );
00049   addItemStringList( "LocationMapURLs", mLocationMapURLs, defaultMap );
00050 }
00051 
00052 KABPrefs::~KABPrefs()
00053 {
00054 }
00055 
00056 KABPrefs *KABPrefs::instance()
00057 {
00058   if (!s_globalKABPrefs->q) {
00059     new KABPrefs;
00060     s_globalKABPrefs->q->readConfig();
00061   }
00062 
00063   return s_globalKABPrefs->q;
00064 }
00065 
00066 void KABPrefs::setCategoryDefaults()
00067 {
00068   mCustomCategories.clear();
00069   mCustomCategories << i18n( "Business" ) << i18n( "Family" ) << i18n( "School" )
00070                     << i18n( "Customer" ) << i18n( "Friend" );
00071 }
00072 
00073 void KABPrefs::usrReadConfig()
00074 {
00075   KConfigGroup group( config(), "General" );
00076   mCustomCategories = group.readEntry( "Custom Categories" , QStringList() );
00077   if ( mCustomCategories.isEmpty() )
00078     setCategoryDefaults();
00079 
00080   KPimPrefs::usrReadConfig();
00081 }
00082 
00083 
00084 void KABPrefs::usrWriteConfig()
00085 {
00086   KConfigGroup group( config(), "General" );
00087   group.writeEntry( "Custom Categories", mCustomCategories );
00088 
00089   KPimPrefs::usrWriteConfig();
00090 }

kaddressbook

Skip menu "kaddressbook"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

kdepim

Skip menu "kdepim"
  • akonadi
  •   clients
  •   kabc
  •   kcal
  •   kcm
  • akregator
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt
  • kdgantt1
  • kjots
  • kleopatra
  • kmail
  • kmobiletools
  • knode
  • knotes
  • kontact
  • kontactinterfaces
  • korganizer
  •   korgac
  • kpilot
  • ktimetracker
  • libkdepim
  • libkholidays
  • libkleo
  • libkpgp
  • maildir
Generated for kdepim by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal