summaryrefslogtreecommitdiffabout
path: root/kaddressbook/extensionmanager.h
Unidiff
Diffstat (limited to 'kaddressbook/extensionmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/extensionmanager.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/kaddressbook/extensionmanager.h b/kaddressbook/extensionmanager.h
new file mode 100644
index 0000000..8f64a50
--- a/dev/null
+++ b/kaddressbook/extensionmanager.h
@@ -0,0 +1,88 @@
1/*
2 This file is part of KAddressbook.
3 Copyright (c) 2003 Tobias Koenig <tokoe@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24#ifndef EXTENSIONMANAGER_H
25#define EXTENSIONMANAGER_H
26
27#include <qhbox.h>
28#include <qscrollview.h>
29#include <qptrlist.h>
30
31#include <extensionwidget.h>
32
33class KABCore;
34class KSelectAction;
35
36
37class ExtensionManager : public QScrollView
38{
39 Q_OBJECT
40
41 public:
42 ExtensionManager( KABCore *core, QWidget *parent, const char *name = 0 );
43 ~ExtensionManager();
44
45 /**
46 Restores the extension manager specific settings.
47 */
48 void restoreSettings();
49
50 /**
51 Saves the extension manager specific settings.
52 */
53 void saveSettings();
54
55 /**
56 Rereads the extension manager specific settings with some
57 additional initialization stuff.
58 */
59 void reconfigure();
60
61 /**
62 Returns whether the quickedit extension is currently visible.
63 */
64 bool isQuickEditVisible() const;
65
66 public slots:
67 void setSelectionChanged();
68
69 signals:
70 void modified( const KABC::Addressee::List& );
71
72 private slots:
73 void setActiveExtension( int id );
74
75 private:
76 void createExtensionWidgets();
77
78 KABCore *mCore;
79 QWidget *mWidgetBox;
80
81 ExtensionWidget *mCurrentExtensionWidget;
82 QPtrList<ExtensionWidget> mExtensionWidgetList;
83
84 KSelectAction *mActionExtensions;
85
86};
87
88#endif