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 <kdemacros.h>
00033 #include <kgenericfactory.h>
00034 #include <klocale.h>
00035 
00036 K_PLUGIN_FACTORY( KCMAkonadiContactActionsFactory, registerPlugin<KCMAkonadiContactActions>(); )
00037 K_EXPORT_PLUGIN( KCMAkonadiContactActionsFactory( "kcm_akonadicontact_actions" ) )
00038 
00039 KCMAkonadiContactActions::KCMAkonadiContactActions( QWidget *parent, const QVariantList& )
00040   : KCModule( KCMAkonadiContactActionsFactory::componentData(), parent )
00041 {
00042   KAboutData *about = new KAboutData( I18N_NOOP( "kcmakonadicontactactions" ), 0,
00043                                       ki18n( "Contact Actions Settings" ),
00044                                       0, KLocalizedString(), KAboutData::License_LGPL,
00045                                       ki18n( "(c) 2009 Tobias Koenig" ) );
00046 
00047   about->addAuthor( ki18n("Tobias Koenig"), KLocalizedString(), "tokoe@kde.org" );
00048 
00049   setAboutData( about );
00050 
00051   QVBoxLayout *layout = new QVBoxLayout( this );
00052   QWidget *wdg = new QWidget;
00053   layout->addWidget( wdg );
00054 
00055   Ui_AkonadiContactActions ui;
00056   ui.setupUi( wdg );
00057 
00058   mConfigManager = addConfig( ContactActionsSettings::self(), wdg );
00059 
00060   load();
00061 }
00062 
00063 void KCMAkonadiContactActions::load()
00064 {
00065   mConfigManager->updateWidgets();
00066 }
00067 
00068 void KCMAkonadiContactActions::save()
00069 {
00070   mConfigManager->updateSettings();
00071 }
00072 
00073 void KCMAkonadiContactActions::defaults()
00074 {
00075   mConfigManager->updateWidgetsDefault();
00076 }
00077 
00078 #include "kcmakonadicontactactions.moc"
KDE Home | KDE Accessibility Home | Description of Access Keys