-rw-r--r-- | noncore/settings/appearance2/appearance.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp index e269aec..43ff24c 100644 --- a/noncore/settings/appearance2/appearance.cpp +++ b/noncore/settings/appearance2/appearance.cpp | |||
@@ -234,258 +234,258 @@ QWidget *Appearance::createDecoTab ( QWidget *parent ) | |||
234 | m_deco_list-> setCurrentItem ( m_deco_list-> findItem ( s )); | 234 | m_deco_list-> setCurrentItem ( m_deco_list-> findItem ( s )); |
235 | m_original_deco = m_deco_list-> currentItem ( ); | 235 | m_original_deco = m_deco_list-> currentItem ( ); |
236 | if ( m_deco_list-> currentItem ( ) < 0 ) | 236 | if ( m_deco_list-> currentItem ( ) < 0 ) |
237 | m_deco_list-> setCurrentItem ( 0 ); | 237 | m_deco_list-> setCurrentItem ( 0 ); |
238 | decoClicked ( m_original_deco ); | 238 | decoClicked ( m_original_deco ); |
239 | 239 | ||
240 | connect( m_deco_list, SIGNAL( highlighted( int ) ), this, SLOT( decoClicked( int ) ) ); | 240 | connect( m_deco_list, SIGNAL( highlighted( int ) ), this, SLOT( decoClicked( int ) ) ); |
241 | 241 | ||
242 | return tab; | 242 | return tab; |
243 | } | 243 | } |
244 | 244 | ||
245 | QWidget *Appearance::createFontTab ( QWidget *parent ) | 245 | QWidget *Appearance::createFontTab ( QWidget *parent ) |
246 | { | 246 | { |
247 | Config config ( "qpe" ); | 247 | Config config ( "qpe" ); |
248 | config. setGroup ( "Appearance" ); | 248 | config. setGroup ( "Appearance" ); |
249 | 249 | ||
250 | QString familyStr = config.readEntry( "FontFamily", "Helvetica" ); | 250 | QString familyStr = config.readEntry( "FontFamily", "Helvetica" ); |
251 | QString styleStr = config.readEntry( "FontStyle", "Regular" ); | 251 | QString styleStr = config.readEntry( "FontStyle", "Regular" ); |
252 | int size = config.readNumEntry( "FontSize", 10 ); | 252 | int size = config.readNumEntry( "FontSize", 10 ); |
253 | 253 | ||
254 | m_fontselect = new OFontSelector ( false, parent, "FontTab" ); | 254 | m_fontselect = new OFontSelector ( false, parent, "FontTab" ); |
255 | m_fontselect-> setSelectedFont ( familyStr, styleStr, size ); | 255 | m_fontselect-> setSelectedFont ( familyStr, styleStr, size ); |
256 | 256 | ||
257 | connect( m_fontselect, SIGNAL( fontSelected ( const QFont & )), | 257 | connect( m_fontselect, SIGNAL( fontSelected ( const QFont & )), |
258 | this, SLOT( fontClicked ( const QFont & ))); | 258 | this, SLOT( fontClicked ( const QFont & ))); |
259 | 259 | ||
260 | return m_fontselect; | 260 | return m_fontselect; |
261 | } | 261 | } |
262 | 262 | ||
263 | QWidget *Appearance::createColorTab ( QWidget *parent ) | 263 | QWidget *Appearance::createColorTab ( QWidget *parent ) |
264 | { | 264 | { |
265 | Config config ( "qpe" ); | 265 | Config config ( "qpe" ); |
266 | config. setGroup ( "Appearance" ); | 266 | config. setGroup ( "Appearance" ); |
267 | 267 | ||
268 | 268 | ||
269 | QWidget *tab = new QWidget( parent, "ColorTab" ); | 269 | QWidget *tab = new QWidget( parent, "ColorTab" ); |
270 | QGridLayout *gridLayout = new QGridLayout( tab, 0, 0, 4, 4 ); | 270 | QGridLayout *gridLayout = new QGridLayout( tab, 0, 0, 4, 4 ); |
271 | gridLayout->setRowStretch ( 3, 10 ); | 271 | gridLayout->setRowStretch ( 3, 10 ); |
272 | 272 | ||
273 | m_color_list = new QListBox ( tab ); | 273 | m_color_list = new QListBox ( tab ); |
274 | gridLayout->addMultiCellWidget ( m_color_list, 0, 3, 0, 0 ); | 274 | gridLayout->addMultiCellWidget ( m_color_list, 0, 3, 0, 0 ); |
275 | connect( m_color_list, SIGNAL( highlighted( int ) ), this, SLOT( colorClicked( int ) ) ); | 275 | connect( m_color_list, SIGNAL( highlighted( int ) ), this, SLOT( colorClicked( int ) ) ); |
276 | 276 | ||
277 | loadColors ( m_color_list ); | 277 | loadColors ( m_color_list ); |
278 | m_color_list-> setCurrentItem ( 0 ); | 278 | m_color_list-> setCurrentItem ( 0 ); |
279 | 279 | ||
280 | QPushButton* tempButton = new QPushButton( tab, "editSchemeButton" ); | 280 | QPushButton* tempButton = new QPushButton( tab, "editSchemeButton" ); |
281 | tempButton->setText( tr( "Edit..." ) ); | 281 | tempButton->setText( tr( "Edit..." ) ); |
282 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( editSchemeClicked() ) ); | 282 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( editSchemeClicked() ) ); |
283 | gridLayout->addWidget( tempButton, 0, 1 ); | 283 | gridLayout->addWidget( tempButton, 0, 1 ); |
284 | 284 | ||
285 | tempButton = new QPushButton( tab, "deleteSchemeButton" ); | 285 | tempButton = new QPushButton( tab, "deleteSchemeButton" ); |
286 | tempButton->setText( tr( "Delete" ) ); | 286 | tempButton->setText( tr( "Delete" ) ); |
287 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( deleteSchemeClicked() ) ); | 287 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( deleteSchemeClicked() ) ); |
288 | gridLayout->addWidget( tempButton, 1, 1 ); | 288 | gridLayout->addWidget( tempButton, 1, 1 ); |
289 | 289 | ||
290 | tempButton = new QPushButton( tab, "saveSchemeButton" ); | 290 | tempButton = new QPushButton( tab, "saveSchemeButton" ); |
291 | tempButton->setText( tr( "Save" ) ); | 291 | tempButton->setText( tr( "Save" ) ); |
292 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( saveSchemeClicked() ) ); | 292 | connect( tempButton, SIGNAL( clicked() ), this, SLOT( saveSchemeClicked() ) ); |
293 | gridLayout->addWidget( tempButton, 2, 1 ); | 293 | gridLayout->addWidget( tempButton, 2, 1 ); |
294 | 294 | ||
295 | return tab; | 295 | return tab; |
296 | } | 296 | } |
297 | 297 | ||
298 | QWidget *Appearance::createGuiTab ( QWidget *parent ) | 298 | QWidget *Appearance::createGuiTab ( QWidget *parent ) |
299 | { | 299 | { |
300 | Config config ( "qpe" ); | 300 | Config config ( "qpe" ); |
301 | config. setGroup ( "Appearance" ); | 301 | config. setGroup ( "Appearance" ); |
302 | 302 | ||
303 | QWidget *tab = new QWidget( parent, "AdvancedTab" ); | 303 | QWidget *tab = new QWidget( parent, "AdvancedTab" ); |
304 | QVBoxLayout *vertLayout = new QVBoxLayout( tab, 4, 4 ); | 304 | QVBoxLayout *vertLayout = new QVBoxLayout( tab, 4, 4 ); |
305 | 305 | ||
306 | QGridLayout* gridLayout = new QGridLayout ( vertLayout ); | 306 | QGridLayout* gridLayout = new QGridLayout ( vertLayout ); |
307 | 307 | ||
308 | int style = config. readNumEntry ( "TabStyle", 2 ) - 1; | 308 | int style = config. readNumEntry ( "TabStyle", 2 ) - 1; |
309 | bool tabtop = ( config. readEntry ( "TabPosition", "Top" ) == "Top" ); | 309 | bool tabtop = ( config. readEntry ( "TabPosition", "Top" ) == "Top" ); |
310 | 310 | ||
311 | QLabel* label = new QLabel( tr( "Tab style:" ), tab ); | 311 | QLabel* label = new QLabel( tr( "Tab style:" ), tab ); |
312 | gridLayout-> addWidget ( label, 0, 0 ); | 312 | gridLayout-> addWidget ( label, 0, 0 ); |
313 | QButtonGroup* btngrp = new QButtonGroup( tab, "buttongroup" ); | 313 | QButtonGroup* btngrp = new QButtonGroup( tab, "buttongroup" ); |
314 | btngrp-> hide ( ); | 314 | btngrp-> hide ( ); |
315 | btngrp-> setExclusive ( true ); | 315 | btngrp-> setExclusive ( true ); |
316 | 316 | ||
317 | m_tabstyle_list = new QComboBox ( false, tab, "tabstyle" ); | 317 | m_tabstyle_list = new QComboBox ( false, tab, "tabstyle" ); |
318 | m_tabstyle_list-> insertItem ( tr( "Tabs" )); | 318 | m_tabstyle_list-> insertItem ( tr( "Tabs" )); |
319 | m_tabstyle_list-> insertItem ( tr( "Tabs w/icons" )); | 319 | m_tabstyle_list-> insertItem ( tr( "Tabs w/icons" )); |
320 | m_tabstyle_list-> insertItem ( tr( "Drop down list" )); | 320 | m_tabstyle_list-> insertItem ( tr( "Drop down list" )); |
321 | m_tabstyle_list-> insertItem ( tr( "Drop down list w/icons" )); | 321 | m_tabstyle_list-> insertItem ( tr( "Drop down list w/icons" )); |
322 | m_tabstyle_list-> setCurrentItem ( style ); | 322 | m_tabstyle_list-> setCurrentItem ( style ); |
323 | gridLayout-> addMultiCellWidget ( m_tabstyle_list, 0, 0, 1, 2 ); | 323 | gridLayout-> addMultiCellWidget ( m_tabstyle_list, 0, 0, 1, 2 ); |
324 | 324 | ||
325 | m_tabstyle_top = new QRadioButton( tr( "Top" ), tab, "tabpostop" ); | 325 | m_tabstyle_top = new QRadioButton( tr( "Top" ), tab, "tabpostop" ); |
326 | btngrp-> insert ( m_tabstyle_top ); | 326 | btngrp-> insert ( m_tabstyle_top ); |
327 | gridLayout-> addWidget( m_tabstyle_top, 1, 1 ); | 327 | gridLayout-> addWidget( m_tabstyle_top, 1, 1 ); |
328 | 328 | ||
329 | m_tabstyle_bottom = new QRadioButton( tr( "Bottom" ), tab, "tabposbottom" ); | 329 | m_tabstyle_bottom = new QRadioButton( tr( "Bottom" ), tab, "tabposbottom" ); |
330 | btngrp-> insert ( m_tabstyle_bottom ); | 330 | btngrp-> insert ( m_tabstyle_bottom ); |
331 | gridLayout-> addWidget( m_tabstyle_bottom, 1, 2 ); | 331 | gridLayout-> addWidget( m_tabstyle_bottom, 1, 2 ); |
332 | 332 | ||
333 | m_tabstyle_top-> setChecked ( tabtop ); | 333 | m_tabstyle_top-> setChecked ( tabtop ); |
334 | m_tabstyle_bottom-> setChecked ( !tabtop ); | 334 | m_tabstyle_bottom-> setChecked ( !tabtop ); |
335 | 335 | ||
336 | m_original_tabstyle = style; | 336 | m_original_tabstyle = style; |
337 | m_original_tabpos = tabtop; | 337 | m_original_tabpos = tabtop; |
338 | 338 | ||
339 | return tab; | 339 | return tab; |
340 | } | 340 | } |
341 | 341 | ||
342 | 342 | ||
343 | Appearance::Appearance( QWidget* parent, const char* name, WFlags ) | 343 | Appearance::Appearance( QWidget* parent, const char* name, WFlags ) |
344 | : QDialog ( parent, name, true ) | 344 | : QDialog ( parent, name, true ) |
345 | { | 345 | { |
346 | setCaption( tr( "Appearance" ) ); | 346 | setCaption( tr( "Appearance" ) ); |
347 | 347 | ||
348 | Config config( "qpe" ); | 348 | Config config( "qpe" ); |
349 | config.setGroup( "Appearance" ); | 349 | config.setGroup( "Appearance" ); |
350 | 350 | ||
351 | QVBoxLayout *top = new QVBoxLayout ( this, 4, 4 ); | 351 | QVBoxLayout *top = new QVBoxLayout ( this, 4, 4 ); |
352 | 352 | ||
353 | m_sample = new SampleWindow ( this ); | 353 | m_sample = new SampleWindow ( this ); |
354 | m_sample-> setDecoration ( new DefaultWindowDecoration ( )); | 354 | m_sample-> setDecoration ( new DefaultWindowDecoration ( )); |
355 | 355 | ||
356 | OTabWidget* tw = new OTabWidget ( this, "tabwidget", OTabWidget::Global, OTabWidget::Bottom ); | 356 | OTabWidget* tw = new OTabWidget ( this, "tabwidget", OTabWidget::Global, OTabWidget::Bottom ); |
357 | QWidget *styletab; | 357 | QWidget *styletab; |
358 | 358 | ||
359 | tw-> addTab ( styletab = createStyleTab ( tw ), "appearance/styletabicon.png", tr( "Style" )); | 359 | tw-> addTab ( styletab = createStyleTab ( tw ), "appearance/styletabicon.png", tr( "Style" )); |
360 | tw-> addTab ( createFontTab ( tw ), "appearance/fonttabicon.png", tr( "Font" )); | 360 | tw-> addTab ( createFontTab ( tw ), "appearance/fonttabicon.png", tr( "Font" )); |
361 | tw-> addTab ( createColorTab ( tw ), "appearance/colorstabicon.png", tr( "Colors" ) ); | 361 | tw-> addTab ( createColorTab ( tw ), "appearance/colorstabicon.png", tr( "Colors" ) ); |
362 | tw-> addTab ( createDecoTab ( tw ), "appearance/styletabicon.png", tr( "Windows" ) ); | 362 | tw-> addTab ( createDecoTab ( tw ), "appearance/decotabicon.png", tr( "Windows" ) ); |
363 | tw-> addTab ( createGuiTab ( tw ), "appearance/backgroundtabicon.png", tr( "Gui" ) ); | 363 | tw-> addTab ( createGuiTab ( tw ), "appearance/advancedtabicon.png", tr( "Gui" ) ); |
364 | 364 | ||
365 | top-> addWidget ( tw, 10 ); | 365 | top-> addWidget ( tw, 10 ); |
366 | top-> addWidget ( m_sample, 1 ); | 366 | top-> addWidget ( m_sample, 1 ); |
367 | 367 | ||
368 | tw-> setCurrentTab ( styletab ); | 368 | tw-> setCurrentTab ( styletab ); |
369 | } | 369 | } |
370 | 370 | ||
371 | Appearance::~Appearance() | 371 | Appearance::~Appearance() |
372 | { | 372 | { |
373 | } | 373 | } |
374 | 374 | ||
375 | void Appearance::accept ( ) | 375 | void Appearance::accept ( ) |
376 | { | 376 | { |
377 | Config config("qpe"); | 377 | Config config("qpe"); |
378 | config.setGroup( "Appearance" ); | 378 | config.setGroup( "Appearance" ); |
379 | 379 | ||
380 | int newtabstyle = m_tabstyle_list-> currentItem ( ); | 380 | int newtabstyle = m_tabstyle_list-> currentItem ( ); |
381 | bool newtabpos = m_tabstyle_top-> isChecked ( ); | 381 | bool newtabpos = m_tabstyle_top-> isChecked ( ); |
382 | 382 | ||
383 | 383 | ||
384 | if ( m_style_changed ) { | 384 | if ( m_style_changed ) { |
385 | StyleListItem *item = (StyleListItem *) m_style_list-> item ( m_style_list-> currentItem ( )); | 385 | StyleListItem *item = (StyleListItem *) m_style_list-> item ( m_style_list-> currentItem ( )); |
386 | if ( item ) | 386 | if ( item ) |
387 | config.writeEntry( "Style", item-> key ( )); | 387 | config.writeEntry( "Style", item-> key ( )); |
388 | } | 388 | } |
389 | 389 | ||
390 | if (( newtabstyle != m_original_tabstyle ) || ( newtabpos != m_original_tabpos )) { | 390 | if (( newtabstyle != m_original_tabstyle ) || ( newtabpos != m_original_tabpos )) { |
391 | config. writeEntry ( "TabStyle", newtabstyle + 1 ); | 391 | config. writeEntry ( "TabStyle", newtabstyle + 1 ); |
392 | config. writeEntry ( "TabPosition", newtabpos ? "Top" : "Bottom" ); | 392 | config. writeEntry ( "TabPosition", newtabpos ? "Top" : "Bottom" ); |
393 | } | 393 | } |
394 | 394 | ||
395 | if ( m_font_changed ) { | 395 | if ( m_font_changed ) { |
396 | config. writeEntry ( "FontFamily", m_fontselect-> fontFamily ( )); | 396 | config. writeEntry ( "FontFamily", m_fontselect-> fontFamily ( )); |
397 | config. writeEntry ( "FontStyle", m_fontselect-> fontStyle ( )); | 397 | config. writeEntry ( "FontStyle", m_fontselect-> fontStyle ( )); |
398 | config. writeEntry ( "FontSize", m_fontselect-> fontSize ( )); | 398 | config. writeEntry ( "FontSize", m_fontselect-> fontSize ( )); |
399 | } | 399 | } |
400 | 400 | ||
401 | 401 | ||
402 | if ( m_color_changed ) | 402 | if ( m_color_changed ) |
403 | { | 403 | { |
404 | ColorListItem *item = (ColorListItem *) m_color_list-> item ( m_color_list-> currentItem ( )); | 404 | ColorListItem *item = (ColorListItem *) m_color_list-> item ( m_color_list-> currentItem ( )); |
405 | 405 | ||
406 | if ( item ) | 406 | if ( item ) |
407 | item-> save ( config ); | 407 | item-> save ( config ); |
408 | } | 408 | } |
409 | 409 | ||
410 | config. write ( ); // need to flush the config info first | 410 | config. write ( ); // need to flush the config info first |
411 | Global::applyStyle ( ); | 411 | Global::applyStyle ( ); |
412 | 412 | ||
413 | if ( QMessageBox::warning ( this, tr( "Restart" ), tr( "Do you want to restart Opie now?" ), tr( "Yes" ), tr( "No" ), 0, 0, 1 ) == 0 ) { | 413 | if ( QMessageBox::warning ( this, tr( "Restart" ), tr( "Do you want to restart Opie now?" ), tr( "Yes" ), tr( "No" ), 0, 0, 1 ) == 0 ) { |
414 | QCopEnvelope e( "QPE/System", "restart()" ); | 414 | QCopEnvelope e( "QPE/System", "restart()" ); |
415 | } | 415 | } |
416 | 416 | ||
417 | QDialog::accept ( ); | 417 | QDialog::accept ( ); |
418 | } | 418 | } |
419 | 419 | ||
420 | void Appearance::done ( int r ) | 420 | void Appearance::done ( int r ) |
421 | { | 421 | { |
422 | QDialog::done ( r ); | 422 | QDialog::done ( r ); |
423 | close ( ); | 423 | close ( ); |
424 | } | 424 | } |
425 | 425 | ||
426 | 426 | ||
427 | void Appearance::styleClicked ( int index ) | 427 | void Appearance::styleClicked ( int index ) |
428 | { | 428 | { |
429 | StyleListItem *sli = (StyleListItem *) m_style_list-> item ( index ); | 429 | StyleListItem *sli = (StyleListItem *) m_style_list-> item ( index ); |
430 | m_style_settings-> setEnabled ( sli ? sli-> hasSettings ( ) : false ); | 430 | m_style_settings-> setEnabled ( sli ? sli-> hasSettings ( ) : false ); |
431 | 431 | ||
432 | if ( m_sample && sli && sli-> style ( )) | 432 | if ( m_sample && sli && sli-> style ( )) |
433 | m_sample-> setStyle2 ( sli-> style ( )); | 433 | m_sample-> setStyle2 ( sli-> style ( )); |
434 | 434 | ||
435 | m_style_changed |= ( index != m_original_style ); | 435 | m_style_changed |= ( index != m_original_style ); |
436 | } | 436 | } |
437 | 437 | ||
438 | void Appearance::styleSettingsClicked ( ) | 438 | void Appearance::styleSettingsClicked ( ) |
439 | { | 439 | { |
440 | StyleListItem *item = (StyleListItem *) m_style_list-> item ( m_style_list-> currentItem ( )); | 440 | StyleListItem *item = (StyleListItem *) m_style_list-> item ( m_style_list-> currentItem ( )); |
441 | 441 | ||
442 | if ( item && item-> hasSettings ( )) { | 442 | if ( item && item-> hasSettings ( )) { |
443 | QDialog *d = new QDialog ( this, "SETTINGS-DLG", true ); | 443 | QDialog *d = new QDialog ( this, "SETTINGS-DLG", true ); |
444 | QVBoxLayout *vbox = new QVBoxLayout ( d, 4, 0 ); | 444 | QVBoxLayout *vbox = new QVBoxLayout ( d, 4, 0 ); |
445 | 445 | ||
446 | QWidget *w = item-> settings ( d ); | 446 | QWidget *w = item-> settings ( d ); |
447 | 447 | ||
448 | if ( w ) { | 448 | if ( w ) { |
449 | vbox-> addWidget ( w ); | 449 | vbox-> addWidget ( w ); |
450 | 450 | ||
451 | d-> setCaption ( w-> caption ( )); | 451 | d-> setCaption ( w-> caption ( )); |
452 | 452 | ||
453 | d-> showMaximized ( ); | 453 | d-> showMaximized ( ); |
454 | bool accepted = ( d-> exec ( ) == QDialog::Accepted ); | 454 | bool accepted = ( d-> exec ( ) == QDialog::Accepted ); |
455 | 455 | ||
456 | if ( item-> setSettings ( accepted )) | 456 | if ( item-> setSettings ( accepted )) |
457 | m_style_changed = true; | 457 | m_style_changed = true; |
458 | } | 458 | } |
459 | delete d; | 459 | delete d; |
460 | } | 460 | } |
461 | } | 461 | } |
462 | 462 | ||
463 | void Appearance::decoClicked ( int index ) | 463 | void Appearance::decoClicked ( int index ) |
464 | { | 464 | { |
465 | DecoListItem *dli = (DecoListItem *) m_deco_list-> item ( index ); | 465 | DecoListItem *dli = (DecoListItem *) m_deco_list-> item ( index ); |
466 | 466 | ||
467 | if ( m_sample ) { | 467 | if ( m_sample ) { |
468 | if ( dli && dli-> interface ( )) | 468 | if ( dli && dli-> interface ( )) |
469 | m_sample-> setDecoration ( dli-> interface ( )); | 469 | m_sample-> setDecoration ( dli-> interface ( )); |
470 | else | 470 | else |
471 | m_sample-> setDecoration ( new DefaultWindowDecoration ( )); | 471 | m_sample-> setDecoration ( new DefaultWindowDecoration ( )); |
472 | } | 472 | } |
473 | m_deco_changed |= ( index != m_original_deco ); | 473 | m_deco_changed |= ( index != m_original_deco ); |
474 | } | 474 | } |
475 | 475 | ||
476 | void Appearance::fontClicked ( const QFont &f ) | 476 | void Appearance::fontClicked ( const QFont &f ) |
477 | { | 477 | { |
478 | m_font_changed |= ( f != m_sample-> font ( )); | 478 | m_font_changed |= ( f != m_sample-> font ( )); |
479 | m_sample-> setFont ( f ); | 479 | m_sample-> setFont ( f ); |
480 | } | 480 | } |
481 | 481 | ||
482 | void Appearance::colorClicked ( int index ) | 482 | void Appearance::colorClicked ( int index ) |
483 | { | 483 | { |
484 | ColorListItem *item = (ColorListItem *) m_color_list-> item ( index ); | 484 | ColorListItem *item = (ColorListItem *) m_color_list-> item ( index ); |
485 | 485 | ||
486 | if ( item ) | 486 | if ( item ) |
487 | m_sample-> setPalette ( item-> palette ( )); | 487 | m_sample-> setPalette ( item-> palette ( )); |
488 | 488 | ||
489 | m_color_changed |= ( item-> palette ( ) != qApp-> palette ( )); | 489 | m_color_changed |= ( item-> palette ( ) != qApp-> palette ( )); |
490 | } | 490 | } |
491 | 491 | ||