author | ulf69 <ulf69> | 2004-08-05 22:50:37 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-05 22:50:37 (UTC) |
commit | c807547c32dd25e9d181d396590af9915b7a1166 (patch) (unidiff) | |
tree | 0950df8ef9653ab30e2faebf67bdd254e0ec1b8a /microkde/kdialogbase.cpp | |
parent | bb1dd236b41cbd5cc4aed3b320801aa07974122d (diff) | |
download | kdepimpi-c807547c32dd25e9d181d396590af9915b7a1166.zip kdepimpi-c807547c32dd25e9d181d396590af9915b7a1166.tar.gz kdepimpi-c807547c32dd25e9d181d396590af9915b7a1166.tar.bz2 |
enabled the sending of emails to selected contacts, and mailing of vCards
-rw-r--r-- | microkde/kdialogbase.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/microkde/kdialogbase.cpp b/microkde/kdialogbase.cpp index c953058..d1f7630 100644 --- a/microkde/kdialogbase.cpp +++ b/microkde/kdialogbase.cpp | |||
@@ -1,290 +1,289 @@ | |||
1 | #include <qtabwidget.h> | 1 | #include <qtabwidget.h> |
2 | #include <qpushbutton.h> | 2 | #include <qpushbutton.h> |
3 | #include <qlayout.h> | 3 | #include <qlayout.h> |
4 | #include <qframe.h> | 4 | #include <qframe.h> |
5 | 5 | ||
6 | 6 | ||
7 | #include "klocale.h" | 7 | #include "klocale.h" |
8 | #include "kdebug.h" | 8 | #include "kdebug.h" |
9 | 9 | ||
10 | #include "kdialogbase.h" | 10 | #include "kdialogbase.h" |
11 | 11 | ||
12 | KDialogBase::KDialogBase() | 12 | KDialogBase::KDialogBase() |
13 | { | 13 | { |
14 | } | 14 | } |
15 | 15 | ||
16 | KDialogBase::KDialogBase( QWidget *parent, const char *name, bool modal, | 16 | KDialogBase::KDialogBase( QWidget *parent, const char *name, bool modal, |
17 | const QString &caption, | 17 | const QString &caption, |
18 | int buttonMask, ButtonCode defaultButton, | 18 | int buttonMask, ButtonCode defaultButton, |
19 | bool separator, | 19 | bool separator, |
20 | const QString &user1, | 20 | const QString &user1, |
21 | const QString &user2, | 21 | const QString &user2, |
22 | const QString &user3) : | 22 | const QString &user3) : |
23 | KDialog( parent, name, modal ) | 23 | KDialog( parent, name, modal ) |
24 | { | 24 | { |
25 | init( caption, buttonMask, user1, user2 ); | 25 | init( caption, buttonMask, user1, user2 ); |
26 | if (findButton( defaultButton ) ) | 26 | if (findButton( defaultButton ) ) |
27 | (findButton( defaultButton ) )->setFocus(); | 27 | (findButton( defaultButton ) )->setFocus(); |
28 | 28 | ||
29 | } | 29 | } |
30 | 30 | ||
31 | KDialogBase::KDialogBase( int dialogFace, const QString &caption, | 31 | KDialogBase::KDialogBase( int dialogFace, const QString &caption, |
32 | int buttonMask, ButtonCode defaultButton, | 32 | int buttonMask, ButtonCode defaultButton, |
33 | QWidget *parent, const char *name, bool modal, | 33 | QWidget *parent, const char *name, bool modal, |
34 | bool separator, | 34 | bool separator, |
35 | const QString &user1, | 35 | const QString &user1, |
36 | const QString &user2, | 36 | const QString &user2, |
37 | const QString &user3) : | 37 | const QString &user3) : |
38 | KDialog( parent, name, modal ) | 38 | KDialog( parent, name, modal ) |
39 | { | 39 | { |
40 | init( caption, buttonMask, user1, user2 ); | 40 | init( caption, buttonMask, user1, user2 ); |
41 | if (findButton( defaultButton ) ) | 41 | if (findButton( defaultButton ) ) |
42 | (findButton( defaultButton ) )->setFocus(); | 42 | (findButton( defaultButton ) )->setFocus(); |
43 | 43 | ||
44 | } | 44 | } |
45 | 45 | ||
46 | KDialogBase::~KDialogBase() | 46 | KDialogBase::~KDialogBase() |
47 | { | 47 | { |
48 | } | 48 | } |
49 | 49 | ||
50 | void KDialogBase::init( const QString &caption, int buttonMask, | 50 | void KDialogBase::init( const QString &caption, int buttonMask, |
51 | const QString &user1 ,const QString &user2 ) | 51 | const QString &user1 ,const QString &user2 ) |
52 | { | 52 | { |
53 | mMainWidget = 0; | 53 | mMainWidget = 0; |
54 | mTabWidget = 0; | 54 | mTabWidget = 0; |
55 | mPlainPage = 0; | 55 | mPlainPage = 0; |
56 | mTopLayout = 0; | 56 | mTopLayout = 0; |
57 | if ( !caption.isEmpty() ) { | 57 | if ( !caption.isEmpty() ) { |
58 | setCaption( caption ); | 58 | setCaption( caption ); |
59 | } | 59 | } |
60 | 60 | ||
61 | if ( buttonMask & User1 ) { | 61 | if ( buttonMask & User1 ) { |
62 | mUser1Button = new QPushButton( user1, this ); | 62 | mUser1Button = new QPushButton( user1, this ); |
63 | connect( mUser1Button, SIGNAL( clicked() ), SLOT( slotUser1() ) ); | 63 | connect( mUser1Button, SIGNAL( clicked() ), SLOT( slotUser1() ) ); |
64 | } else { | 64 | } else { |
65 | mUser1Button = 0; | 65 | mUser1Button = 0; |
66 | } | 66 | } |
67 | if ( buttonMask & User2 ) { | 67 | if ( buttonMask & User2 ) { |
68 | mUser2Button = new QPushButton( user2, this ); | 68 | mUser2Button = new QPushButton( user2, this ); |
69 | connect( mUser2Button, SIGNAL( clicked() ), SLOT( slotUser2() ) ); | 69 | connect( mUser2Button, SIGNAL( clicked() ), SLOT( slotUser2() ) ); |
70 | } else { | 70 | } else { |
71 | mUser2Button = 0; | 71 | mUser2Button = 0; |
72 | } | 72 | } |
73 | 73 | ||
74 | if ( buttonMask & Ok ) { | 74 | if ( buttonMask & Ok ) { |
75 | mOkButton = new QPushButton( i18n("Ok"), this ); | 75 | mOkButton = new QPushButton( i18n("Ok"), this ); |
76 | connect( mOkButton, SIGNAL( clicked() ), SLOT( slotOk() ) ); | 76 | connect( mOkButton, SIGNAL( clicked() ), SLOT( slotOk() ) ); |
77 | } else { | 77 | } else { |
78 | mOkButton = 0; | 78 | mOkButton = 0; |
79 | } | 79 | } |
80 | if ( buttonMask & Default ) { | 80 | if ( buttonMask & Default ) { |
81 | qDebug("buttonMask & Default "); | ||
82 | mDefaultButton = new QPushButton( i18n("Default"), this ); | 81 | mDefaultButton = new QPushButton( i18n("Default"), this ); |
83 | connect( mDefaultButton, SIGNAL( clicked() ), SIGNAL( defaultClicked() ) ); | 82 | connect( mDefaultButton, SIGNAL( clicked() ), SIGNAL( defaultClicked() ) ); |
84 | } else { | 83 | } else { |
85 | mDefaultButton = 0; | 84 | mDefaultButton = 0; |
86 | } | 85 | } |
87 | 86 | ||
88 | if ( buttonMask & Apply ) { | 87 | if ( buttonMask & Apply ) { |
89 | mApplyButton = new QPushButton( i18n("Apply"), this ); | 88 | mApplyButton = new QPushButton( i18n("Apply"), this ); |
90 | connect( mApplyButton, SIGNAL( clicked() ), SLOT( slotApply() ) ); | 89 | connect( mApplyButton, SIGNAL( clicked() ), SLOT( slotApply() ) ); |
91 | } else { | 90 | } else { |
92 | mApplyButton = 0; | 91 | mApplyButton = 0; |
93 | } | 92 | } |
94 | 93 | ||
95 | if ( buttonMask & Cancel ) { | 94 | if ( buttonMask & Cancel ) { |
96 | mCancelButton = new QPushButton( i18n("Cancel"), this ); | 95 | mCancelButton = new QPushButton( i18n("Cancel"), this ); |
97 | connect( mCancelButton, SIGNAL( clicked() ), SLOT( slotCancel() ) ); | 96 | connect( mCancelButton, SIGNAL( clicked() ), SLOT( slotCancel() ) ); |
98 | } else { | 97 | } else { |
99 | mCancelButton = 0; | 98 | mCancelButton = 0; |
100 | } | 99 | } |
101 | 100 | ||
102 | if ( buttonMask & Close ) { | 101 | if ( buttonMask & Close ) { |
103 | mCloseButton = new QPushButton( i18n("Close"), this ); | 102 | mCloseButton = new QPushButton( i18n("Close"), this ); |
104 | connect( mCloseButton, SIGNAL( clicked() ), SLOT( slotClose() ) ); | 103 | connect( mCloseButton, SIGNAL( clicked() ), SLOT( slotClose() ) ); |
105 | } else { | 104 | } else { |
106 | mCloseButton = 0; | 105 | mCloseButton = 0; |
107 | } | 106 | } |
108 | } | 107 | } |
109 | 108 | ||
110 | QTabWidget *KDialogBase::tabWidget() | 109 | QTabWidget *KDialogBase::tabWidget() |
111 | { | 110 | { |
112 | if ( !mTabWidget ) { | 111 | if ( !mTabWidget ) { |
113 | mTabWidget = new QTabWidget( this ); | 112 | mTabWidget = new QTabWidget( this ); |
114 | setMainWidget( mTabWidget ); | 113 | setMainWidget( mTabWidget ); |
115 | } | 114 | } |
116 | return mTabWidget; | 115 | return mTabWidget; |
117 | } | 116 | } |
118 | 117 | ||
119 | void KDialogBase::hideButtons() | 118 | void KDialogBase::hideButtons() |
120 | { | 119 | { |
121 | if ( mUser1Button ) mUser1Button->hide() ; | 120 | if ( mUser1Button ) mUser1Button->hide() ; |
122 | if ( mUser2Button ) mUser2Button->hide() ; | 121 | if ( mUser2Button ) mUser2Button->hide() ; |
123 | if ( mOkButton ) mOkButton->hide() ; | 122 | if ( mOkButton ) mOkButton->hide() ; |
124 | if ( mApplyButton ) mApplyButton->hide() ; | 123 | if ( mApplyButton ) mApplyButton->hide() ; |
125 | if ( mDefaultButton ) mDefaultButton->hide(); | 124 | if ( mDefaultButton ) mDefaultButton->hide(); |
126 | if ( mCancelButton ) mCancelButton->hide() ; | 125 | if ( mCancelButton ) mCancelButton->hide() ; |
127 | if ( mCloseButton ) mCloseButton->hide() ; | 126 | if ( mCloseButton ) mCloseButton->hide() ; |
128 | 127 | ||
129 | } | 128 | } |
130 | void KDialogBase::initLayout() | 129 | void KDialogBase::initLayout() |
131 | { | 130 | { |
132 | 131 | ||
133 | delete mTopLayout; | 132 | delete mTopLayout; |
134 | mTopLayout = new QVBoxLayout( this ); | 133 | mTopLayout = new QVBoxLayout( this ); |
135 | mTopLayout->setMargin( marginHint() ); | 134 | mTopLayout->setMargin( marginHint() ); |
136 | mTopLayout->setSpacing( spacingHint() ); | 135 | mTopLayout->setSpacing( spacingHint() ); |
137 | 136 | ||
138 | mTopLayout->addWidget( mMainWidget ); | 137 | mTopLayout->addWidget( mMainWidget ); |
139 | 138 | ||
140 | QBoxLayout *buttonLayout = new QHBoxLayout; | 139 | QBoxLayout *buttonLayout = new QHBoxLayout; |
141 | mTopLayout->addLayout( buttonLayout ); | 140 | mTopLayout->addLayout( buttonLayout ); |
142 | 141 | ||
143 | if ( mUser1Button ) buttonLayout->addWidget( mUser1Button ); | 142 | if ( mUser1Button ) buttonLayout->addWidget( mUser1Button ); |
144 | if ( mUser2Button ) buttonLayout->addWidget( mUser2Button ); | 143 | if ( mUser2Button ) buttonLayout->addWidget( mUser2Button ); |
145 | if ( mOkButton ) buttonLayout->addWidget( mOkButton ); | 144 | if ( mOkButton ) buttonLayout->addWidget( mOkButton ); |
146 | if ( mApplyButton ) buttonLayout->addWidget( mApplyButton ); | 145 | if ( mApplyButton ) buttonLayout->addWidget( mApplyButton ); |
147 | if ( mDefaultButton ) buttonLayout->addWidget( mDefaultButton ); | 146 | if ( mDefaultButton ) buttonLayout->addWidget( mDefaultButton ); |
148 | if ( mCancelButton ) buttonLayout->addWidget( mCancelButton ); | 147 | if ( mCancelButton ) buttonLayout->addWidget( mCancelButton ); |
149 | if ( mCloseButton ) buttonLayout->addWidget( mCloseButton ); | 148 | if ( mCloseButton ) buttonLayout->addWidget( mCloseButton ); |
150 | } | 149 | } |
151 | 150 | ||
152 | QFrame *KDialogBase::addPage( const QString &name ) | 151 | QFrame *KDialogBase::addPage( const QString &name ) |
153 | { | 152 | { |
154 | // kdDebug() << "KDialogBase::addPage(): " << name << endl; | 153 | // kdDebug() << "KDialogBase::addPage(): " << name << endl; |
155 | QFrame *frame = new QFrame( tabWidget() ); | 154 | QFrame *frame = new QFrame( tabWidget() ); |
156 | tabWidget()->addTab( frame, name ); | 155 | tabWidget()->addTab( frame, name ); |
157 | return frame; | 156 | return frame; |
158 | } | 157 | } |
159 | 158 | ||
160 | QFrame *KDialogBase::addPage( const QString &name, int, const QPixmap & ) | 159 | QFrame *KDialogBase::addPage( const QString &name, int, const QPixmap & ) |
161 | { | 160 | { |
162 | return addPage( name ); | 161 | return addPage( name ); |
163 | } | 162 | } |
164 | 163 | ||
165 | 164 | ||
166 | void KDialogBase::setMainWidget( QWidget *widget ) | 165 | void KDialogBase::setMainWidget( QWidget *widget ) |
167 | { | 166 | { |
168 | kdDebug() << "KDialogBase::setMainWidget()" << endl; | 167 | kdDebug() << "KDialogBase::setMainWidget()" << endl; |
169 | 168 | ||
170 | mMainWidget = widget; | 169 | mMainWidget = widget; |
171 | initLayout(); | 170 | initLayout(); |
172 | } | 171 | } |
173 | 172 | ||
174 | void KDialogBase::setButtonText( ButtonCode id, const QString &text ) | 173 | void KDialogBase::setButtonText( ButtonCode id, const QString &text ) |
175 | { | 174 | { |
176 | QPushButton *button = findButton( id ); | 175 | QPushButton *button = findButton( id ); |
177 | if ( button ) { | 176 | if ( button ) { |
178 | button->setText( text ); | 177 | button->setText( text ); |
179 | } | 178 | } |
180 | } | 179 | } |
181 | 180 | ||
182 | void KDialogBase::enableButton( ButtonCode id, bool state ) | 181 | void KDialogBase::enableButton( ButtonCode id, bool state ) |
183 | { | 182 | { |
184 | QPushButton *button = findButton( id ); | 183 | QPushButton *button = findButton( id ); |
185 | if ( button ) { | 184 | if ( button ) { |
186 | button->setEnabled( state ); | 185 | button->setEnabled( state ); |
187 | } | 186 | } |
188 | } | 187 | } |
189 | 188 | ||
190 | QPushButton *KDialogBase::findButton( ButtonCode id ) | 189 | QPushButton *KDialogBase::findButton( ButtonCode id ) |
191 | { | 190 | { |
192 | QPushButton *button = 0; | 191 | QPushButton *button = 0; |
193 | switch ( id ) { | 192 | switch ( id ) { |
194 | case Ok: | 193 | case Ok: |
195 | button = mOkButton; | 194 | button = mOkButton; |
196 | break; | 195 | break; |
197 | case Apply: | 196 | case Apply: |
198 | button = mApplyButton; | 197 | button = mApplyButton; |
199 | break; | 198 | break; |
200 | case User1: | 199 | case User1: |
201 | button = mUser1Button; | 200 | button = mUser1Button; |
202 | break; | 201 | break; |
203 | case User2: | 202 | case User2: |
204 | button = mUser2Button; | 203 | button = mUser2Button; |
205 | break; | 204 | break; |
206 | case Cancel: | 205 | case Cancel: |
207 | button = mCancelButton; | 206 | button = mCancelButton; |
208 | break; | 207 | break; |
209 | case Default: | 208 | case Default: |
210 | button = mDefaultButton; | 209 | button = mDefaultButton; |
211 | break; | 210 | break; |
212 | case Close: | 211 | case Close: |
213 | button = mCloseButton; | 212 | button = mCloseButton; |
214 | break; | 213 | break; |
215 | default: | 214 | default: |
216 | break; | 215 | break; |
217 | } | 216 | } |
218 | return button; | 217 | return button; |
219 | } | 218 | } |
220 | 219 | ||
221 | void KDialogBase::enableButtonOK( bool state ) | 220 | void KDialogBase::enableButtonOK( bool state ) |
222 | { | 221 | { |
223 | enableButton( Ok, state ); | 222 | enableButton( Ok, state ); |
224 | } | 223 | } |
225 | 224 | ||
226 | void KDialogBase::enableButtonApply( bool state ) | 225 | void KDialogBase::enableButtonApply( bool state ) |
227 | { | 226 | { |
228 | enableButton( Apply, state ); | 227 | enableButton( Apply, state ); |
229 | } | 228 | } |
230 | 229 | ||
231 | void KDialogBase::showButton( ButtonCode id, bool show ) | 230 | void KDialogBase::showButton( ButtonCode id, bool show ) |
232 | { | 231 | { |
233 | QPushButton *button = findButton( id ); | 232 | QPushButton *button = findButton( id ); |
234 | if ( button ) { | 233 | if ( button ) { |
235 | if ( show ) button->show(); | 234 | if ( show ) button->show(); |
236 | else button->hide(); | 235 | else button->hide(); |
237 | } | 236 | } |
238 | } | 237 | } |
239 | 238 | ||
240 | int KDialogBase::pageIndex( QWidget *widget ) const | 239 | int KDialogBase::pageIndex( QWidget *widget ) const |
241 | { | 240 | { |
242 | return 0; | 241 | return 0; |
243 | } | 242 | } |
244 | 243 | ||
245 | 244 | ||
246 | bool KDialogBase::showPage( int index ) | 245 | bool KDialogBase::showPage( int index ) |
247 | { | 246 | { |
248 | tabWidget()->setCurrentPage( index );return false; | 247 | tabWidget()->setCurrentPage( index );return false; |
249 | } | 248 | } |
250 | 249 | ||
251 | QFrame *KDialogBase::plainPage() | 250 | QFrame *KDialogBase::plainPage() |
252 | { | 251 | { |
253 | if ( !mPlainPage ) { | 252 | if ( !mPlainPage ) { |
254 | mPlainPage = new QFrame( this ); | 253 | mPlainPage = new QFrame( this ); |
255 | setMainWidget( mPlainPage ); | 254 | setMainWidget( mPlainPage ); |
256 | } | 255 | } |
257 | return mPlainPage; | 256 | return mPlainPage; |
258 | } | 257 | } |
259 | 258 | ||
260 | void KDialogBase::slotOk() | 259 | void KDialogBase::slotOk() |
261 | { | 260 | { |
262 | emit okClicked(); | 261 | emit okClicked(); |
263 | accept(); | 262 | accept(); |
264 | } | 263 | } |
265 | 264 | ||
266 | void KDialogBase::slotApply() | 265 | void KDialogBase::slotApply() |
267 | { | 266 | { |
268 | emit applyClicked(); | 267 | emit applyClicked(); |
269 | } | 268 | } |
270 | 269 | ||
271 | void KDialogBase::slotCancel() | 270 | void KDialogBase::slotCancel() |
272 | { | 271 | { |
273 | emit cancelClicked(); | 272 | emit cancelClicked(); |
274 | reject(); | 273 | reject(); |
275 | } | 274 | } |
276 | 275 | ||
277 | void KDialogBase::slotClose() | 276 | void KDialogBase::slotClose() |
278 | { | 277 | { |
279 | emit closeClicked(); | 278 | emit closeClicked(); |
280 | reject(); | 279 | reject(); |
281 | } | 280 | } |
282 | 281 | ||
283 | void KDialogBase::slotUser1() | 282 | void KDialogBase::slotUser1() |
284 | { | 283 | { |
285 | emit user1Clicked(); | 284 | emit user1Clicked(); |
286 | } | 285 | } |
287 | void KDialogBase::slotUser2() | 286 | void KDialogBase::slotUser2() |
288 | { | 287 | { |
289 | emit user2Clicked(); | 288 | emit user2Clicked(); |
290 | } | 289 | } |