kcmakonadicontactactions.cpp
00001 /* 00002 This file is part of Akonadi Contact. 00003 00004 Copyright (c) 2009 Tobias Koenig <tokoe@kde.org> 00005 00006 This library is free software; you can redistribute it and/or modify it 00007 under the terms of the GNU Library General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or (at your 00009 option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, but WITHOUT 00012 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00013 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00014 License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to the 00018 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00019 02110-1301, USA. 00020 */ 00021 00022 #include "kcmakonadicontactactions.h" 00023 00024 #include "contactactionssettings.h" 00025 #include "ui_akonadicontactactions.h" 00026 00027 #include <QtGui/QVBoxLayout> 00028 00029 #include <kaboutdata.h> 00030 #include <kcomponentdata.h> 00031 #include <kconfigdialogmanager.h> 00032 #include <kpluginfactory.h> 00033 #include <klocale.h> 00034 00035 K_PLUGIN_FACTORY( KCMAkonadiContactActionsFactory, registerPlugin<KCMAkonadiContactActions>(); ) 00036 K_EXPORT_PLUGIN( KCMAkonadiContactActionsFactory( "kcm_akonadicontact_actions" ) ) 00037 00038 KCMAkonadiContactActions::KCMAkonadiContactActions( QWidget *parent, const QVariantList& ) 00039 : KCModule( KCMAkonadiContactActionsFactory::componentData(), parent ) 00040 { 00041 KAboutData *about = new KAboutData( I18N_NOOP( "kcmakonadicontactactions" ), 0, 00042 ki18n( "Contact Actions Settings" ), 00043 0, KLocalizedString(), KAboutData::License_LGPL, 00044 ki18n( "(c) 2009 Tobias Koenig" ) ); 00045 00046 about->addAuthor( ki18n("Tobias Koenig"), KLocalizedString(), "tokoe@kde.org" ); 00047 00048 setAboutData( about ); 00049 00050 QVBoxLayout *layout = new QVBoxLayout( this ); 00051 QWidget *wdg = new QWidget; 00052 layout->addWidget( wdg ); 00053 00054 Ui_AkonadiContactActions ui; 00055 ui.setupUi( wdg ); 00056 00057 mConfigManager = addConfig( ContactActionsSettings::self(), wdg ); 00058 00059 load(); 00060 } 00061 00062 void KCMAkonadiContactActions::load() 00063 { 00064 mConfigManager->updateWidgets(); 00065 } 00066 00067 void KCMAkonadiContactActions::save() 00068 { 00069 mConfigManager->updateSettings(); 00070 } 00071 00072 void KCMAkonadiContactActions::defaults() 00073 { 00074 mConfigManager->updateWidgetsDefault(); 00075 } 00076 00077 #include "kcmakonadicontactactions.moc"