summaryrefslogtreecommitdiffabout
path: root/kaddressbook/xxportselectdialog.cpp
authorulf69 <ulf69>2004-08-02 22:34:27 (UTC)
committer ulf69 <ulf69>2004-08-02 22:34:27 (UTC)
commit5e9c7a34f68d9e41d73ca5c9238d69252a80595f (patch) (unidiff)
tree2000ebdb5946fdcef245342e1518c4194ceb2053 /kaddressbook/xxportselectdialog.cpp
parentcaccbdef7506ed596669c35009bd6d5634ee6ee1 (diff)
downloadkdepimpi-5e9c7a34f68d9e41d73ca5c9238d69252a80595f.zip
kdepimpi-5e9c7a34f68d9e41d73ca5c9238d69252a80595f.tar.gz
kdepimpi-5e9c7a34f68d9e41d73ca5c9238d69252a80595f.tar.bz2
changed the layout to run on SL5500
Diffstat (limited to 'kaddressbook/xxportselectdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/xxportselectdialog.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/kaddressbook/xxportselectdialog.cpp b/kaddressbook/xxportselectdialog.cpp
index e0da3b2..41c999b 100644
--- a/kaddressbook/xxportselectdialog.cpp
+++ b/kaddressbook/xxportselectdialog.cpp
@@ -2,25 +2,25 @@
2 This file is part of KAddressBook. 2 This file is part of KAddressBook.
3 Copyright (c) 2002 Anders Lund <anders.lund@lund.tdcadsl.dk> 3 Copyright (c) 2002 Anders Lund <anders.lund@lund.tdcadsl.dk>
4 Tobias Koenig <tokoe@kde.org> 4 Tobias Koenig <tokoe@kde.org>
5 5
6 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or 8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
11 This program is distributed in the hope that it will be useful, 11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 14 GNU General Public License for more details.
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software 17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 19
20 As a special exception, permission is given to link this program 20 As a special exception, permission is given to link this program
21 with any edition of Qt, and distribute the resulting executable, 21 with any edition of Qt, and distribute the resulting executable,
22 without including the source code for Qt in the source distribution. 22 without including the source code for Qt in the source distribution.
23*/ 23*/
24 24
25/* 25/*
26Enhanced Version of the file for platform independent KDE tools. 26Enhanced Version of the file for platform independent KDE tools.
@@ -198,7 +198,7 @@ void XXPortSelectDialog::initGUI()
198 QLabel *label = new QLabel( i18n( "Which contacts do you want to export?" ), page ); 198 QLabel *label = new QLabel( i18n( "Which contacts do you want to export?" ), page );
199 topLayout->addWidget( label ); 199 topLayout->addWidget( label );
200 200
201 mButtonGroup = new QButtonGroup( i18n( "Selection" ), page ); 201 mButtonGroup = new QButtonGroup( i18n( "Contact Selection" ), page );
202 mButtonGroup->setColumnLayout( 0, Qt::Vertical ); 202 mButtonGroup->setColumnLayout( 0, Qt::Vertical );
203 mButtonGroup->layout()->setSpacing( KDialog::spacingHint() ); 203 mButtonGroup->layout()->setSpacing( KDialog::spacingHint() );
204 mButtonGroup->layout()->setMargin( KDialog::marginHint() ); 204 mButtonGroup->layout()->setMargin( KDialog::marginHint() );
@@ -206,22 +206,22 @@ void XXPortSelectDialog::initGUI()
206 QGridLayout *groupLayout = new QGridLayout( mButtonGroup->layout() ); 206 QGridLayout *groupLayout = new QGridLayout( mButtonGroup->layout() );
207 groupLayout->setAlignment( Qt::AlignTop ); 207 groupLayout->setAlignment( Qt::AlignTop );
208 208
209 mUseWholeBook = new QRadioButton( i18n( "&All contacts" ), mButtonGroup ); 209 mUseWholeBook = new QRadioButton( i18n( "&All" ), mButtonGroup );
210 mUseWholeBook->setChecked( true ); 210 mUseWholeBook->setChecked( true );
211 QWhatsThis::add( mUseWholeBook, i18n( "Export the entire address book" ) ); 211 QWhatsThis::add( mUseWholeBook, i18n( "Export the entire address book" ) );
212 groupLayout->addWidget( mUseWholeBook, 0, 0 ); 212 groupLayout->addWidget( mUseWholeBook, 0, 0 );
213 213
214 mUseSelection = new QRadioButton( i18n( "&Selected contacts" ), mButtonGroup ); 214 mUseSelection = new QRadioButton( i18n( "&Selected" ), mButtonGroup );
215 QWhatsThis::add( mUseSelection, i18n( "Only export contacts selected in KAddressBook.\n" 215 QWhatsThis::add( mUseSelection, i18n( "Only export contacts selected in KAddressBook.\n"
216 "This option is disabled if no contacts are selected." ) ); 216 "This option is disabled if no contacts are selected." ) );
217 groupLayout->addWidget( mUseSelection, 1, 0 ); 217 groupLayout->addWidget( mUseSelection, 1, 0 );
218 218
219 mUseFilters = new QRadioButton( i18n( "Contacts matching &filter" ), mButtonGroup ); 219 mUseFilters = new QRadioButton( i18n( "By matching &filter" ), mButtonGroup );
220 QWhatsThis::add( mUseFilters, i18n( "Only export contacts matching the selected filter.\n" 220 QWhatsThis::add( mUseFilters, i18n( "Only export contacts matching the selected filter.\n"
221 "This option is disabled if you haven't defined any filters" ) ); 221 "This option is disabled if you haven't defined any filters" ) );
222 groupLayout->addWidget( mUseFilters, 2, 0 ); 222 groupLayout->addWidget( mUseFilters, 2, 0 );
223 223
224 mUseCategories = new QRadioButton( i18n( "Category &members" ), mButtonGroup ); 224 mUseCategories = new QRadioButton( i18n( "By Cate&gories" ), mButtonGroup );
225 QWhatsThis::add( mUseCategories, i18n( "Only export contacts who are members of a category that is checked on the list to the left.\n" 225 QWhatsThis::add( mUseCategories, i18n( "Only export contacts who are members of a category that is checked on the list to the left.\n"
226 "This option is disabled if you have no categories." ) ); 226 "This option is disabled if you have no categories." ) );
227 groupLayout->addWidget( mUseCategories, 3, 0 ); 227 groupLayout->addWidget( mUseCategories, 3, 0 );
@@ -246,7 +246,7 @@ void XXPortSelectDialog::initGUI()
246 246
247 label = new QLabel( i18n( "Criterion:" ), sortingGroup ); 247 label = new QLabel( i18n( "Criterion:" ), sortingGroup );
248 sortLayout->addWidget( label, 0, 0 ); 248 sortLayout->addWidget( label, 0, 0 );
249 249
250#ifndef KAB_EMBEDDED 250#ifndef KAB_EMBEDDED
251 mFieldCombo = new KComboBox( false, sortingGroup ); 251 mFieldCombo = new KComboBox( false, sortingGroup );
252#else //KAB_EMBEDDED 252#else //KAB_EMBEDDED