summaryrefslogtreecommitdiffabout
path: root/kaddressbook/extensionwidget.cpp
Unidiff
Diffstat (limited to 'kaddressbook/extensionwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kaddressbook/extensionwidget.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/kaddressbook/extensionwidget.cpp b/kaddressbook/extensionwidget.cpp
index 69f4aa8..7c3b415 100644
--- a/kaddressbook/extensionwidget.cpp
+++ b/kaddressbook/extensionwidget.cpp
@@ -1,84 +1,83 @@
1/* 1/*
2 This file is part of KAddressBook. 2 This file is part of KAddressBook.
3 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> 3 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 18
19 As a special exception, permission is given to link this program 19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable, 20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution. 21 without including the source code for Qt in the source distribution.
22*/ 22*/
23 23
24#include "configurewidget.h" 24#include "configurewidget.h"
25#include "kabcore.h" 25#include "kabcore.h"
26 26
27#include "extensionwidget.h" 27#include "extensionwidget.h"
28 28
29ExtensionWidget::ExtensionWidget( KABCore *core, QWidget *parent, 29ExtensionWidget::ExtensionWidget( KABCore *core, QWidget *parent,
30 const char *name ) 30 const char *name )
31 : QWidget( parent, name ), mCore( core ) 31 : QWidget( parent, name ), mCore( core )
32{ 32{
33} 33}
34 34
35ExtensionWidget::~ExtensionWidget() 35ExtensionWidget::~ExtensionWidget()
36{ 36{
37} 37}
38 38
39KABCore *ExtensionWidget::core() const 39KABCore *ExtensionWidget::core() const
40{ 40{
41 return mCore; 41 return mCore;
42} 42}
43 43
44bool ExtensionWidget::contactsSelected() const 44bool ExtensionWidget::contactsSelected() const
45{ 45{
46 return mCore->selectedUIDs().count() != 0; 46 return mCore->selectedUIDs().count() != 0;
47} 47}
48 48
49KABC::Addressee::List ExtensionWidget::selectedContacts() 49KABC::Addressee::List ExtensionWidget::selectedContacts()
50{ 50{
51 KABC::Addressee::List list; 51 KABC::Addressee::List list;
52 52
53 QStringList uids = mCore->selectedUIDs(); 53 QStringList uids = mCore->selectedUIDs();
54 QStringList::Iterator it; 54 QStringList::Iterator it;
55 for ( it = uids.begin(); it != uids.end(); ++it ) 55 for ( it = uids.begin(); it != uids.end(); ++it )
56 list.append( mCore->addressBook()->findByUid( *it ) ); 56 list.append( mCore->addressBook()->findByUid( *it ) );
57 57
58 return list; 58 return list;
59} 59}
60 60
61void ExtensionWidget::contactsSelectionChanged() 61void ExtensionWidget::contactsSelectionChanged()
62{ 62{
63 // do nothing 63 // do nothing
64} 64}
65 65
66QString ExtensionWidget::title() const 66QString ExtensionWidget::title() const
67{ 67{
68 return "<bug!!!>"; 68 return "<bug!!!>";
69} 69}
70 70
71QString ExtensionWidget::identifier() const 71QString ExtensionWidget::identifier() const
72{ 72{
73 return "<bug!!!>"; 73 return "<bug!!!>";
74} 74}
75 75
76ConfigureWidget *ExtensionFactory::configureWidget( QWidget*, const char* ) 76ConfigureWidget *ExtensionFactory::configureWidget( QWidget*, const char* )
77{ 77{
78 return 0; 78 return 0;
79} 79}
80 80
81#ifndef KAB_EMBEDDED 81#ifndef KAB_EMBEDDED_
82#include "extensionwidget.moc" 82#include "moc_extensionwidget.cpp"
83#endif //KAB_EMBEDDED 83#endif //KAB_EMBEDDED
84