author | ulf69 <ulf69> | 2004-08-11 19:26:46 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-11 19:26:46 (UTC) |
commit | 945f620dd57338d5b920f4ada3ff8e9e8d1cfe74 (patch) (unidiff) | |
tree | 897a41d4b51bc3991985cde2ed9848c8280f0dd3 /kaddressbook | |
parent | 4ef6049f88713da6e691949dc4ca127855958665 (diff) | |
download | kdepimpi-945f620dd57338d5b920f4ada3ff8e9e8d1cfe74.zip kdepimpi-945f620dd57338d5b920f4ada3ff8e9e8d1cfe74.tar.gz kdepimpi-945f620dd57338d5b920f4ada3ff8e9e8d1cfe74.tar.bz2 |
transfered the displayhandling back to kabcore.
-rw-r--r-- | kaddressbook/extensionmanager.cpp | 54 | ||||
-rw-r--r-- | kaddressbook/extensionmanager.h | 3 |
2 files changed, 30 insertions, 27 deletions
diff --git a/kaddressbook/extensionmanager.cpp b/kaddressbook/extensionmanager.cpp index 9114cdc..98561dc 100644 --- a/kaddressbook/extensionmanager.cpp +++ b/kaddressbook/extensionmanager.cpp | |||
@@ -1,246 +1,248 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressbook. | 2 | This file is part of KAddressbook. |
3 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> | 3 | Copyright (c) 2003 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 | #include <qlayout.h> | 23 | #include <qlayout.h> |
24 | #include <qapplication.h> | 24 | #include <qapplication.h> |
25 | #include <kactionclasses.h> | 25 | #include <kactionclasses.h> |
26 | #include <kconfig.h> | 26 | #include <kconfig.h> |
27 | #include <kdebug.h> | 27 | #include <kdebug.h> |
28 | #include <klocale.h> | 28 | #include <klocale.h> |
29 | 29 | ||
30 | #ifndef KAB_EMBEDDED | 30 | #ifndef KAB_EMBEDDED |
31 | #include <ktrader.h> | 31 | #include <ktrader.h> |
32 | #else //KAB_EMBEDDED | 32 | #else //KAB_EMBEDDED |
33 | #include <features/mergewidget.h> | 33 | #include <features/mergewidget.h> |
34 | #include <features/distributionlistwidget.h> | 34 | #include <features/distributionlistwidget.h> |
35 | #endif //KAB_EMBEDDED | 35 | #endif //KAB_EMBEDDED |
36 | 36 | ||
37 | #include "addresseeeditorwidget.h" | 37 | #include "addresseeeditorwidget.h" |
38 | #include "kabcore.h" | 38 | #include "kabcore.h" |
39 | #include "kabprefs.h" | 39 | #include "kabprefs.h" |
40 | 40 | ||
41 | #include "extensionmanager.h" | 41 | #include "extensionmanager.h" |
42 | 42 | ||
43 | ExtensionManager::ExtensionManager( KABCore *core, QWidget *parent, | 43 | ExtensionManager::ExtensionManager( KABCore *core, QWidget *parent, |
44 | const char *name ) | 44 | const char *name ) |
45 | : QScrollView( parent, name ), mCore( core ), mCurrentExtensionWidget( 0 ) | 45 | : QScrollView( parent, name ), mCore( core ), mCurrentExtensionWidget( 0 ) |
46 | { | 46 | { |
47 | #ifdef KAB_EMBEDDED | 47 | #ifdef KAB_EMBEDDED |
48 | //US QPopupMenu *settingsmenu = (QPopupMenu*)mCore->getSettingsMenu(); | 48 | //US QPopupMenu *settingsmenu = (QPopupMenu*)mCore->getSettingsMenu(); |
49 | QWidget *settingsmenu = (QWidget*)mCore->getSettingsMenu(); | 49 | QWidget *settingsmenu = (QWidget*)mCore->getSettingsMenu(); |
50 | #endif //KAB_EMBEDDED | 50 | #endif //KAB_EMBEDDED |
51 | 51 | ||
52 | mActionExtensions = new KSelectAction( i18n( "Show Extension Bar" ), 0, | 52 | mActionExtensions = new KSelectAction( i18n( "Show Extension Bar" ), 0, |
53 | mCore->actionCollection(), | 53 | mCore->actionCollection(), |
54 | "options_show_extensions" ); | 54 | "options_show_extensions" ); |
55 | 55 | ||
56 | mActionExtensions->plug( settingsmenu ); | 56 | mActionExtensions->plug( settingsmenu ); |
57 | 57 | ||
58 | connect( mActionExtensions, SIGNAL( activated( int ) ), | 58 | connect( mActionExtensions, SIGNAL( activated( int ) ), |
59 | SLOT( setActiveExtension( int ) ) ); | 59 | SLOT( setActiveExtension( int ) ) ); |
60 | mWidgetBox = new QWidget( viewport() ); | 60 | mWidgetBox = new QWidget( viewport() ); |
61 | addChild( mWidgetBox ); | 61 | addChild( mWidgetBox ); |
62 | setResizePolicy(AutoOneFit); | 62 | setResizePolicy(AutoOneFit); |
63 | createExtensionWidgets(); | 63 | createExtensionWidgets(); |
64 | hide(); | 64 | hide(); |
65 | } | 65 | } |
66 | 66 | ||
67 | ExtensionManager::~ExtensionManager() | 67 | ExtensionManager::~ExtensionManager() |
68 | { | 68 | { |
69 | } | 69 | } |
70 | 70 | ||
71 | void ExtensionManager::restoreSettings() | 71 | void ExtensionManager::restoreSettings() |
72 | { | 72 | { |
73 | mActionExtensions->setCurrentItem( KABPrefs::instance()->mCurrentExtension ); | 73 | mActionExtensions->setCurrentItem( KABPrefs::instance()->mCurrentExtension ); |
74 | int i = 1; | 74 | int i = 1; |
75 | mCurrentExtensionWidget = mExtensionWidgetList.at( i-1 ); | 75 | mCurrentExtensionWidget = mExtensionWidgetList.at( i-1 ); |
76 | while ( mCurrentExtensionWidget ) { | 76 | while ( mCurrentExtensionWidget ) { |
77 | if( i != KABPrefs::instance()->mCurrentExtension ) | 77 | if( i != KABPrefs::instance()->mCurrentExtension ) |
78 | mCurrentExtensionWidget->hide(); | 78 | mCurrentExtensionWidget->hide(); |
79 | mCurrentExtensionWidget = mExtensionWidgetList.at( ++i-1 ); | 79 | mCurrentExtensionWidget = mExtensionWidgetList.at( ++i-1 ); |
80 | 80 | ||
81 | } | 81 | } |
82 | setActiveExtension( mActionExtensions->currentItem() ); | 82 | setActiveExtension( mActionExtensions->currentItem() ); |
83 | } | 83 | } |
84 | 84 | ||
85 | void ExtensionManager::saveSettings() | 85 | void ExtensionManager::saveSettings() |
86 | { | 86 | { |
87 | KABPrefs::instance()->mCurrentExtension = mActionExtensions->currentItem(); | 87 | KABPrefs::instance()->mCurrentExtension = mActionExtensions->currentItem(); |
88 | } | 88 | } |
89 | 89 | ||
90 | void ExtensionManager::reconfigure() | 90 | void ExtensionManager::reconfigure() |
91 | { | 91 | { |
92 | saveSettings(); | 92 | saveSettings(); |
93 | createExtensionWidgets(); | 93 | createExtensionWidgets(); |
94 | restoreSettings(); | 94 | restoreSettings(); |
95 | } | 95 | } |
96 | 96 | ||
97 | bool ExtensionManager::isQuickEditVisible() const | 97 | bool ExtensionManager::isQuickEditVisible() const |
98 | { | 98 | { |
99 | return ( mCurrentExtensionWidget && | 99 | return ( mCurrentExtensionWidget && |
100 | mCurrentExtensionWidget->identifier() == "contact_editor" ); | 100 | mCurrentExtensionWidget->identifier() == "contact_editor" ); |
101 | } | 101 | } |
102 | 102 | ||
103 | void ExtensionManager::setSelectionChanged() | 103 | void ExtensionManager::setSelectionChanged() |
104 | { | 104 | { |
105 | if ( mCurrentExtensionWidget ) | 105 | if ( mCurrentExtensionWidget ) |
106 | mCurrentExtensionWidget->contactsSelectionChanged(); | 106 | mCurrentExtensionWidget->contactsSelectionChanged(); |
107 | } | 107 | } |
108 | 108 | ||
109 | void ExtensionManager::setActiveExtension( int id ) | 109 | void ExtensionManager::setActiveExtension( int id ) |
110 | { | 110 | { |
111 | //qDebug("+++++++++++++++++++ExtensionManager::setActiveExtension %d ", id); | 111 | //qDebug("+++++++++++++++++++ExtensionManager::setActiveExtension %d ", id); |
112 | if ( id == 0 ) { | 112 | if ( id == 0 ) { |
113 | hide(); | 113 | hide(); |
114 | mCurrentExtensionWidget = 0; | 114 | mCurrentExtensionWidget = 0; |
115 | #ifndef DESKTOP_VERSION | 115 | #ifndef DESKTOP_VERSION |
116 | //US our screen is so small, that we better hide the detailscreen, just in case. | 116 | //US our screen is so small, that we better hide the detailscreen, just in case. |
117 | mCore->setDetailsToState( ); | 117 | //US mCore->setDetailsToState( ); |
118 | #endif //KAB_EMBEDDED | 118 | #endif //KAB_EMBEDDED |
119 | } else if ( id > 0 ) { | 119 | } else if ( id > 0 ) { |
120 | if ( mCurrentExtensionWidget ) | 120 | if ( mCurrentExtensionWidget ) |
121 | mCurrentExtensionWidget->hide(); | 121 | mCurrentExtensionWidget->hide(); |
122 | 122 | ||
123 | mCurrentExtensionWidget = mExtensionWidgetList.at( id - 1 ); | 123 | mCurrentExtensionWidget = mExtensionWidgetList.at( id - 1 ); |
124 | 124 | ||
125 | if ( mCurrentExtensionWidget ) { | 125 | if ( mCurrentExtensionWidget ) { |
126 | #ifndef DESKTOP_VERSION | 126 | #ifndef DESKTOP_VERSION |
127 | //US our screen is so small, that we better hide the detailscreen, just in case. | 127 | //US our screen is so small, that we better hide the detailscreen, just in case. |
128 | mCore->setDetailsVisible( false ); | 128 | //US mCore->setDetailsVisible( false ); |
129 | #endif //KAB_EMBEDDED | 129 | #endif //KAB_EMBEDDED |
130 | show(); | 130 | show(); |
131 | mWidgetBox->show(); | 131 | mWidgetBox->show(); |
132 | mCurrentExtensionWidget->show(); | 132 | mCurrentExtensionWidget->show(); |
133 | } else { | 133 | } else { |
134 | hide(); | 134 | hide(); |
135 | mCurrentExtensionWidget = 0; | 135 | mCurrentExtensionWidget = 0; |
136 | #ifndef DESKTOP_VERSION | 136 | #ifndef DESKTOP_VERSION |
137 | //US our screen is so small, that we better hide the detailscreen, just in case. | 137 | //US our screen is so small, that we better hide the detailscreen, just in case. |
138 | mCore->setDetailsToState( ); | 138 | //US mCore->setDetailsToState( ); |
139 | #endif //KAB_EMBEDDED | 139 | #endif //KAB_EMBEDDED |
140 | } | 140 | } |
141 | } | 141 | } |
142 | |||
143 | emit changedActiveExtension( id ); | ||
142 | } | 144 | } |
143 | 145 | ||
144 | void ExtensionManager::createExtensionWidgets() | 146 | void ExtensionManager::createExtensionWidgets() |
145 | { | 147 | { |
146 | // clear extension widget list | 148 | // clear extension widget list |
147 | mExtensionWidgetList.setAutoDelete( true ); | 149 | mExtensionWidgetList.setAutoDelete( true ); |
148 | QPtrListIterator<ExtensionWidget> wdgIt( mExtensionWidgetList ); | 150 | QPtrListIterator<ExtensionWidget> wdgIt( mExtensionWidgetList ); |
149 | ExtensionWidget *wdg = 0; | 151 | ExtensionWidget *wdg = 0; |
150 | while ( ( wdg = wdgIt.current() ) != 0 ) | 152 | while ( ( wdg = wdgIt.current() ) != 0 ) |
151 | mExtensionWidgetList.remove( wdg ); | 153 | mExtensionWidgetList.remove( wdg ); |
152 | 154 | ||
153 | mExtensionWidgetList.setAutoDelete( false ); | 155 | mExtensionWidgetList.setAutoDelete( false ); |
154 | 156 | ||
155 | QStringList extensionNames( i18n( "None" ) ); | 157 | QStringList extensionNames( i18n( "None" ) ); |
156 | 158 | ||
157 | // add addressee editor as default | 159 | // add addressee editor as default |
158 | 160 | ||
159 | QHBoxLayout *hbl = new QHBoxLayout (mWidgetBox ); | 161 | QHBoxLayout *hbl = new QHBoxLayout (mWidgetBox ); |
160 | 162 | ||
161 | wdg = new AddresseeEditorWidget( mCore, true, mWidgetBox ); | 163 | wdg = new AddresseeEditorWidget( mCore, true, mWidgetBox ); |
162 | hbl->addWidget( wdg ); | 164 | hbl->addWidget( wdg ); |
163 | //wdg->hide(); | 165 | //wdg->hide(); |
164 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), | 166 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), |
165 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); | 167 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); |
166 | mExtensionWidgetList.append( wdg ); | 168 | mExtensionWidgetList.append( wdg ); |
167 | extensionNames.append( wdg->title() ); | 169 | extensionNames.append( wdg->title() ); |
168 | 170 | ||
169 | // load the other extensions | 171 | // load the other extensions |
170 | QStringList activeExtensions = KABPrefs::instance()->mActiveExtensions; | 172 | QStringList activeExtensions = KABPrefs::instance()->mActiveExtensions; |
171 | 173 | ||
172 | #ifndef KAB_EMBEDDED | 174 | #ifndef KAB_EMBEDDED |
173 | KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension" ); | 175 | KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension" ); |
174 | KTrader::OfferList::ConstIterator it; | 176 | KTrader::OfferList::ConstIterator it; |
175 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { | 177 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { |
176 | if ( !(*it)->hasServiceType( "KAddressBook/Extension" ) ) | 178 | if ( !(*it)->hasServiceType( "KAddressBook/Extension" ) ) |
177 | continue; | 179 | continue; |
178 | 180 | ||
179 | KLibFactory *factory = KLibLoader::self()->factory( (*it)->library().latin1() ); | 181 | KLibFactory *factory = KLibLoader::self()->factory( (*it)->library().latin1() ); |
180 | if ( !factory ) { | 182 | if ( !factory ) { |
181 | kdDebug(5720) << "ExtensionManager::loadExtensions(): Factory creation failed" << endl; | 183 | kdDebug(5720) << "ExtensionManager::loadExtensions(): Factory creation failed" << endl; |
182 | continue; | 184 | continue; |
183 | } | 185 | } |
184 | 186 | ||
185 | ExtensionFactory *extensionFactory = static_cast<ExtensionFactory*>( factory ); | 187 | ExtensionFactory *extensionFactory = static_cast<ExtensionFactory*>( factory ); |
186 | 188 | ||
187 | if ( !extensionFactory ) { | 189 | if ( !extensionFactory ) { |
188 | kdDebug(5720) << "ExtensionManager::loadExtensions(): Cast failed" << endl; | 190 | kdDebug(5720) << "ExtensionManager::loadExtensions(): Cast failed" << endl; |
189 | continue; | 191 | continue; |
190 | } | 192 | } |
191 | 193 | ||
192 | if ( !activeExtensions.contains( extensionFactory->identifier() ) ) | 194 | if ( !activeExtensions.contains( extensionFactory->identifier() ) ) |
193 | continue; | 195 | continue; |
194 | 196 | ||
195 | wdg = extensionFactory->extension( mCore, this ); | 197 | wdg = extensionFactory->extension( mCore, this ); |
196 | if ( wdg ) { | 198 | if ( wdg ) { |
197 | //wdg->hide(); | 199 | //wdg->hide(); |
198 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), | 200 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), |
199 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); | 201 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); |
200 | mExtensionWidgetList.append( wdg ); | 202 | mExtensionWidgetList.append( wdg ); |
201 | extensionNames.append( wdg->title() ); | 203 | extensionNames.append( wdg->title() ); |
202 | } | 204 | } |
203 | } | 205 | } |
204 | #else //KAB_EMBEDDED | 206 | #else //KAB_EMBEDDED |
205 | //load Mergefactory/extension | 207 | //load Mergefactory/extension |
206 | ExtensionFactory *extensionFactory = new MergeFactory(); | 208 | ExtensionFactory *extensionFactory = new MergeFactory(); |
207 | if ( activeExtensions.contains( extensionFactory->identifier() ) ) | 209 | if ( activeExtensions.contains( extensionFactory->identifier() ) ) |
208 | { | 210 | { |
209 | wdg = extensionFactory->extension( mCore, mWidgetBox ); | 211 | wdg = extensionFactory->extension( mCore, mWidgetBox ); |
210 | if ( wdg ) { | 212 | if ( wdg ) { |
211 | hbl->addWidget( wdg ); | 213 | hbl->addWidget( wdg ); |
212 | //wdg->hide(); | 214 | //wdg->hide(); |
213 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), | 215 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), |
214 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); | 216 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); |
215 | mExtensionWidgetList.append( wdg ); | 217 | mExtensionWidgetList.append( wdg ); |
216 | extensionNames.append( wdg->title() ); | 218 | extensionNames.append( wdg->title() ); |
217 | } | 219 | } |
218 | } | 220 | } |
219 | 221 | ||
220 | //load DistributionListfactory/extension | 222 | //load DistributionListfactory/extension |
221 | extensionFactory = new DistributionListFactory(); | 223 | extensionFactory = new DistributionListFactory(); |
222 | if (activeExtensions.contains( extensionFactory->identifier() ) ) | 224 | if (activeExtensions.contains( extensionFactory->identifier() ) ) |
223 | { | 225 | { |
224 | wdg = extensionFactory->extension( mCore, mWidgetBox ); | 226 | wdg = extensionFactory->extension( mCore, mWidgetBox ); |
225 | if ( wdg ) { | 227 | if ( wdg ) { |
226 | hbl->addWidget( wdg ); | 228 | hbl->addWidget( wdg ); |
227 | //wdg->hide(); | 229 | //wdg->hide(); |
228 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), | 230 | connect( wdg, SIGNAL( modified( const KABC::Addressee::List& ) ), |
229 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); | 231 | SIGNAL( modified( const KABC::Addressee::List& ) ) ); |
230 | mExtensionWidgetList.append( wdg ); | 232 | mExtensionWidgetList.append( wdg ); |
231 | extensionNames.append( wdg->title() ); | 233 | extensionNames.append( wdg->title() ); |
232 | } | 234 | } |
233 | } | 235 | } |
234 | 236 | ||
235 | hbl->addStretch(); | 237 | hbl->addStretch(); |
236 | 238 | ||
237 | #endif //KAB_EMBEDDED | 239 | #endif //KAB_EMBEDDED |
238 | 240 | ||
239 | 241 | ||
240 | mActionExtensions->setItems( extensionNames ); | 242 | mActionExtensions->setItems( extensionNames ); |
241 | mCurrentExtensionWidget = 0; | 243 | mCurrentExtensionWidget = 0; |
242 | } | 244 | } |
243 | 245 | ||
244 | #ifndef KAB_EMBEDDED | 246 | #ifndef KAB_EMBEDDED |
245 | #include "extensionmanager.moc" | 247 | #include "extensionmanager.moc" |
246 | #endif //KAB_EMBEDDED | 248 | #endif //KAB_EMBEDDED |
diff --git a/kaddressbook/extensionmanager.h b/kaddressbook/extensionmanager.h index 8f64a50..611a037 100644 --- a/kaddressbook/extensionmanager.h +++ b/kaddressbook/extensionmanager.h | |||
@@ -1,88 +1,89 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressbook. | 2 | This file is part of KAddressbook. |
3 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> | 3 | Copyright (c) 2003 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 | #ifndef EXTENSIONMANAGER_H | 24 | #ifndef EXTENSIONMANAGER_H |
25 | #define EXTENSIONMANAGER_H | 25 | #define EXTENSIONMANAGER_H |
26 | 26 | ||
27 | #include <qhbox.h> | 27 | #include <qhbox.h> |
28 | #include <qscrollview.h> | 28 | #include <qscrollview.h> |
29 | #include <qptrlist.h> | 29 | #include <qptrlist.h> |
30 | 30 | ||
31 | #include <extensionwidget.h> | 31 | #include <extensionwidget.h> |
32 | 32 | ||
33 | class KABCore; | 33 | class KABCore; |
34 | class KSelectAction; | 34 | class KSelectAction; |
35 | 35 | ||
36 | 36 | ||
37 | class ExtensionManager : public QScrollView | 37 | class ExtensionManager : public QScrollView |
38 | { | 38 | { |
39 | Q_OBJECT | 39 | Q_OBJECT |
40 | 40 | ||
41 | public: | 41 | public: |
42 | ExtensionManager( KABCore *core, QWidget *parent, const char *name = 0 ); | 42 | ExtensionManager( KABCore *core, QWidget *parent, const char *name = 0 ); |
43 | ~ExtensionManager(); | 43 | ~ExtensionManager(); |
44 | 44 | ||
45 | /** | 45 | /** |
46 | Restores the extension manager specific settings. | 46 | Restores the extension manager specific settings. |
47 | */ | 47 | */ |
48 | void restoreSettings(); | 48 | void restoreSettings(); |
49 | 49 | ||
50 | /** | 50 | /** |
51 | Saves the extension manager specific settings. | 51 | Saves the extension manager specific settings. |
52 | */ | 52 | */ |
53 | void saveSettings(); | 53 | void saveSettings(); |
54 | 54 | ||
55 | /** | 55 | /** |
56 | Rereads the extension manager specific settings with some | 56 | Rereads the extension manager specific settings with some |
57 | additional initialization stuff. | 57 | additional initialization stuff. |
58 | */ | 58 | */ |
59 | void reconfigure(); | 59 | void reconfigure(); |
60 | 60 | ||
61 | /** | 61 | /** |
62 | Returns whether the quickedit extension is currently visible. | 62 | Returns whether the quickedit extension is currently visible. |
63 | */ | 63 | */ |
64 | bool isQuickEditVisible() const; | 64 | bool isQuickEditVisible() const; |
65 | 65 | ||
66 | public slots: | 66 | public slots: |
67 | void setSelectionChanged(); | 67 | void setSelectionChanged(); |
68 | 68 | ||
69 | signals: | 69 | signals: |
70 | void modified( const KABC::Addressee::List& ); | 70 | void modified( const KABC::Addressee::List& ); |
71 | void changedActiveExtension( int id ); | ||
71 | 72 | ||
72 | private slots: | 73 | private slots: |
73 | void setActiveExtension( int id ); | 74 | void setActiveExtension( int id ); |
74 | 75 | ||
75 | private: | 76 | private: |
76 | void createExtensionWidgets(); | 77 | void createExtensionWidgets(); |
77 | 78 | ||
78 | KABCore *mCore; | 79 | KABCore *mCore; |
79 | QWidget *mWidgetBox; | 80 | QWidget *mWidgetBox; |
80 | 81 | ||
81 | ExtensionWidget *mCurrentExtensionWidget; | 82 | ExtensionWidget *mCurrentExtensionWidget; |
82 | QPtrList<ExtensionWidget> mExtensionWidgetList; | 83 | QPtrList<ExtensionWidget> mExtensionWidgetList; |
83 | 84 | ||
84 | KSelectAction *mActionExtensions; | 85 | KSelectAction *mActionExtensions; |
85 | 86 | ||
86 | }; | 87 | }; |
87 | 88 | ||
88 | #endif | 89 | #endif |