summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-10-28 16:38:18 (UTC)
committer zautrix <zautrix>2005-10-28 16:38:18 (UTC)
commitd6eb485cf2ff7a14918f51a5b21b5306f9908fdb (patch) (unidiff)
tree6382df41981bad0d38a384868cfacc04c7b4a149
parent869e4921d8b052c376b2769de44674a8c2d68221 (diff)
downloadkdepimpi-d6eb485cf2ff7a14918f51a5b21b5306f9908fdb.zip
kdepimpi-d6eb485cf2ff7a14918f51a5b21b5306f9908fdb.tar.gz
kdepimpi-d6eb485cf2ff7a14918f51a5b21b5306f9908fdb.tar.bz2
fixx
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/phoneeditwidget.cpp4
-rw-r--r--kaddressbook/phoneeditwidget.h5
2 files changed, 5 insertions, 4 deletions
diff --git a/kaddressbook/phoneeditwidget.cpp b/kaddressbook/phoneeditwidget.cpp
index d895ea1..f52cedb 100644
--- a/kaddressbook/phoneeditwidget.cpp
+++ b/kaddressbook/phoneeditwidget.cpp
@@ -1,175 +1,175 @@
1/* 1/*
2 This file is part of KAddressBook. 2 This file is part of KAddressBook.
3 Copyright (c) 2002 Mike Pilone <mpilone@slac.com> 3 Copyright (c) 2002 Mike Pilone <mpilone@slac.com>
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#include <qlabel.h> 25#include <qlabel.h>
26#include <qtooltip.h> 26#include <qtooltip.h>
27#include <qpushbutton.h> 27#include <qpushbutton.h>
28#include <qcheckbox.h> 28#include <qcheckbox.h>
29#include <qstring.h> 29#include <qstring.h>
30#include <qlistbox.h> 30#include <qlistbox.h>
31#include <qlistview.h> 31#include <qlistview.h>
32#include <qbuttongroup.h> 32#include <qbuttongroup.h>
33#include <qhbox.h> 33#include <qhbox.h>
34#include <qcursor.h> 34#include <qcursor.h>
35#include <qtimer.h> 35#include <qtimer.h>
36 36
37#include <kbuttonbox.h> 37#include <kbuttonbox.h>
38#include <klistview.h> 38#include <klistview.h>
39#include <kapplication.h> 39#include <kapplication.h>
40#include <qapplication.h> 40#include <qapplication.h>
41#include <kconfig.h> 41#include <kconfig.h>
42#include <klineedit.h> 42#include <klineedit.h>
43#include <kcombobox.h> 43#include <kcombobox.h>
44#include <klocale.h> 44#include <klocale.h>
45#include <kdebug.h> 45#include <kdebug.h>
46#include <kglobal.h> 46#include <kglobal.h>
47#include <kiconloader.h> 47#include <kiconloader.h>
48 48
49#include <kabc/phonenumber.h> 49#include <kabc/phonenumber.h>
50 50
51#include "typecombo.h" 51#include "typecombo.h"
52 52
53#include "phoneeditwidget.h" 53#include "phoneeditwidget.h"
54 54
55PhoneEditWidget::PhoneEditWidget( QWidget *parent, const char *name ) 55PhoneEditWidget::PhoneEditWidget( QWidget *parent, const char *name )
56 : QWidget(parent,name) 56 : QWidget(parent,name)
57{ 57{
58 QGridLayout* gridLayout = new QGridLayout ( this, 2,2 ); 58 QGridLayout* gridLayout = new QGridLayout ( this, 2,2 );
59 59
60 QLabel *temp = new QLabel( "", this ); 60 QLabel *temp = new QLabel( "", this );
61 temp->setAlignment( Qt::AlignCenter ); 61 temp->setAlignment( Qt::AlignCenter );
62 temp->setPixmap( KGlobal::iconLoader()->loadIcon( "kaddressbook", KIcon::Desktop, 0 ) ); 62 temp->setPixmap( KGlobal::iconLoader()->loadIcon( "kaddressbook", KIcon::Desktop, 0 ) );
63 gridLayout->addWidget( temp, 1, 0 ); 63 gridLayout->addWidget( temp, 1, 0 );
64 QPushButton *addBut = new QPushButton ( "add", this ); 64 QPushButton *addBut = new QPushButton ( "add", this );
65 addBut->setPixmap ( SmallIcon("plus")); 65 addBut->setPixmap ( SmallIcon("plus"));
66 addBut->setMaximumSize( addBut->sizeHint().height(),addBut->sizeHint().height() ); 66 addBut->setMaximumSize( addBut->sizeHint().height(),addBut->sizeHint().height() );
67 connect(addBut,SIGNAL(clicked ()),SLOT(addNumber())); 67 connect(addBut,SIGNAL(clicked ()),SLOT(addNumber()));
68 gridLayout->addWidget( addBut, 0, 0 ); 68 gridLayout->addWidget( addBut, 0, 0 );
69 69
70 sv = new QScrollView( this ); 70 sv = new QScrollView( this );
71 sv->setFrameStyle ( QFrame::Panel | QFrame::Plain ); 71 sv->setFrameStyle ( QFrame::Panel | QFrame::Plain );
72 sv->setLineWidth ( 1 ); 72 sv->setLineWidth ( 1 );
73 sv->setMidLineWidth ( 1 ); 73 sv->setMidLineWidth ( 1 );
74 mw = new QWidget ( sv->viewport() ); 74 mw = new QWidget ( sv->viewport() );
75 sv->addChild(mw); 75 sv->addChild(mw);
76 sv->setResizePolicy( QScrollView::AutoOneFit ); 76 sv->setResizePolicy( QScrollView::AutoOneFit );
77 mainLayout = new QVBoxLayout ( mw ); 77 mainLayout = new QVBoxLayout ( mw );
78 mainLayout->setMargin( 2 ); 78 mainLayout->setMargin( 0 );
79 mainLayout->setSpacing( 2 ); 79 mainLayout->setSpacing( 0 );
80 gridLayout->addMultiCellWidget( sv, 0, 1, 1,1 ); 80 gridLayout->addMultiCellWidget( sv, 0, 1, 1,1 );
81 setDefaults(); 81 setDefaults();
82 mTypeNumberEditList.setAutoDelete( true ); 82 mTypeNumberEditList.setAutoDelete( true );
83 mPopup = new QPopupMenu( this ); 83 mPopup = new QPopupMenu( this );
84 QStringList list = PhoneNumber::supportedTypeListNames(); 84 QStringList list = PhoneNumber::supportedTypeListNames();
85 mPopupCount = list.count(); 85 mPopupCount = list.count();
86 int i = 0; 86 int i = 0;
87 while ( i < mPopupCount ) { 87 while ( i < mPopupCount ) {
88 mPopup->insertItem( list[ i ], i ); 88 mPopup->insertItem( list[ i ], i );
89 ++i; 89 ++i;
90 } 90 }
91 connect(mPopup,SIGNAL(activated(int)),this,SLOT(addNumberInt( int))); 91 connect(mPopup,SIGNAL(activated(int)),this,SLOT(addNumberInt( int)));
92 92
93} 93}
94 94
95PhoneEditWidget::~PhoneEditWidget() 95PhoneEditWidget::~PhoneEditWidget()
96{ 96{
97} 97}
98void PhoneEditWidget::setDefaults() 98void PhoneEditWidget::setDefaults()
99{ 99{
100 mTypeNumberEditList.clear(); 100 mTypeNumberEditList.clear();
101 PhoneTypeNumberEdit* edit = appendEditCombo(); 101 PhoneTypeNumberEdit* edit = appendEditCombo();
102 KABC::PhoneNumber phoneNumber; 102 KABC::PhoneNumber phoneNumber;
103 phoneNumber.setType( KABC::PhoneNumber::Home | KABC::PhoneNumber::Pref ); 103 phoneNumber.setType( KABC::PhoneNumber::Home | KABC::PhoneNumber::Pref );
104 edit->setPhoneNumber( phoneNumber ); 104 edit->setPhoneNumber( phoneNumber );
105 edit = appendEditCombo(); 105 edit = appendEditCombo();
106 phoneNumber.setType( KABC::PhoneNumber::Work | KABC::PhoneNumber::Pref ); 106 phoneNumber.setType( KABC::PhoneNumber::Work | KABC::PhoneNumber::Pref );
107 edit->setPhoneNumber( phoneNumber ); 107 edit->setPhoneNumber( phoneNumber );
108 edit = appendEditCombo(); 108 edit = appendEditCombo();
109 phoneNumber.setType( KABC::PhoneNumber::Cell ); 109 phoneNumber.setType( KABC::PhoneNumber::Cell );
110 edit->setPhoneNumber( phoneNumber ); 110 edit->setPhoneNumber( phoneNumber );
111 111
112} 112}
113void PhoneEditWidget::addNumberInt( int index ) 113void PhoneEditWidget::addNumberInt( int index )
114{ 114{
115 PhoneTypeNumberEdit* edit = appendEditCombo(); 115 PhoneTypeNumberEdit* edit = appendEditCombo();
116 KABC::PhoneNumber phoneNumber; 116 KABC::PhoneNumber phoneNumber;
117 phoneNumber.setType( PhoneNumber::supportedTypeList()[index] ); 117 phoneNumber.setType( PhoneNumber::supportedTypeList()[index] );
118 edit->setPhoneNumber( phoneNumber ); 118 edit->setPhoneNumber( phoneNumber );
119 //verticalScrollBar()->setValue( 1024); 119 //verticalScrollBar()->setValue( 1024);
120 QTimer::singleShot( 0, this, SLOT ( bottomVisible() ) ); 120 QTimer::singleShot( 0, this, SLOT ( bottomVisible() ) );
121} 121}
122void PhoneEditWidget::bottomVisible() 122void PhoneEditWidget::bottomVisible()
123{ 123{
124 sv->setContentsPos ( 0, 1024 ); 124 sv->setContentsPos ( 0, 1024 );
125} 125}
126void PhoneEditWidget::addNumber() 126void PhoneEditWidget::addNumber()
127{ 127{
128 int i = 0; 128 int i = 0;
129 while ( i < mPopupCount ) { 129 while ( i < mPopupCount ) {
130 mPopup->setItemEnabled( i, true ); 130 mPopup->setItemEnabled( i, true );
131 ++i; 131 ++i;
132 } 132 }
133 PhoneTypeNumberEdit* edit = mTypeNumberEditList.first(); 133 PhoneTypeNumberEdit* edit = mTypeNumberEditList.first();
134 while ( edit ) { 134 while ( edit ) {
135 if ( edit->currentType() < mPopupCount -1 ) 135 if ( edit->currentType() < mPopupCount -1 )
136 mPopup->setItemEnabled( edit->currentType(), false ); 136 mPopup->setItemEnabled( edit->currentType(), false );
137 edit = mTypeNumberEditList.next(); 137 edit = mTypeNumberEditList.next();
138 } 138 }
139 mPopup->popup( QCursor::pos() ); 139 mPopup->popup( QCursor::pos() );
140} 140}
141PhoneTypeNumberEdit* PhoneEditWidget::appendEditCombo() 141PhoneTypeNumberEdit* PhoneEditWidget::appendEditCombo()
142{ 142{
143 PhoneTypeNumberEdit* edit = new PhoneTypeNumberEdit( mw ); 143 PhoneTypeNumberEdit* edit = new PhoneTypeNumberEdit( mw );
144 connect ( edit, SIGNAL ( typeChange( int , int) ), this, SIGNAL ( typeChange( int , int)) ); 144 connect ( edit, SIGNAL ( typeChange( int , int) ), this, SIGNAL ( typeChange( int , int)) );
145 connect ( edit, SIGNAL ( modified() ), this, SIGNAL ( modified() ) ); 145 connect ( edit, SIGNAL ( modified() ), this, SIGNAL ( modified() ) );
146 connect ( edit, SIGNAL ( deleteMe( PhoneTypeNumberEdit* ) ), this, SLOT ( deleteEdit( PhoneTypeNumberEdit*) ) ); 146 connect ( edit, SIGNAL ( deleteMe( PhoneTypeNumberEdit* ) ), this, SLOT ( deleteEdit( PhoneTypeNumberEdit*) ) );
147 connect ( this, SIGNAL ( typeChange( int , int)), edit, SLOT ( typeExternalChanged( int, int)) ); 147 connect ( this, SIGNAL ( typeChange( int , int)), edit, SLOT ( typeExternalChanged( int, int)) );
148 148
149 mainLayout->add( edit ); 149 mainLayout->add( edit );
150 mTypeNumberEditList.append( edit ); 150 mTypeNumberEditList.append( edit );
151 return edit; 151 return edit;
152} 152}
153 153
154void PhoneEditWidget::deleteEdit( PhoneTypeNumberEdit* ew ) 154void PhoneEditWidget::deleteEdit( PhoneTypeNumberEdit* ew )
155{ 155{
156 mPendingDelete = ew; 156 mPendingDelete = ew;
157 QTimer::singleShot( 0, this, SLOT ( pendingDelete() ) ); 157 QTimer::singleShot( 0, this, SLOT ( pendingDelete() ) );
158} 158}
159void PhoneEditWidget::pendingDelete() 159void PhoneEditWidget::pendingDelete()
160{ 160{
161 mTypeNumberEditList.removeRef( mPendingDelete ); 161 mTypeNumberEditList.removeRef( mPendingDelete );
162 emit modified(); 162 emit modified();
163} 163}
164 164
165void PhoneEditWidget::setPhoneNumbers( const KABC::PhoneNumber::List &li ) 165void PhoneEditWidget::setPhoneNumbers( const KABC::PhoneNumber::List &li )
166{ 166{
167 if ( li.isEmpty() ) { 167 if ( li.isEmpty() ) {
168 setDefaults(); 168 setDefaults();
169 return; 169 return;
170 } 170 }
171 mTypeNumberEditList.clear(); 171 mTypeNumberEditList.clear();
172 KABC::PhoneNumber::List::Iterator it; 172 KABC::PhoneNumber::List::Iterator it;
173 KABC::PhoneNumber::List list2 = li; 173 KABC::PhoneNumber::List list2 = li;
174 KABC::PhoneNumber::List list ; 174 KABC::PhoneNumber::List list ;
175 175
diff --git a/kaddressbook/phoneeditwidget.h b/kaddressbook/phoneeditwidget.h
index df5aff9..0477b6c 100644
--- a/kaddressbook/phoneeditwidget.h
+++ b/kaddressbook/phoneeditwidget.h
@@ -114,181 +114,182 @@ class PhoneEditWidget : public QWidget
114 private sl_ots: 114 private sl_ots:
115 void edit(); 115 void edit();
116 116
117 void updatePrefEdit(); 117 void updatePrefEdit();
118 void updateSecondEdit(); 118 void updateSecondEdit();
119 void updateThirdEdit(); 119 void updateThirdEdit();
120 void updateFourthEdit(); 120 void updateFourthEdit();
121 121
122 void slotPrefEditChanged(); 122 void slotPrefEditChanged();
123 void slotSecondEditChanged(); 123 void slotSecondEditChanged();
124 void slotThirdEditChanged(); 124 void slotThirdEditChanged();
125 void slotFourthEditChanged(); 125 void slotFourthEditChanged();
126 126
127 protected: 127 protected:
128 void updateLineEdits(); 128 void updateLineEdits();
129 void updateCombos(); 129 void updateCombos();
130 130
131 private: 131 private:
132 QPtrList <PhoneTypeNumberEdit> mTypeNumberEditList; 132 QPtrList <PhoneTypeNumberEdit> mTypeNumberEditList;
133 void updateEdit( PhoneTypeCombo *combo ); 133 void updateEdit( PhoneTypeCombo *combo );
134 void updatePhoneNumber( PhoneTypeCombo *combo ); 134 void updatePhoneNumber( PhoneTypeCombo *combo );
135 void updateOtherEdit( PhoneTypeCombo *combo, PhoneTypeCombo *otherCombo ); 135 void updateOtherEdit( PhoneTypeCombo *combo, PhoneTypeCombo *otherCombo );
136 136
137 PhoneTypeCombo *mPrefCombo; 137 PhoneTypeCombo *mPrefCombo;
138 PhoneTypeCombo *mSecondCombo; 138 PhoneTypeCombo *mSecondCombo;
139 PhoneTypeCombo *mThirdCombo; 139 PhoneTypeCombo *mThirdCombo;
140 PhoneTypeCombo *mFourthCombo; 140 PhoneTypeCombo *mFourthCombo;
141 141
142 KLineEdit *mPrefEdit; 142 KLineEdit *mPrefEdit;
143 KLineEdit *mSecondEdit; 143 KLineEdit *mSecondEdit;
144 KLineEdit *mThirdEdit; 144 KLineEdit *mThirdEdit;
145 KLineEdit *mFourthEdit; 145 KLineEdit *mFourthEdit;
146 146
147 KABC::PhoneNumber::List mPhoneList; 147 KABC::PhoneNumber::List mPhoneList;
148}; 148};
149 149
150/** 150/**
151 Dialog for editing lists of phonenumbers. 151 Dialog for editing lists of phonenumbers.
152*/ 152*/
153class PhoneEditDialog : public KDialogBase 153class PhoneEditDialog : public KDialogBase
154{ 154{
155 Q___OBJECT 155 Q___OBJECT
156 156
157 public: 157 public:
158 PhoneEditDialog( const KABC::PhoneNumber::List &list, QWidget *parent, const char *name = 0 ); 158 PhoneEditDialog( const KABC::PhoneNumber::List &list, QWidget *parent, const char *name = 0 );
159 ~PhoneEditDialog(); 159 ~PhoneEditDialog();
160 160
161 const KABC::PhoneNumber::List &phoneNumbers(); 161 const KABC::PhoneNumber::List &phoneNumbers();
162 bool changed() const; 162 bool changed() const;
163 163
164 protected s__lots: 164 protected s__lots:
165 void slotAddPhoneNumber(); 165 void slotAddPhoneNumber();
166 void slotRemovePhoneNumber(); 166 void slotRemovePhoneNumber();
167 void slotEditPhoneNumber(); 167 void slotEditPhoneNumber();
168 void slotSelectionChanged(); 168 void slotSelectionChanged();
169 169
170 private: 170 private:
171 KABC::PhoneNumber::List mPhoneNumberList; 171 KABC::PhoneNumber::List mPhoneNumberList;
172 KABC::PhoneNumber::TypeList mTypeList; 172 KABC::PhoneNumber::TypeList mTypeList;
173 KComboBox *mTypeBox; 173 KComboBox *mTypeBox;
174 KListView *mListView; 174 KListView *mListView;
175 175
176 QPushButton *mRemoveButton; 176 QPushButton *mRemoveButton;
177 QPushButton *mEditButton; 177 QPushButton *mEditButton;
178 178
179 bool mChanged; 179 bool mChanged;
180}; 180};
181 181
182/** 182/**
183 Dialog for editing phone number types. 183 Dialog for editing phone number types.
184*/ 184*/
185class PhoneTypeDialog : public KDialogBase 185class PhoneTypeDialog : public KDialogBase
186{ 186{
187 Q___OBJECT 187 Q___OBJECT
188public: 188public:
189 PhoneTypeDialog( const KABC::PhoneNumber &phoneNumber, QWidget *parent, const char *name = 0 ); 189 PhoneTypeDialog( const KABC::PhoneNumber &phoneNumber, QWidget *parent, const char *name = 0 );
190 190
191 KABC::PhoneNumber phoneNumber(); 191 KABC::PhoneNumber phoneNumber();
192 192
193private: 193private:
194 KABC::PhoneNumber mPhoneNumber; 194 KABC::PhoneNumber mPhoneNumber;
195 KABC::PhoneNumber::TypeList mTypeList; 195 KABC::PhoneNumber::TypeList mTypeList;
196 196
197 QButtonGroup *mGroup; 197 QButtonGroup *mGroup;
198 QCheckBox *mPreferredBox; 198 QCheckBox *mPreferredBox;
199 KLineEdit *mNumber; 199 KLineEdit *mNumber;
200}; 200};
201#endif 201#endif
202 202
203class PhoneTypeNumberEdit : public QWidget 203class PhoneTypeNumberEdit : public QWidget
204{ 204{
205 Q_OBJECT 205 Q_OBJECT
206public: 206public:
207 PhoneTypeNumberEdit( QWidget *parent, const char *name = 0 ) :QWidget( parent ) 207 PhoneTypeNumberEdit( QWidget *parent, const char *name = 0 ) :QWidget( parent )
208 { 208 {
209 QHBoxLayout * lay = new QHBoxLayout( this ); 209 QHBoxLayout * lay = new QHBoxLayout( this );
210 lay->setSpacing( KDialogBase::spacingHintSmall() ); 210 lay->setSpacing( 2 );
211 lay->setMargin( KDialogBase::marginHintSmall() ); 211 lay->setMargin( 0 );
212 mMinusButton = new QPushButton ( this ); 212 mMinusButton = new QPushButton ( this );
213 mMinusButton->setPixmap ( SmallIcon("minus")); 213 mMinusButton->setPixmap ( SmallIcon("minus"));
214 mCombo = new KComboBox( this ); 214 mCombo = new KComboBox( this );
215 mNumber = new KLineEdit( this ); 215 mNumber = new KLineEdit( this );
216 mMinusButton->setMaximumHeight( mNumber->sizeHint().height() + 6);
216 lay->addWidget( mMinusButton ); 217 lay->addWidget( mMinusButton );
217 lay->addWidget( mCombo ); 218 lay->addWidget( mCombo );
218 lay->addWidget( mNumber ); 219 lay->addWidget( mNumber );
219 connect( mMinusButton , SIGNAL ( clicked() ), this, SLOT ( deleteNumber() ) ); 220 connect( mMinusButton , SIGNAL ( clicked() ), this, SLOT ( deleteNumber() ) );
220 connect( mCombo , SIGNAL ( activated ( int ) ), this, SLOT ( comboTypeChange( int ) ) ); 221 connect( mCombo , SIGNAL ( activated ( int ) ), this, SLOT ( comboTypeChange( int ) ) );
221 connect( mNumber , SIGNAL ( textChanged ( const QString & ) ), 222 connect( mNumber , SIGNAL ( textChanged ( const QString & ) ),
222 this, SLOT ( textChanged ( const QString & ) ) ); 223 this, SLOT ( textChanged ( const QString & ) ) );
223 mCombo->insertStringList( PhoneNumber::supportedTypeListNames() ); 224 mCombo->insertStringList( PhoneNumber::supportedTypeListNames() );
224 } 225 }
225 ~PhoneTypeNumberEdit() { 226 ~PhoneTypeNumberEdit() {
226 // qDebug("~PhoneTypeNumberEdit() "); 227 // qDebug("~PhoneTypeNumberEdit() ");
227 } 228 }
228 void setPhoneNumber( const KABC::PhoneNumber &phoneNumber ) 229 void setPhoneNumber( const KABC::PhoneNumber &phoneNumber )
229 { 230 {
230 mPhoneNumber = phoneNumber; 231 mPhoneNumber = phoneNumber;
231 int index = PhoneNumber::typeListIndex4Type( mPhoneNumber.type() ); 232 int index = PhoneNumber::typeListIndex4Type( mPhoneNumber.type() );
232 mCombo->setCurrentItem( index ); 233 mCombo->setCurrentItem( index );
233 mNumber->setText( mPhoneNumber.number() ); 234 mNumber->setText( mPhoneNumber.number() );
234 show(); 235 show();
235 mNumber->setFocus(); 236 mNumber->setFocus();
236 } 237 }
237 KABC::PhoneNumber phoneNumber() 238 KABC::PhoneNumber phoneNumber()
238 { 239 {
239 mPhoneNumber.setNumber( mNumber->text() ); 240 mPhoneNumber.setNumber( mNumber->text() );
240 int index = mCombo->currentItem(); 241 int index = mCombo->currentItem();
241 mPhoneNumber.setType( PhoneNumber::supportedTypeList()[index] ); 242 mPhoneNumber.setType( PhoneNumber::supportedTypeList()[index] );
242 return mPhoneNumber; 243 return mPhoneNumber;
243 } 244 }
244 bool isValid() 245 bool isValid()
245 { 246 {
246 if ( mNumber->text().isEmpty() )return false; 247 if ( mNumber->text().isEmpty() )return false;
247 return true; 248 return true;
248 } 249 }
249 int currentType() 250 int currentType()
250 { 251 {
251 return mCombo->currentItem(); 252 return mCombo->currentItem();
252 } 253 }
253 private slots: 254 private slots:
254 void typeExternalChanged( int oldType, int newType ) 255 void typeExternalChanged( int oldType, int newType )
255 { 256 {
256 if ( mPhoneNumber.type() == newType ) { 257 if ( mPhoneNumber.type() == newType ) {
257 mPhoneNumber.setType(oldType); 258 mPhoneNumber.setType(oldType);
258 int index = PhoneNumber::typeListIndex4Type( mPhoneNumber.type() ); 259 int index = PhoneNumber::typeListIndex4Type( mPhoneNumber.type() );
259 mCombo->setCurrentItem( index ); 260 mCombo->setCurrentItem( index );
260 } 261 }
261 } 262 }
262 void deleteNumber() 263 void deleteNumber()
263 { 264 {
264 emit deleteMe( this ); 265 emit deleteMe( this );
265 } 266 }
266 void comboTypeChange( int index ) 267 void comboTypeChange( int index )
267 { 268 {
268 int old = mPhoneNumber.type(); 269 int old = mPhoneNumber.type();
269 int newT = PhoneNumber::supportedTypeList()[index]; 270 int newT = PhoneNumber::supportedTypeList()[index];
270 if ( old != newT ) { 271 if ( old != newT ) {
271 emit modified(); 272 emit modified();
272 if ( newT != PhoneNumber::Voice ) 273 if ( newT != PhoneNumber::Voice )
273 emit typeChange ( old, newT ); 274 emit typeChange ( old, newT );
274 mPhoneNumber.setType(newT ); 275 mPhoneNumber.setType(newT );
275 } 276 }
276 277
277 } 278 }
278 void textChanged ( const QString & ) 279 void textChanged ( const QString & )
279 { 280 {
280 emit modified(); 281 emit modified();
281 } 282 }
282 signals: 283 signals:
283void typeChange( int oldType, int newType ); 284void typeChange( int oldType, int newType );
284 void modified(); 285 void modified();
285 void deleteMe( PhoneTypeNumberEdit* ); 286 void deleteMe( PhoneTypeNumberEdit* );
286 287
287private: 288private:
288 KABC::PhoneNumber mPhoneNumber; 289 KABC::PhoneNumber mPhoneNumber;
289 QPushButton* mMinusButton; 290 QPushButton* mMinusButton;
290 KComboBox *mCombo; 291 KComboBox *mCombo;
291 KLineEdit *mNumber; 292 KLineEdit *mNumber;
292}; 293};
293 294
294#endif 295#endif