-rw-r--r-- | kaddressbook/kcmconfigs/addresseewidget.cpp | 14 | ||||
-rw-r--r-- | kaddressbook/kcmconfigs/kabconfigwidget.cpp | 14 | ||||
-rw-r--r-- | kaddressbook/kcmconfigs/kcmkabconfig.cpp | 6 |
3 files changed, 25 insertions, 9 deletions
diff --git a/kaddressbook/kcmconfigs/addresseewidget.cpp b/kaddressbook/kcmconfigs/addresseewidget.cpp index 0f3c353..f84b2ba 100644 --- a/kaddressbook/kcmconfigs/addresseewidget.cpp +++ b/kaddressbook/kcmconfigs/addresseewidget.cpp | |||
@@ -1,236 +1,242 @@ | |||
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 | #include <qgroupbox.h> | 24 | #include <qgroupbox.h> |
25 | #include <qlabel.h> | 25 | #include <qlabel.h> |
26 | #include <qlayout.h> | 26 | #include <qlayout.h> |
27 | #include <qlistbox.h> | 27 | #include <qlistbox.h> |
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | 29 | ||
30 | #include <kbuttonbox.h> | 30 | #include <kbuttonbox.h> |
31 | #include <kcombobox.h> | 31 | #include <kcombobox.h> |
32 | #include <kconfig.h> | 32 | #include <kconfig.h> |
33 | #include <kdialog.h> | 33 | #include <kdialog.h> |
34 | #include <klocale.h> | 34 | #include <klocale.h> |
35 | #include <kglobal.h> | 35 | #include <kglobal.h> |
36 | #include <klineedit.h> | 36 | #include <klineedit.h> |
37 | #include <kstandarddirs.h> | 37 | #include <kstandarddirs.h> |
38 | 38 | ||
39 | #include "addresseewidget.h" | 39 | #include "addresseewidget.h" |
40 | 40 | ||
41 | NamePartWidget::NamePartWidget( const QString &title, QWidget *parent, | 41 | NamePartWidget::NamePartWidget( const QString &title, QWidget *parent, |
42 | const char *name ) | 42 | const char *name ) |
43 | : QWidget( parent, name ) | 43 | : QWidget( parent, name ) |
44 | { | 44 | { |
45 | if (KGlobal::getOrientation() == KGlobal::Portrait) | 45 | if (KGlobal::getOrientation() == KGlobal::Portrait) |
46 | { | 46 | { |
47 | QGridLayout* layout = new QGridLayout( this, 1, 1, KDialog::marginHintSmall(), | 47 | QGridLayout* layout = new QGridLayout( this, 1, 1, KDialog::marginHintSmall(), |
48 | KDialog::spacingHintSmall() ); | 48 | KDialog::spacingHintSmall() ); |
49 | 49 | ||
50 | QLabel *label = new QLabel( i18n( title ), this ); | 50 | QLabel *label = new QLabel( i18n( title ), this ); |
51 | layout->addWidget( label, 0, 1 ); | 51 | layout->addWidget( label, 0, 1 ); |
52 | 52 | ||
53 | mBox = new QListBox( this ); | 53 | mBox = new QListBox( this ); |
54 | mBox->setMaximumSize(70, 70); | 54 | mBox->setMaximumSize(70, 70); |
55 | layout->addMultiCellWidget( mBox, 0, 1, 0, 0 ); | 55 | layout->addMultiCellWidget( mBox, 0, 1, 0, 0 ); |
56 | 56 | ||
57 | KButtonBox *bbox = new KButtonBox( this, Qt::Vertical ); | 57 | KButtonBox *bbox = new KButtonBox( this, Qt::Vertical ); |
58 | mAddButton = bbox->addButton( i18n( "Add" ), this, SLOT( add() ) ); | 58 | mAddButton = bbox->addButton( i18n( "Add" ), this, SLOT( add() ) ); |
59 | mRemoveButton = bbox->addButton( i18n( "Rem" ), this, SLOT( remove() ) ); | 59 | mRemoveButton = bbox->addButton( i18n( "Rem" ), this, SLOT( remove() ) ); |
60 | bbox->layout(); | 60 | bbox->layout(); |
61 | layout->addMultiCellWidget( bbox, 0, 2, 2,2); | 61 | layout->addMultiCellWidget( bbox, 0, 1, 2,2); |
62 | 62 | ||
63 | mEdit = new KLineEdit( this ); | 63 | mEdit = new KLineEdit( this ); |
64 | layout->addWidget( mEdit, 1, 1 ); | 64 | layout->addWidget( mEdit, 1, 1 ); |
65 | //mEdit->setMinimumWidth(50); | 65 | //mEdit->setMinimumWidth(50); |
66 | 66 | ||
67 | // layout->addWidget( group ); | 67 | // layout->addWidget( group ); |
68 | 68 | ||
69 | } | 69 | } |
70 | else | 70 | else |
71 | { | 71 | { |
72 | QHBoxLayout *layout = new QHBoxLayout( this ); | 72 | QHBoxLayout *layout = new QHBoxLayout( this ); |
73 | 73 | ||
74 | QGroupBox *group = new QGroupBox( 0, Qt::Vertical, title, this ); | 74 | QGroupBox *group = new QGroupBox( 0, Qt::Vertical, title, this ); |
75 | QGridLayout *groupLayout = new QGridLayout( group->layout(), 2, 2, | 75 | QGridLayout *groupLayout = new QGridLayout( group->layout(), 2, 2, |
76 | KDialog::spacingHint() ); | 76 | KDialog::spacingHint() ); |
77 | 77 | ||
78 | mBox = new QListBox( group ); | 78 | mBox = new QListBox( group ); |
79 | 79 | ||
80 | groupLayout->addWidget( mBox, 0, 0 ); | 80 | groupLayout->addWidget( mBox, 0, 0 ); |
81 | 81 | ||
82 | KButtonBox *bbox = new KButtonBox( group, Qt::Vertical ); | 82 | KButtonBox *bbox = new KButtonBox( group, Qt::Vertical ); |
83 | mAddButton = bbox->addButton( i18n( "Add" ), this, SLOT( add() ) ); | 83 | mAddButton = bbox->addButton( i18n( "Add" ), this, SLOT( add() ) ); |
84 | mRemoveButton = bbox->addButton( i18n( "Remove" ), this, SLOT( remove() ) ); | 84 | mRemoveButton = bbox->addButton( i18n( "Remove" ), this, SLOT( remove() ) ); |
85 | bbox->layout(); | 85 | bbox->layout(); |
86 | groupLayout->addWidget( bbox, 0, 1 ); | 86 | groupLayout->addWidget( bbox, 0, 1 ); |
87 | 87 | ||
88 | mEdit = new KLineEdit( group ); | 88 | mEdit = new KLineEdit( group ); |
89 | groupLayout->addMultiCellWidget( mEdit, 1, 1, 0, 1 ); | 89 | groupLayout->addMultiCellWidget( mEdit, 1, 1, 0, 1 ); |
90 | 90 | ||
91 | layout->addWidget( group ); | 91 | layout->addWidget( group ); |
92 | 92 | ||
93 | } | 93 | } |
94 | 94 | ||
95 | mAddButton->setEnabled( false ); | 95 | mAddButton->setEnabled( false ); |
96 | mRemoveButton->setEnabled( false ); | 96 | mRemoveButton->setEnabled( false ); |
97 | 97 | ||
98 | 98 | ||
99 | connect( mBox, SIGNAL( selectionChanged( QListBoxItem* ) ), | 99 | connect( mBox, SIGNAL( selectionChanged( QListBoxItem* ) ), |
100 | SLOT( selectionChanged( QListBoxItem* ) ) ); | 100 | SLOT( selectionChanged( QListBoxItem* ) ) ); |
101 | connect( mEdit, SIGNAL( textChanged( const QString& ) ), | 101 | connect( mEdit, SIGNAL( textChanged( const QString& ) ), |
102 | SLOT( textChanged( const QString& ) ) ); | 102 | SLOT( textChanged( const QString& ) ) ); |
103 | connect( mEdit, SIGNAL( returnPressed() ), SLOT( add() ) ); | 103 | connect( mEdit, SIGNAL( returnPressed() ), SLOT( add() ) ); |
104 | 104 | ||
105 | } | 105 | } |
106 | 106 | ||
107 | NamePartWidget::~NamePartWidget() | 107 | NamePartWidget::~NamePartWidget() |
108 | { | 108 | { |
109 | } | 109 | } |
110 | 110 | ||
111 | void NamePartWidget::setNameParts( const QStringList &list ) | 111 | void NamePartWidget::setNameParts( const QStringList &list ) |
112 | { | 112 | { |
113 | mBox->clear(); | 113 | mBox->clear(); |
114 | mBox->insertStringList( list ); | 114 | mBox->insertStringList( list ); |
115 | } | 115 | } |
116 | 116 | ||
117 | QStringList NamePartWidget::nameParts() const | 117 | QStringList NamePartWidget::nameParts() const |
118 | { | 118 | { |
119 | QStringList parts; | 119 | QStringList parts; |
120 | for ( uint i = 0; i < mBox->count(); ++i ) | 120 | for ( uint i = 0; i < mBox->count(); ++i ) |
121 | parts.append( mBox->text( i ) ); | 121 | parts.append( mBox->text( i ) ); |
122 | 122 | ||
123 | return parts; | 123 | return parts; |
124 | } | 124 | } |
125 | 125 | ||
126 | void NamePartWidget::add() | 126 | void NamePartWidget::add() |
127 | { | 127 | { |
128 | if ( !mEdit->text().isEmpty() ) { | 128 | if ( !mEdit->text().isEmpty() ) { |
129 | mBox->insertItem( mEdit->text() ); | 129 | mBox->insertItem( mEdit->text() ); |
130 | emit modified(); | 130 | emit modified(); |
131 | } | 131 | } |
132 | 132 | ||
133 | mEdit->setText( "" ); | 133 | mEdit->setText( "" ); |
134 | } | 134 | } |
135 | 135 | ||
136 | void NamePartWidget::remove() | 136 | void NamePartWidget::remove() |
137 | { | 137 | { |
138 | mBox->removeItem( mBox->currentItem() ); | 138 | mBox->removeItem( mBox->currentItem() ); |
139 | if ( mBox->count() == 0 ) | 139 | if ( mBox->count() == 0 ) |
140 | selectionChanged( 0 ); | 140 | selectionChanged( 0 ); |
141 | 141 | ||
142 | emit modified(); | 142 | emit modified(); |
143 | } | 143 | } |
144 | 144 | ||
145 | void NamePartWidget::selectionChanged( QListBoxItem *item ) | 145 | void NamePartWidget::selectionChanged( QListBoxItem *item ) |
146 | { | 146 | { |
147 | mRemoveButton->setEnabled( item != 0 ); | 147 | mRemoveButton->setEnabled( item != 0 ); |
148 | } | 148 | } |
149 | 149 | ||
150 | void NamePartWidget::textChanged( const QString& text ) | 150 | void NamePartWidget::textChanged( const QString& text ) |
151 | { | 151 | { |
152 | mAddButton->setEnabled( !text.isEmpty() ); | 152 | mAddButton->setEnabled( !text.isEmpty() ); |
153 | } | 153 | } |
154 | 154 | ||
155 | 155 | ||
156 | AddresseeWidget::AddresseeWidget( QWidget *parent, const char *name ) | 156 | AddresseeWidget::AddresseeWidget( QWidget *parent, const char *name ) |
157 | : QWidget( parent, name ) | 157 | : QWidget( parent, name ) |
158 | { | 158 | { |
159 | QGridLayout *layout; | 159 | QGridLayout *layout; |
160 | 160 | ||
161 | mPrefix = new NamePartWidget( i18n( "Prefixes" ), this ); | 161 | mPrefix = new NamePartWidget( i18n( "Prefixes" ), this ); |
162 | mInclusion = new NamePartWidget( i18n( "Inclusions" ), this ); | 162 | mInclusion = new NamePartWidget( i18n( "Inclusions" ), this ); |
163 | mSuffix = new NamePartWidget( i18n( "Suffixes" ), this ); | 163 | mSuffix = new NamePartWidget( i18n( "Suffixes" ), this ); |
164 | QLabel *label = new QLabel( i18n( "Default formatted name:" ), this ); | 164 | QString dfn; |
165 | if (QApplication::desktop()->width() > 320 ) | ||
166 | dfn = i18n( "Default formatted name:" ); | ||
167 | else | ||
168 | dfn = i18n( "Def. formatted name:" ); | ||
169 | |||
170 | QLabel *label = new QLabel( dfn, this ); | ||
165 | 171 | ||
166 | mFormattedNameCombo = new KComboBox( this ); | 172 | mFormattedNameCombo = new KComboBox( this ); |
167 | mFormattedNameCombo->insertItem( i18n( "Empty" ) ); | 173 | mFormattedNameCombo->insertItem( i18n( "Empty" ) ); |
168 | mFormattedNameCombo->insertItem( i18n( "Simple Name" ) ); | 174 | mFormattedNameCombo->insertItem( i18n( "Simple Name" ) ); |
169 | mFormattedNameCombo->insertItem( i18n( "Full Name" ) ); | 175 | mFormattedNameCombo->insertItem( i18n( "Full Name" ) ); |
170 | mFormattedNameCombo->insertItem( i18n( "Reverse Name" ) ); | 176 | mFormattedNameCombo->insertItem( i18n( "Reverse Name" ) ); |
171 | 177 | ||
172 | if (KGlobal::getOrientation() == KGlobal::Portrait) | 178 | if (KGlobal::getOrientation() == KGlobal::Portrait) |
173 | { | 179 | { |
174 | layout = new QGridLayout( this, 4, 2, KDialog::marginHint(), | 180 | layout = new QGridLayout( this, 4, 2, KDialog::marginHintSmall(), |
175 | KDialog::spacingHint() ); | 181 | KDialog::spacingHintSmall() ); |
176 | 182 | ||
177 | layout->addMultiCellWidget( mPrefix, 0, 0, 0, 1 ); | 183 | layout->addMultiCellWidget( mPrefix, 0, 0, 0, 1 ); |
178 | layout->addMultiCellWidget( mInclusion, 1, 1, 0, 1 ); | 184 | layout->addMultiCellWidget( mInclusion, 1, 1, 0, 1 ); |
179 | layout->addMultiCellWidget( mSuffix, 2, 2, 0, 1 ); | 185 | layout->addMultiCellWidget( mSuffix, 2, 2, 0, 1 ); |
180 | layout->addWidget( label, 3, 0 ); | 186 | layout->addWidget( label, 3, 0 ); |
181 | layout->addWidget( mFormattedNameCombo, 3, 1 ); | 187 | layout->addWidget( mFormattedNameCombo, 3, 1 ); |
182 | 188 | ||
183 | } | 189 | } |
184 | else | 190 | else |
185 | { | 191 | { |
186 | layout = new QGridLayout( this, 2, 3, KDialog::marginHint(), | 192 | layout = new QGridLayout( this, 2, 3, KDialog::marginHint(), |
187 | KDialog::spacingHint() ); | 193 | KDialog::spacingHint() ); |
188 | 194 | ||
189 | layout->addWidget( mPrefix, 0, 0 ); | 195 | layout->addWidget( mPrefix, 0, 0 ); |
190 | layout->addWidget( mInclusion, 0, 1 ); | 196 | layout->addWidget( mInclusion, 0, 1 ); |
191 | layout->addWidget( mSuffix, 0, 2 ); | 197 | layout->addWidget( mSuffix, 0, 2 ); |
192 | layout->addWidget( label, 1, 0 ); | 198 | layout->addWidget( label, 1, 0 ); |
193 | layout->addMultiCellWidget( mFormattedNameCombo, 1, 1, 1, 2 ); | 199 | layout->addMultiCellWidget( mFormattedNameCombo, 1, 1, 1, 2 ); |
194 | } | 200 | } |
195 | 201 | ||
196 | connect( mPrefix, SIGNAL( modified() ), SIGNAL( modified() ) ); | 202 | connect( mPrefix, SIGNAL( modified() ), SIGNAL( modified() ) ); |
197 | connect( mInclusion, SIGNAL( modified() ), SIGNAL( modified() ) ); | 203 | connect( mInclusion, SIGNAL( modified() ), SIGNAL( modified() ) ); |
198 | connect( mSuffix, SIGNAL( modified() ), SIGNAL( modified() ) ); | 204 | connect( mSuffix, SIGNAL( modified() ), SIGNAL( modified() ) ); |
199 | connect( mFormattedNameCombo, SIGNAL( activated( int ) ), SIGNAL( modified() ) ); | 205 | connect( mFormattedNameCombo, SIGNAL( activated( int ) ), SIGNAL( modified() ) ); |
200 | } | 206 | } |
201 | 207 | ||
202 | AddresseeWidget::~AddresseeWidget() | 208 | AddresseeWidget::~AddresseeWidget() |
203 | { | 209 | { |
204 | } | 210 | } |
205 | 211 | ||
206 | void AddresseeWidget::restoreSettings() | 212 | void AddresseeWidget::restoreSettings() |
207 | { | 213 | { |
208 | KConfig config( locateLocal("config", "kabcrc") ); | 214 | KConfig config( locateLocal("config", "kabcrc") ); |
209 | config.setGroup( "General" ); | 215 | config.setGroup( "General" ); |
210 | 216 | ||
211 | mPrefix->setNameParts( config.readListEntry( "Prefixes" ) ); | 217 | mPrefix->setNameParts( config.readListEntry( "Prefixes" ) ); |
212 | mInclusion->setNameParts( config.readListEntry( "Inclusions" ) ); | 218 | mInclusion->setNameParts( config.readListEntry( "Inclusions" ) ); |
213 | mSuffix->setNameParts( config.readListEntry( "Suffixes" ) ); | 219 | mSuffix->setNameParts( config.readListEntry( "Suffixes" ) ); |
214 | 220 | ||
215 | KConfig cfg( locateLocal("config","kaddressbookrc") ); | 221 | KConfig cfg( locateLocal("config","kaddressbookrc") ); |
216 | cfg.setGroup( "General" ); | 222 | cfg.setGroup( "General" ); |
217 | mFormattedNameCombo->setCurrentItem( cfg.readNumEntry( "FormattedNameType", 1 ) ); | 223 | mFormattedNameCombo->setCurrentItem( cfg.readNumEntry( "FormattedNameType", 1 ) ); |
218 | } | 224 | } |
219 | 225 | ||
220 | void AddresseeWidget::saveSettings() | 226 | void AddresseeWidget::saveSettings() |
221 | { | 227 | { |
222 | KConfig config( locateLocal("config","kabcrc") ); | 228 | KConfig config( locateLocal("config","kabcrc") ); |
223 | config.setGroup( "General" ); | 229 | config.setGroup( "General" ); |
224 | 230 | ||
225 | config.writeEntry( "Prefixes", mPrefix->nameParts() ); | 231 | config.writeEntry( "Prefixes", mPrefix->nameParts() ); |
226 | config.writeEntry( "Inclusions", mInclusion->nameParts() ); | 232 | config.writeEntry( "Inclusions", mInclusion->nameParts() ); |
227 | config.writeEntry( "Suffixes", mSuffix->nameParts() ); | 233 | config.writeEntry( "Suffixes", mSuffix->nameParts() ); |
228 | 234 | ||
229 | KConfig cfg( locateLocal("config","kaddressbookrc") ); | 235 | KConfig cfg( locateLocal("config","kaddressbookrc") ); |
230 | cfg.setGroup( "General" ); | 236 | cfg.setGroup( "General" ); |
231 | cfg.writeEntry( "FormattedNameType", mFormattedNameCombo->currentItem() ); | 237 | cfg.writeEntry( "FormattedNameType", mFormattedNameCombo->currentItem() ); |
232 | } | 238 | } |
233 | 239 | ||
234 | #ifndef KAB_EMBEDDED | 240 | #ifndef KAB_EMBEDDED |
235 | #include "addresseewidget.moc" | 241 | #include "addresseewidget.moc" |
236 | #endif //KAB_EMBEDDED | 242 | #endif //KAB_EMBEDDED |
diff --git a/kaddressbook/kcmconfigs/kabconfigwidget.cpp b/kaddressbook/kcmconfigs/kabconfigwidget.cpp index 7b3e5c6..38c7946 100644 --- a/kaddressbook/kcmconfigs/kabconfigwidget.cpp +++ b/kaddressbook/kcmconfigs/kabconfigwidget.cpp | |||
@@ -1,208 +1,214 @@ | |||
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 | #include <qcheckbox.h> | 24 | #include <qcheckbox.h> |
25 | #include <qframe.h> | 25 | #include <qframe.h> |
26 | #include <qgroupbox.h> | 26 | #include <qgroupbox.h> |
27 | #include <qlayout.h> | 27 | #include <qlayout.h> |
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | #include <qtabwidget.h> | 29 | #include <qtabwidget.h> |
30 | 30 | ||
31 | #include <kconfig.h> | 31 | #include <kconfig.h> |
32 | #include <kdebug.h> | 32 | #include <kdebug.h> |
33 | #include <kdialog.h> | 33 | #include <kdialog.h> |
34 | #include <klistview.h> | 34 | #include <klistview.h> |
35 | #include <klocale.h> | 35 | #include <klocale.h> |
36 | #include <kglobal.h> | 36 | #include <kglobal.h> |
37 | #include <kmessagebox.h> | 37 | #include <kmessagebox.h> |
38 | #include <kstandarddirs.h> | 38 | #include <kstandarddirs.h> |
39 | 39 | ||
40 | #ifndef KAB_EMBEDDED | 40 | #ifndef KAB_EMBEDDED |
41 | #include <ktrader.h> | 41 | #include <ktrader.h> |
42 | #else // KAB_EMBEDDED | 42 | #else // KAB_EMBEDDED |
43 | #include <mergewidget.h> | 43 | #include <mergewidget.h> |
44 | #include <distributionlistwidget.h> | 44 | #include <distributionlistwidget.h> |
45 | #endif // KAB_EMBEDDED | 45 | #endif // KAB_EMBEDDED |
46 | 46 | ||
47 | #include "addresseewidget.h" | 47 | #include "addresseewidget.h" |
48 | #include "extensionconfigdialog.h" | 48 | #include "extensionconfigdialog.h" |
49 | #include "extensionwidget.h" | 49 | #include "extensionwidget.h" |
50 | #include "kabprefs.h" | 50 | #include "kabprefs.h" |
51 | 51 | ||
52 | #include "kabconfigwidget.h" | 52 | #include "kabconfigwidget.h" |
53 | 53 | ||
54 | class ExtensionItem : public QCheckListItem | 54 | class ExtensionItem : public QCheckListItem |
55 | { | 55 | { |
56 | public: | 56 | public: |
57 | 57 | ||
58 | #ifndef KAB_EMBEDDED | 58 | #ifndef KAB_EMBEDDED |
59 | ExtensionItem( QListView *parent, const QString &text ); | 59 | ExtensionItem( QListView *parent, const QString &text ); |
60 | void setService( const KService::Ptr &ptr ); | 60 | void setService( const KService::Ptr &ptr ); |
61 | #else //KAB_EMBEDDED | 61 | #else //KAB_EMBEDDED |
62 | ExtensionItem( QListView *parent, const QString &text, const QString &name, const QString &comment ); | 62 | ExtensionItem( QListView *parent, const QString &text, const QString &name, const QString &comment ); |
63 | void setFactory( ExtensionFactory* fac ); | 63 | void setFactory( ExtensionFactory* fac ); |
64 | #endif //KAB_EMBEDDED | 64 | #endif //KAB_EMBEDDED |
65 | 65 | ||
66 | bool configWidgetAvailable() const; | 66 | bool configWidgetAvailable() const; |
67 | ExtensionFactory *factory() const; | 67 | ExtensionFactory *factory() const; |
68 | 68 | ||
69 | virtual QString text( int column ) const; | 69 | virtual QString text( int column ) const; |
70 | 70 | ||
71 | private: | 71 | private: |
72 | #ifndef KAB_EMBEDDED | 72 | #ifndef KAB_EMBEDDED |
73 | KService::Ptr mPtr; | 73 | KService::Ptr mPtr; |
74 | #else //KAB_EMBEDDED | 74 | #else //KAB_EMBEDDED |
75 | ExtensionFactory* mFactory; | 75 | ExtensionFactory* mFactory; |
76 | QString mName; | 76 | QString mName; |
77 | QString mComment; | 77 | QString mComment; |
78 | 78 | ||
79 | #endif //KAB_EMBEDDED | 79 | #endif //KAB_EMBEDDED |
80 | 80 | ||
81 | }; | 81 | }; |
82 | 82 | ||
83 | KABConfigWidget::KABConfigWidget( QWidget *parent, const char *name ) | 83 | KABConfigWidget::KABConfigWidget( QWidget *parent, const char *name ) |
84 | : QWidget( parent, name ) | 84 | : QWidget( parent, name ) |
85 | { | 85 | { |
86 | QVBoxLayout *topLayout = new QVBoxLayout( this, 0, | 86 | QVBoxLayout *topLayout = new QVBoxLayout( this, 0, |
87 | KDialog::spacingHint() ); | 87 | KDialog::spacingHint() ); |
88 | 88 | ||
89 | QTabWidget *tabWidget = new QTabWidget( this ); | 89 | QTabWidget *tabWidget = new QTabWidget( this ); |
90 | topLayout->addWidget( tabWidget ); | 90 | topLayout->addWidget( tabWidget ); |
91 | 91 | ||
92 | // General page | 92 | // General page |
93 | QWidget *generalPage = new QWidget( this ); | 93 | QWidget *generalPage = new QWidget( this ); |
94 | QVBoxLayout *layout = new QVBoxLayout( generalPage, KDialog::marginHint(), | 94 | QVBoxLayout *layout = new QVBoxLayout( generalPage, KDialog::marginHintSmall(), |
95 | KDialog::spacingHint() ); | 95 | KDialog::spacingHintSmall() ); |
96 | 96 | ||
97 | QGroupBox *groupBox = new QGroupBox( 0, Qt::Vertical, i18n( "General" ), generalPage ); | 97 | QGroupBox *groupBox = new QGroupBox( 0, Qt::Vertical, i18n( "General" ), generalPage ); |
98 | QVBoxLayout *boxLayout = new QVBoxLayout( groupBox->layout() ); | 98 | QVBoxLayout *boxLayout = new QVBoxLayout( groupBox->layout() ); |
99 | boxLayout->setAlignment( Qt::AlignTop ); | 99 | boxLayout->setAlignment( Qt::AlignTop ); |
100 | 100 | boxLayout->setMargin(KDialog::marginHintSmall() ); | |
101 | groupBox->layout()->setMargin(KDialog::marginHintSmall()) ; | ||
102 | groupBox->layout()->setSpacing(KDialog::spacingHintSmall()); | ||
103 | boxLayout->setSpacing( KDialog::spacingHintSmall() ); | ||
101 | mViewsSingleClickBox = new QCheckBox( i18n( "Honor KDE single click" ), groupBox, "msingle" ); | 104 | mViewsSingleClickBox = new QCheckBox( i18n( "Honor KDE single click" ), groupBox, "msingle" ); |
102 | boxLayout->addWidget( mViewsSingleClickBox ); | 105 | boxLayout->addWidget( mViewsSingleClickBox ); |
103 | 106 | ||
104 | mNameParsing = new QCheckBox( i18n( "Automatic name parsing for new addressees" ), groupBox, "mparse" ); | 107 | mNameParsing = new QCheckBox( i18n( "Automatic name parsing for new addressees" ), groupBox, "mparse" ); |
105 | boxLayout->addWidget( mNameParsing ); | 108 | boxLayout->addWidget( mNameParsing ); |
106 | 109 | ||
107 | layout->addWidget( groupBox ); | 110 | layout->addWidget( groupBox ); |
108 | 111 | ||
109 | groupBox = new QGroupBox( 0, Qt::Vertical, i18n( "Extensions" ), generalPage ); | 112 | groupBox = new QGroupBox( 0, Qt::Vertical, i18n( "Extensions" ), generalPage ); |
110 | boxLayout = new QVBoxLayout( groupBox->layout() ); | 113 | boxLayout = new QVBoxLayout( groupBox->layout() ); |
111 | boxLayout->setAlignment( Qt::AlignTop ); | 114 | boxLayout->setAlignment( Qt::AlignTop ); |
112 | 115 | boxLayout->setMargin(KDialog::marginHintSmall()); | |
116 | boxLayout->setSpacing(KDialog::spacingHintSmall()); | ||
117 | groupBox->layout()->setMargin(1) ; | ||
118 | groupBox->layout()->setSpacing(0); | ||
113 | mExtensionView = new KListView( groupBox ); | 119 | mExtensionView = new KListView( groupBox ); |
114 | mExtensionView->setAllColumnsShowFocus( true ); | 120 | mExtensionView->setAllColumnsShowFocus( true ); |
115 | mExtensionView->addColumn( i18n( "Name" ) ); | 121 | mExtensionView->addColumn( i18n( "Name" ) ); |
116 | mExtensionView->addColumn( i18n( "Description" ) ); | 122 | mExtensionView->addColumn( i18n( "Description" ) ); |
117 | mExtensionView->setMaximumHeight(80); | 123 | mExtensionView->setMaximumHeight(80); |
118 | 124 | ||
119 | boxLayout->addWidget( mExtensionView ); | 125 | boxLayout->addWidget( mExtensionView ); |
120 | 126 | ||
121 | mConfigureButton = new QPushButton( i18n( "Configure..." ), groupBox ); | 127 | mConfigureButton = new QPushButton( i18n( "Configure..." ), groupBox ); |
122 | mConfigureButton->setEnabled( false ); | 128 | mConfigureButton->setEnabled( false ); |
123 | boxLayout->addWidget( mConfigureButton ); | 129 | boxLayout->addWidget( mConfigureButton ); |
124 | 130 | ||
125 | layout->addWidget( groupBox ); | 131 | layout->addWidget( groupBox ); |
126 | 132 | ||
127 | connect( mNameParsing, SIGNAL( toggled( bool ) ), this, SLOT( modified() ) ); | 133 | connect( mNameParsing, SIGNAL( toggled( bool ) ), this, SLOT( modified() ) ); |
128 | connect( mViewsSingleClickBox, SIGNAL( toggled( bool ) ), this, SLOT( modified() ) ); | 134 | connect( mViewsSingleClickBox, SIGNAL( toggled( bool ) ), this, SLOT( modified() ) ); |
129 | connect( mExtensionView, SIGNAL( selectionChanged( QListViewItem* ) ), | 135 | connect( mExtensionView, SIGNAL( selectionChanged( QListViewItem* ) ), |
130 | SLOT( selectionChanged( QListViewItem* ) ) ); | 136 | SLOT( selectionChanged( QListViewItem* ) ) ); |
131 | connect( mExtensionView, SIGNAL( clicked( QListViewItem* ) ), | 137 | connect( mExtensionView, SIGNAL( clicked( QListViewItem* ) ), |
132 | SLOT( itemClicked( QListViewItem* ) ) ); | 138 | SLOT( itemClicked( QListViewItem* ) ) ); |
133 | connect( mConfigureButton, SIGNAL( clicked() ), | 139 | connect( mConfigureButton, SIGNAL( clicked() ), |
134 | SLOT( configureExtension() ) ); | 140 | SLOT( configureExtension() ) ); |
135 | 141 | ||
136 | tabWidget->addTab( generalPage, i18n( "General" ) ); | 142 | tabWidget->addTab( generalPage, i18n( "General" ) ); |
137 | 143 | ||
138 | // Addressee page | 144 | // Addressee page |
139 | mAddresseeWidget = new AddresseeWidget( this ); | 145 | mAddresseeWidget = new AddresseeWidget( this ); |
140 | tabWidget->addTab( mAddresseeWidget, i18n( "Contact" ) ); | 146 | tabWidget->addTab( mAddresseeWidget, i18n( "Contact" ) ); |
141 | connect( mAddresseeWidget, SIGNAL( modified() ), SLOT( modified() ) ); | 147 | connect( mAddresseeWidget, SIGNAL( modified() ), SLOT( modified() ) ); |
142 | } | 148 | } |
143 | 149 | ||
144 | void KABConfigWidget::restoreSettings() | 150 | void KABConfigWidget::restoreSettings() |
145 | { | 151 | { |
146 | bool blocked = signalsBlocked(); | 152 | bool blocked = signalsBlocked(); |
147 | blockSignals( true ); | 153 | blockSignals( true ); |
148 | 154 | ||
149 | mNameParsing->setChecked( KABPrefs::instance()->mAutomaticNameParsing ); | 155 | mNameParsing->setChecked( KABPrefs::instance()->mAutomaticNameParsing ); |
150 | mViewsSingleClickBox->setChecked( KABPrefs::instance()->mHonorSingleClick ); | 156 | mViewsSingleClickBox->setChecked( KABPrefs::instance()->mHonorSingleClick ); |
151 | mAddresseeWidget->restoreSettings(); | 157 | mAddresseeWidget->restoreSettings(); |
152 | 158 | ||
153 | restoreExtensionSettings(); | 159 | restoreExtensionSettings(); |
154 | 160 | ||
155 | blockSignals( blocked ); | 161 | blockSignals( blocked ); |
156 | 162 | ||
157 | emit changed( false ); | 163 | emit changed( false ); |
158 | } | 164 | } |
159 | 165 | ||
160 | void KABConfigWidget::saveSettings() | 166 | void KABConfigWidget::saveSettings() |
161 | { | 167 | { |
162 | KABPrefs::instance()->mAutomaticNameParsing = mNameParsing->isChecked(); | 168 | KABPrefs::instance()->mAutomaticNameParsing = mNameParsing->isChecked(); |
163 | KABPrefs::instance()->mHonorSingleClick = mViewsSingleClickBox->isChecked(); | 169 | KABPrefs::instance()->mHonorSingleClick = mViewsSingleClickBox->isChecked(); |
164 | mAddresseeWidget->saveSettings(); | 170 | mAddresseeWidget->saveSettings(); |
165 | 171 | ||
166 | saveExtensionSettings(); | 172 | saveExtensionSettings(); |
167 | KABPrefs::instance()->writeConfig(); | 173 | KABPrefs::instance()->writeConfig(); |
168 | 174 | ||
169 | emit changed( false ); | 175 | emit changed( false ); |
170 | } | 176 | } |
171 | 177 | ||
172 | void KABConfigWidget::defaults() | 178 | void KABConfigWidget::defaults() |
173 | { | 179 | { |
174 | mNameParsing->setChecked( true ); | 180 | mNameParsing->setChecked( true ); |
175 | mViewsSingleClickBox->setChecked( false ); | 181 | mViewsSingleClickBox->setChecked( false ); |
176 | 182 | ||
177 | emit changed( true ); | 183 | emit changed( true ); |
178 | } | 184 | } |
179 | 185 | ||
180 | void KABConfigWidget::modified() | 186 | void KABConfigWidget::modified() |
181 | { | 187 | { |
182 | emit changed( true ); | 188 | emit changed( true ); |
183 | } | 189 | } |
184 | 190 | ||
185 | void KABConfigWidget::restoreExtensionSettings() | 191 | void KABConfigWidget::restoreExtensionSettings() |
186 | { | 192 | { |
187 | QStringList activeExtensions = KABPrefs::instance()->mActiveExtensions; | 193 | QStringList activeExtensions = KABPrefs::instance()->mActiveExtensions; |
188 | 194 | ||
189 | mExtensionView->clear(); | 195 | mExtensionView->clear(); |
190 | 196 | ||
191 | #ifndef KAB_EMBEDDED | 197 | #ifndef KAB_EMBEDDED |
192 | KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension" ); | 198 | KTrader::OfferList plugins = KTrader::self()->query( "KAddressBook/Extension" ); |
193 | KTrader::OfferList::ConstIterator it; | 199 | KTrader::OfferList::ConstIterator it; |
194 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { | 200 | for ( it = plugins.begin(); it != plugins.end(); ++it ) { |
195 | if ( !(*it)->hasServiceType( "KAddressBook/Extension" ) ) | 201 | if ( !(*it)->hasServiceType( "KAddressBook/Extension" ) ) |
196 | continue; | 202 | continue; |
197 | 203 | ||
198 | ExtensionItem *item = new ExtensionItem( mExtensionView, (*it)->name() ); | 204 | ExtensionItem *item = new ExtensionItem( mExtensionView, (*it)->name() ); |
199 | item->setService( *it ); | 205 | item->setService( *it ); |
200 | if ( activeExtensions.contains( item->factory()->identifier() ) ) | 206 | if ( activeExtensions.contains( item->factory()->identifier() ) ) |
201 | item->setOn( true ); | 207 | item->setOn( true ); |
202 | } | 208 | } |
203 | #else //KAB_EMBEDDED | 209 | #else //KAB_EMBEDDED |
204 | ExtensionFactory *extensionFactory = new MergeFactory(); | 210 | ExtensionFactory *extensionFactory = new MergeFactory(); |
205 | 211 | ||
206 | ExtensionItem *item = new ExtensionItem( mExtensionView, "Merge", "Merge", "Merge contacts"); | 212 | ExtensionItem *item = new ExtensionItem( mExtensionView, "Merge", "Merge", "Merge contacts"); |
207 | 213 | ||
208 | item->setFactory( extensionFactory ); | 214 | item->setFactory( extensionFactory ); |
diff --git a/kaddressbook/kcmconfigs/kcmkabconfig.cpp b/kaddressbook/kcmconfigs/kcmkabconfig.cpp index 791a940..a278042 100644 --- a/kaddressbook/kcmconfigs/kcmkabconfig.cpp +++ b/kaddressbook/kcmconfigs/kcmkabconfig.cpp | |||
@@ -1,86 +1,90 @@ | |||
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 | #include <qlayout.h> | 24 | #include <qlayout.h> |
25 | 25 | ||
26 | #ifndef KAB_EMBEDDED | 26 | #ifndef KAB_EMBEDDED |
27 | #include <kaboutdata.h> | 27 | #include <kaboutdata.h> |
28 | #endif //KAB_EMBEDDED | 28 | #endif //KAB_EMBEDDED |
29 | #include <kdebug.h> | 29 | #include <kdebug.h> |
30 | #include <klocale.h> | 30 | #include <klocale.h> |
31 | #include <stdlib.h> | ||
31 | 32 | ||
32 | #include "kabconfigwidget.h" | 33 | #include "kabconfigwidget.h" |
33 | 34 | ||
34 | #include "kcmkabconfig.h" | 35 | #include "kcmkabconfig.h" |
35 | 36 | ||
36 | extern "C" | 37 | extern "C" |
37 | { | 38 | { |
38 | KCModule *create_kabconfig( QWidget *parent, const char * ) { | 39 | KCModule *create_kabconfig( QWidget *parent, const char * ) { |
39 | return new KCMKabConfig( parent, "kcmkabconfig" ); | 40 | return new KCMKabConfig( parent, "kcmkabconfig" ); |
40 | } | 41 | } |
41 | } | 42 | } |
42 | 43 | ||
43 | KCMKabConfig::KCMKabConfig( QWidget *parent, const char *name ) | 44 | KCMKabConfig::KCMKabConfig( QWidget *parent, const char *name ) |
44 | : KCModule( parent, name ) | 45 | : KCModule( parent, name ) |
45 | { | 46 | { |
47 | //abort(); | ||
46 | QVBoxLayout *layout = new QVBoxLayout( this ); | 48 | QVBoxLayout *layout = new QVBoxLayout( this ); |
47 | mConfigWidget = new KABConfigWidget( this, "mConfigWidget" ); | 49 | mConfigWidget = new KABConfigWidget( this, "mConfigWidget" ); |
48 | layout->addWidget( mConfigWidget ); | 50 | layout->addWidget( mConfigWidget ); |
49 | 51 | layout->setSpacing( 0 ); | |
52 | layout->setMargin( 0 ); | ||
53 | |||
50 | connect( mConfigWidget, SIGNAL( changed( bool ) ), SIGNAL( changed( bool ) ) ); | 54 | connect( mConfigWidget, SIGNAL( changed( bool ) ), SIGNAL( changed( bool ) ) ); |
51 | load(); | 55 | load(); |
52 | } | 56 | } |
53 | 57 | ||
54 | void KCMKabConfig::load() | 58 | void KCMKabConfig::load() |
55 | { | 59 | { |
56 | mConfigWidget->restoreSettings(); | 60 | mConfigWidget->restoreSettings(); |
57 | } | 61 | } |
58 | 62 | ||
59 | void KCMKabConfig::save() | 63 | void KCMKabConfig::save() |
60 | { | 64 | { |
61 | mConfigWidget->saveSettings(); | 65 | mConfigWidget->saveSettings(); |
62 | } | 66 | } |
63 | 67 | ||
64 | void KCMKabConfig::defaults() | 68 | void KCMKabConfig::defaults() |
65 | { | 69 | { |
66 | mConfigWidget->defaults(); | 70 | mConfigWidget->defaults(); |
67 | } | 71 | } |
68 | 72 | ||
69 | #ifndef KAB_EMBEDDED | 73 | #ifndef KAB_EMBEDDED |
70 | const KAboutData* KCMKabConfig::aboutData() const | 74 | const KAboutData* KCMKabConfig::aboutData() const |
71 | { | 75 | { |
72 | KAboutData *about = new KAboutData( I18N_NOOP( "kcmkabconfig" ), | 76 | KAboutData *about = new KAboutData( I18N_NOOP( "kcmkabconfig" ), |
73 | I18N_NOOP( "KAddressBook Configure Dialog" ), | 77 | I18N_NOOP( "KAddressBook Configure Dialog" ), |
74 | 0, 0, KAboutData::License_GPL, | 78 | 0, 0, KAboutData::License_GPL, |
75 | I18N_NOOP( "(c), 2003 Tobias Koenig" ) ); | 79 | I18N_NOOP( "(c), 2003 Tobias Koenig" ) ); |
76 | 80 | ||
77 | about->addAuthor( "Tobias Koenig", 0, "tokoe@kde.org" ); | 81 | about->addAuthor( "Tobias Koenig", 0, "tokoe@kde.org" ); |
78 | 82 | ||
79 | return about; | 83 | return about; |
80 | 84 | ||
81 | } | 85 | } |
82 | #endif //KAB_EMBEDDED | 86 | #endif //KAB_EMBEDDED |
83 | 87 | ||
84 | #ifndef KAB_EMBEDDED | 88 | #ifndef KAB_EMBEDDED |
85 | #include "kcmkabconfig.moc" | 89 | #include "kcmkabconfig.moc" |
86 | #endif //KAB_EMBEDDED | 90 | #endif //KAB_EMBEDDED |