summaryrefslogtreecommitdiff
authorsandman <sandman>2002-09-21 01:31:23 (UTC)
committer sandman <sandman>2002-09-21 01:31:23 (UTC)
commit804a06520928973d706bf827209f8a7625010b7f (patch) (unidiff)
tree06865733a58dbd033747ef6ceca9bd6c51f24455
parent6ae824e5c3a555d5129c68d387094d50276742f4 (diff)
downloadopie-804a06520928973d706bf827209f8a7625010b7f.zip
opie-804a06520928973d706bf827209f8a7625010b7f.tar.gz
opie-804a06520928973d706bf827209f8a7625010b7f.tar.bz2
- disable liquid win decoration - this has to be made a separate plugin
- liquid now uses the polished palette for color values (liquid did parse qpe.conf before -- the new Qt/e patch is needed for this to work) - updated QPL diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/liquid.cpp23
-rw-r--r--noncore/styles/liquid/opie-liquid.diff128
2 files changed, 87 insertions, 64 deletions
diff --git a/noncore/styles/liquid/liquid.cpp b/noncore/styles/liquid/liquid.cpp
index 22bf8af..0d9d259 100644
--- a/noncore/styles/liquid/liquid.cpp
+++ b/noncore/styles/liquid/liquid.cpp
@@ -685,7 +685,6 @@ QPixmap* LiquidStyle::getPixmap(BitmapData item)
685 685
686void LiquidStyle::polish(QPalette &appPal) 686void LiquidStyle::polish(QPalette &appPal)
687{ 687{
688
689 int i; 688 int i;
690 for(i=0; i < BITMAP_ITEMS; ++i){ 689 for(i=0; i < BITMAP_ITEMS; ++i){
691 if(pixmaps[i]){ 690 if(pixmaps[i]){
@@ -718,12 +717,15 @@ void LiquidStyle::polish(QPalette &appPal)
718 else if ( contrast > 10 ) 717 else if ( contrast > 10 )
719 contrast = 10; 718 contrast = 10;
720 719
721 QPalette pal = QApplication::palette(); 720// QPalette pal = QApplication::palette();
722 721
723 // button color stuff 722 // button color stuff
724 config. setGroup ( "Appearance" ); 723 config. setGroup ( "Appearance" );
725 QColor c = QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( ))); 724 QColor c = // QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( )));
726 if ( c == QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( )))) { 725 appPal. color ( QPalette::Active, QColorGroup::Button );
726 if ( c == appPal. color ( QPalette::Active, QColorGroup::Background )
727 //QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( )))
728 ) {
727 // force button color to be different from background 729 // force button color to be different from background
728 QBrush btnBrush(QColor(200, 202, 228)); 730 QBrush btnBrush(QColor(200, 202, 228));
729 appPal.setBrush(QColorGroup::Button, btnBrush); 731 appPal.setBrush(QColorGroup::Button, btnBrush);
@@ -774,7 +776,7 @@ void LiquidStyle::polish(QPalette &appPal)
774 pagerBrush.setPixmap(*pix); 776 pagerBrush.setPixmap(*pix);
775 777
776 // background color stuff 778 // background color stuff
777 c = QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( ))); 779 c = /*QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Background );
778 c.hsv(&bH, &bS, &bV); 780 c.hsv(&bH, &bS, &bV);
779 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV); 781 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV);
780 782
@@ -800,7 +802,7 @@ void LiquidStyle::polish(QPalette &appPal)
800 appPal.setBrush(QColorGroup::Background, bgBrush); 802 appPal.setBrush(QColorGroup::Background, bgBrush);
801 803
802 // lineedits 804 // lineedits
803 c = QColor ( config. readEntry("Base", ( Qt::white). name ( ))); 805 c = /*QColor ( config. readEntry("Base", ( Qt::white). name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Base );
804 QPixmap basePix; 806 QPixmap basePix;
805 basePix.resize(32, 32); 807 basePix.resize(32, 32);
806 basePix.fill(c.rgb()); 808 basePix.fill(c.rgb());
@@ -825,7 +827,6 @@ void LiquidStyle::polish(QPalette &appPal)
825 applyCustomAttributes((QPushButton *)w); 827 applyCustomAttributes((QPushButton *)w);
826 } 828 }
827 } 829 }
828
829} 830}
830 831
831void LiquidStyle::polish(QWidget *w) 832void LiquidStyle::polish(QWidget *w)
@@ -948,7 +949,7 @@ void LiquidStyle::unPolish(QWidget *w)
948 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) || 949 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) ||
949 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0)); 950 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0));
950 951
951 w->setPalette(QApplication::palette()); 952 w->unsetPalette();
952 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){ 953 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){
953 if(w->inherits("QPushButton")) 954 if(w->inherits("QPushButton"))
954 w->setBackgroundMode(QWidget::PaletteButton); 955 w->setBackgroundMode(QWidget::PaletteButton);
@@ -1005,8 +1006,8 @@ void LiquidStyle::polish(QApplication *app)
1005 Config config ( "qpe" ); 1006 Config config ( "qpe" );
1006 config. setGroup ( "Liquid-Style" ); 1007 config. setGroup ( "Liquid-Style" );
1007 1008
1008 if ( config. readBoolEntry ( "WinDecoration", true )) 1009 // if ( config. readBoolEntry ( "WinDecoration", true ))
1009 QApplication::qwsSetDecoration ( new LiquidDecoration ( )); 1010 // QApplication::qwsSetDecoration ( new LiquidDecoration ( ));
1010 1011
1011 flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false ); 1012 flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false );
1012} 1013}
@@ -1019,7 +1020,7 @@ void LiquidStyle::unPolish(QApplication *app)
1019 1020
1020 qt_set_draw_menu_bar_impl ( 0 ); 1021 qt_set_draw_menu_bar_impl ( 0 );
1021 1022
1022 QApplication::qwsSetDecoration ( new QPEDecoration ( )); 1023// QApplication::qwsSetDecoration ( new QPEDecoration ( ));
1023} 1024}
1024 1025
1025/* 1026/*
diff --git a/noncore/styles/liquid/opie-liquid.diff b/noncore/styles/liquid/opie-liquid.diff
index 7dfd868..90ece90 100644
--- a/noncore/styles/liquid/opie-liquid.diff
+++ b/noncore/styles/liquid/opie-liquid.diff
@@ -3,8 +3,8 @@ Features:
3 - Qt-only 3 - Qt-only
4 - works with Qt/E on QPE/OPIE 4 - works with Qt/E on QPE/OPIE
5 5
6 --- -Mon Jul 15 02:34:13 2002 6 --- -Sat Sep 21 05:31:47 2002
7 +++ liquid.hMon Jul 15 01:51:12 2002 7 +++ liquid.hMon Jul 15 02:52:50 2002
8@@ -2,7 +2,7 @@ 8@@ -2,7 +2,7 @@
9 #define LIQUID_STYLE_H 9 #define LIQUID_STYLE_H
10 10
@@ -110,8 +110,8 @@ Features:
110 bool highcolor; 110 bool highcolor;
111 QColorGroup radioOnGrp; 111 QColorGroup radioOnGrp;
112 QWidget *highlightWidget; 112 QWidget *highlightWidget;
113 --- -Mon Jul 15 02:34:13 2002 113 --- -Sat Sep 21 05:31:48 2002
114 +++ liquid.cppMon Jul 15 02:31:59 2002 114 +++ liquid.cppSat Sep 21 05:18:54 2002
115@@ -10,12 +10,10 @@ 115@@ -10,12 +10,10 @@
116 116
117 #include <qmenudata.h> 117 #include <qmenudata.h>
@@ -343,7 +343,15 @@ Features:
343 btnMaskBmp = QBitmap(37, 26, buttonmask_bits, true); 343 btnMaskBmp = QBitmap(37, 26, buttonmask_bits, true);
344 btnMaskBmp.setMask(btnMaskBmp); 344 btnMaskBmp.setMask(btnMaskBmp);
345 htmlBtnMaskBmp = QBitmap(37, 26, htmlbuttonmask_bits, true); 345 htmlBtnMaskBmp = QBitmap(37, 26, htmlbuttonmask_bits, true);
346@@ -730,20 +704,26 @@ 346@@ -711,7 +685,6 @@
347
348 void LiquidStyle::polish(QPalette &appPal)
349 {
350-
351 int i;
352 for(i=0; i < BITMAP_ITEMS; ++i){
353 if(pixmaps[i]){
354@@ -730,20 +703,29 @@
347 } 355 }
348 356
349 loadCustomButtons(); 357 loadCustomButtons();
@@ -356,6 +364,7 @@ Features:
356 364
357- KConfig *config = KGlobal::config(); 365- KConfig *config = KGlobal::config();
358- QString oldGrp = config->group(); 366- QString oldGrp = config->group();
367- QPalette pal = QApplication::palette();
359+ Config config ( "qpe" ); 368+ Config config ( "qpe" );
360+ config. setGroup ( "Liquid-Style" ); 369+ config. setGroup ( "Liquid-Style" );
361 +int contrast = config. readNumEntry ( "StippleContrast", 5 ); 370 +int contrast = config. readNumEntry ( "StippleContrast", 5 );
@@ -364,19 +373,22 @@ Features:
364 +else if ( contrast > 10 ) 373 +else if ( contrast > 10 )
365 + contrast = 10; 374 + contrast = 10;
366+ 375+
367 QPalette pal = QApplication::palette(); 376+// QPalette pal = QApplication::palette();
368 377
369 // button color stuff 378 // button color stuff
370- config->setGroup("General"); 379- config->setGroup("General");
371- QColor c = config->readColorEntry("buttonBackground", &Qt::lightGray); 380- QColor c = config->readColorEntry("buttonBackground", &Qt::lightGray);
372- if(c == config->readColorEntry("background", &Qt::lightGray)){ 381- if(c == config->readColorEntry("background", &Qt::lightGray)){
373+ config. setGroup ( "Appearance" ); 382+ config. setGroup ( "Appearance" );
374 + QColor c = QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( ))); 383+ QColor c = // QColor ( config. readEntry("Button", ( Qt::lightGray ). name ( )));
375+ if ( c == QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( )))) { 384+ appPal. color ( QPalette::Active, QColorGroup::Button );
385+ if ( c == appPal. color ( QPalette::Active, QColorGroup::Background )
386+ //QColor ( config. readEntry ( "background", ( Qt::lightGray ). name ( )))
387+ ) {
376 // force button color to be different from background 388 // force button color to be different from background
377 QBrush btnBrush(QColor(200, 202, 228)); 389 QBrush btnBrush(QColor(200, 202, 228));
378 appPal.setBrush(QColorGroup::Button, btnBrush); 390 appPal.setBrush(QColorGroup::Button, btnBrush);
379@@ -794,15 +774,7 @@ 391@@ -794,15 +776,7 @@
380 pagerBrush.setPixmap(*pix); 392 pagerBrush.setPixmap(*pix);
381 393
382 // background color stuff 394 // background color stuff
@@ -389,11 +401,11 @@ Features:
389- menuBrush.setColor(c); // hack - used for kicker applets 401- menuBrush.setColor(c); // hack - used for kicker applets
390- appPal.setBrush(QColorGroup::Background, menuBrush); 402- appPal.setBrush(QColorGroup::Background, menuBrush);
391- } 403- }
392+ c = QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( ))); 404+ c = /*QColor ( config. readEntry ( "Background", ( Qt::lightGray ).name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Background );
393 c.hsv(&bH, &bS, &bV); 405 c.hsv(&bH, &bS, &bV);
394 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV); 406 c.light(120).hsv(&bHoverH, &bHoverS, &bHoverV);
395 407
396@@ -817,21 +789,18 @@ 408@@ -817,21 +791,18 @@
397 wallPaper.fill(c.rgb()); 409 wallPaper.fill(c.rgb());
398 painter.begin(&wallPaper); 410 painter.begin(&wallPaper);
399 for(i=0; i < 32; i+=4){ 411 for(i=0; i < 32; i+=4){
@@ -414,14 +426,15 @@ Features:
414 426
415 // lineedits 427 // lineedits
416- c = config->readColorEntry("windowBackground", &Qt::white); 428- c = config->readColorEntry("windowBackground", &Qt::white);
417+ c = QColor ( config. readEntry("Base", ( Qt::white). name ( ))); 429+ c = /*QColor ( config. readEntry("Base", ( Qt::white). name ( )));*/ appPal. color ( QPalette::Active, QColorGroup::Base );
418 QPixmap basePix; 430 QPixmap basePix;
419 basePix.resize(32, 32); 431 basePix.resize(32, 32);
420 basePix.fill(c.rgb()); 432 basePix.fill(c.rgb());
421@@ -857,51 +826,39 @@ 433@@ -856,52 +827,39 @@
434 applyCustomAttributes((QPushButton *)w);
422 } 435 }
423 } 436 }
424 437-
425- config->setGroup(oldGrp); 438- config->setGroup(oldGrp);
426 } 439 }
427 440
@@ -487,7 +500,7 @@ Features:
487 w->installEventFilter(this); 500 w->installEventFilter(this);
488 } 501 }
489 if(w->inherits("QLineEdit")){ 502 if(w->inherits("QLineEdit")){
490@@ -913,6 +870,9 @@ 503@@ -913,6 +871,9 @@
491 applyCustomAttributes((QPushButton *)w); 504 applyCustomAttributes((QPushButton *)w);
492 w->installEventFilter(this); 505 w->installEventFilter(this);
493 } 506 }
@@ -497,7 +510,7 @@ Features:
497 510
498 bool isViewport = qstrcmp(w->name(), "qt_viewport") == 0 || 511 bool isViewport = qstrcmp(w->name(), "qt_viewport") == 0 ||
499 qstrcmp(w->name(), "qt_clipped_viewport") == 0; 512 qstrcmp(w->name(), "qt_clipped_viewport") == 0;
500@@ -942,11 +902,14 @@ 513@@ -942,11 +903,14 @@
501 w->setMouseTracking(true); 514 w->setMouseTracking(true);
502 w->installEventFilter(this); 515 w->installEventFilter(this);
503 } 516 }
@@ -514,7 +527,7 @@ Features:
514 527
515 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())-> 528 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())->
516 palette().active().brush(QColorGroup::Background).pixmap()){ 529 palette().active().brush(QColorGroup::Background).pixmap()){
517@@ -954,17 +917,13 @@ 530@@ -954,17 +918,13 @@
518 return; 531 return;
519 } 532 }
520 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) && 533 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) &&
@@ -534,7 +547,7 @@ Features:
534 } 547 }
535 548
536 void LiquidStyle::unPolish(QWidget *w) 549 void LiquidStyle::unPolish(QWidget *w)
537@@ -977,6 +936,9 @@ 550@@ -977,6 +937,9 @@
538 551
539 if(w->inherits("QPopupMenu")) 552 if(w->inherits("QPopupMenu"))
540 w->setBackgroundMode(QWidget::PaletteButton); 553 w->setBackgroundMode(QWidget::PaletteButton);
@@ -544,7 +557,16 @@ Features:
544 557
545 if(w->isTopLevel()) 558 if(w->isTopLevel())
546 return; 559 return;
547@@ -1001,12 +963,14 @@ 560@@ -986,7 +949,7 @@
561 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) ||
562 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0));
563
564- w->setPalette(QApplication::palette());
565+ w->unsetPalette();
566 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){
567 if(w->inherits("QPushButton"))
568 w->setBackgroundMode(QWidget::PaletteButton);
569@@ -1001,12 +964,14 @@
548 unapplyCustomAttributes((QPushButton *)w); 570 unapplyCustomAttributes((QPushButton *)w);
549 w->removeEventFilter(this); 571 w->removeEventFilter(this);
550 } 572 }
@@ -563,7 +585,7 @@ Features:
563 w->removeEventFilter(this); 585 w->removeEventFilter(this);
564 } 586 }
565 if(w->inherits("QButton") || w->inherits("QComboBox")){ 587 if(w->inherits("QButton") || w->inherits("QComboBox")){
566@@ -1014,9 +978,9 @@ 588@@ -1014,9 +979,9 @@
567 w->setAutoMask(false); 589 w->setAutoMask(false);
568 } 590 }
569 } 591 }
@@ -575,7 +597,7 @@ Features:
575 return; 597 return;
576 } 598 }
577 if(w->inherits("QHeader")){ 599 if(w->inherits("QHeader")){
578@@ -1028,20 +992,34 @@ 600@@ -1028,20 +993,34 @@
579 void LiquidStyle::polish(QApplication *app) 601 void LiquidStyle::polish(QApplication *app)
580 { 602 {
581 603
@@ -593,8 +615,8 @@ Features:
593+ Config config ( "qpe" ); 615+ Config config ( "qpe" );
594+ config. setGroup ( "Liquid-Style" ); 616+ config. setGroup ( "Liquid-Style" );
595+ 617+
596 + if ( config. readBoolEntry ( "WinDecoration", true )) 618 +// if ( config. readBoolEntry ( "WinDecoration", true ))
597 + QApplication::qwsSetDecoration ( new LiquidDecoration ( )); 619 +// QApplication::qwsSetDecoration ( new LiquidDecoration ( ));
598 + 620 +
599 +flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false ); 621 +flatTBButtons = config. readBoolEntry ( "FlatToolButtons", false );
600 } 622 }
@@ -608,11 +630,11 @@ Features:
608+ 630+
609+ qt_set_draw_menu_bar_impl ( 0 ); 631+ qt_set_draw_menu_bar_impl ( 0 );
610+ 632+
611+ QApplication::qwsSetDecoration ( new QPEDecoration ( )); 633+// QApplication::qwsSetDecoration ( new QPEDecoration ( ));
612 } 634 }
613 635
614 /* 636 /*
615@@ -1063,7 +1041,7 @@ 637@@ -1063,7 +1042,7 @@
616 */ 638 */
617 bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev) 639 bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev)
618 { 640 {
@@ -621,7 +643,7 @@ Features:
621 if(ev->type() == QEvent::Resize){ 643 if(ev->type() == QEvent::Resize){
622 const QObjectList *tbChildList = obj->children(); 644 const QObjectList *tbChildList = obj->children();
623 QObjectListIt it(*tbChildList); 645 QObjectListIt it(*tbChildList);
624@@ -1076,35 +1054,7 @@ 646@@ -1076,35 +1055,7 @@
625 647
626 } 648 }
627 } 649 }
@@ -658,7 +680,7 @@ Features:
658 QWidget *btn = (QWidget *)obj; 680 QWidget *btn = (QWidget *)obj;
659 if(ev->type() == QEvent::Enter){ 681 if(ev->type() == QEvent::Enter){
660 if(btn->isEnabled()){ 682 if(btn->isEnabled()){
661@@ -1119,20 +1069,7 @@ 683@@ -1119,20 +1070,7 @@
662 } 684 }
663 } 685 }
664 } 686 }
@@ -680,7 +702,7 @@ Features:
680 QToolButton *btn = (QToolButton *)btn; 702 QToolButton *btn = (QToolButton *)btn;
681 if(!btn->autoRaise()){ 703 if(!btn->autoRaise()){
682 if(btn->isEnabled()){ 704 if(btn->isEnabled()){
683@@ -1340,11 +1277,6 @@ 705@@ -1340,11 +1278,6 @@
684 QColorGroup g = btn->colorGroup(); 706 QColorGroup g = btn->colorGroup();
685 707
686 708
@@ -692,7 +714,7 @@ Features:
692 //int dw = buttonDefaultIndicatorWidth(); 714 //int dw = buttonDefaultIndicatorWidth();
693 if(btn->hasFocus() || btn->isDefault()){ 715 if(btn->hasFocus() || btn->isDefault()){
694 QColor c = btn->hasFocus() ? g.button().light(110) : g.background(); 716 QColor c = btn->hasFocus() ? g.button().light(110) : g.background();
695@@ -1596,7 +1528,7 @@ 717@@ -1596,7 +1529,7 @@
696 if(sbBuffer.size() != sb->size()) 718 if(sbBuffer.size() != sb->size())
697 sbBuffer.resize(sb->size()); 719 sbBuffer.resize(sb->size());
698 } 720 }
@@ -701,7 +723,7 @@ Features:
701 addB.setRect( addX,addY,buttonDim,buttonDim ); 723 addB.setRect( addX,addY,buttonDim,buttonDim );
702 if(horiz) 724 if(horiz)
703 subHC.setRect(addX-buttonDim,addY,buttonDim,buttonDim ); 725 subHC.setRect(addX-buttonDim,addY,buttonDim,buttonDim );
704@@ -1624,7 +1556,7 @@ 726@@ -1624,7 +1557,7 @@
705 QPainter painter; 727 QPainter painter;
706 if(!horiz){ 728 if(!horiz){
707 painter.begin(&sbBuffer); 729 painter.begin(&sbBuffer);
@@ -710,7 +732,7 @@ Features:
710 if(sliderR.height() >= 8){ 732 if(sliderR.height() >= 8){
711 painter.drawPixmap(bgR.x()+1, bgR.y(), *vsbSliderFillPix, 0, 0, 733 painter.drawPixmap(bgR.x()+1, bgR.y(), *vsbSliderFillPix, 0, 0,
712 13, 8); 734 13, 8);
713@@ -1690,7 +1622,7 @@ 735@@ -1690,7 +1623,7 @@
714 } 736 }
715 else{ 737 else{
716 painter.begin(&sbBuffer); 738 painter.begin(&sbBuffer);
@@ -719,7 +741,7 @@ Features:
719 if(sliderR.width() >= 8){ 741 if(sliderR.width() >= 8){
720 painter.drawPixmap(bgR.x(), bgR.y()+1, *vsbSliderFillPix, 0, 0, 742 painter.drawPixmap(bgR.x(), bgR.y()+1, *vsbSliderFillPix, 0, 0,
721 8, 13); 743 8, 13);
722@@ -1761,10 +1693,10 @@ 744@@ -1761,10 +1694,10 @@
723 addB.width()-8, addB.height()-8, g, !maxed); 745 addB.width()-8, addB.height()-8, g, !maxed);
724 } 746 }
725 if ( controls & SubLine ) { 747 if ( controls & SubLine ) {
@@ -734,7 +756,7 @@ Features:
734 drawSBButton(p, subHC, g, activeControl == SubLine); 756 drawSBButton(p, subHC, g, activeControl == SubLine);
735 drawArrow( p, horiz ? LeftArrow : UpArrow, 757 drawArrow( p, horiz ? LeftArrow : UpArrow,
736 false, subHC.x()+4, subHC.y()+4, 758 false, subHC.x()+4, subHC.y()+4,
737@@ -1865,8 +1797,8 @@ 759@@ -1865,8 +1798,8 @@
738 else 760 else
739 buttonDim = ( length - b*2 )/2 - 1; 761 buttonDim = ( length - b*2 )/2 - 1;
740 762
@@ -745,7 +767,7 @@ Features:
745 767
746 if ( sb->maxValue() == sb->minValue() ) { 768 if ( sb->maxValue() == sb->minValue() ) {
747 sliderLength = maxLength; 769 sliderLength = maxLength;
748@@ -1914,8 +1846,8 @@ 770@@ -1914,8 +1847,8 @@
749 return(QSize(16, 16)); 771 return(QSize(16, 16));
750 } 772 }
751 773
@@ -756,7 +778,7 @@ Features:
756 bool down, bool) 778 bool down, bool)
757 { 779 {
758 bool isHover = highlightWidget == p->device(); 780 bool isHover = highlightWidget == p->device();
759@@ -1957,8 +1889,8 @@ 781@@ -1957,8 +1890,8 @@
760 return(QSize(20, 22)); 782 return(QSize(20, 22));
761 } 783 }
762 784
@@ -767,7 +789,7 @@ Features:
767 { 789 {
768 bool isHover = highlightWidget == p->device(); 790 bool isHover = highlightWidget == p->device();
769 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget 791 bool isMasked = p->device() && p->device()->devType() == QInternal::Widget
770@@ -1996,8 +1928,8 @@ 792@@ -1996,8 +1929,8 @@
771 } 793 }
772 } 794 }
773 795
@@ -778,7 +800,7 @@ Features:
778 { 800 {
779 // needed for some reason by KHtml, even tho it's all filled ;P 801 // needed for some reason by KHtml, even tho it's all filled ;P
780 p->drawPixmap(x, y, *getPixmap(HTMLCB)->mask()); 802 p->drawPixmap(x, y, *getPixmap(HTMLCB)->mask());
781@@ -2005,18 +1937,17 @@ 803@@ -2005,18 +1938,17 @@
782 } 804 }
783 805
784 void LiquidStyle::drawSlider(QPainter *p, int x, int y, int w, int h, 806 void LiquidStyle::drawSlider(QPainter *p, int x, int y, int w, int h,
@@ -800,7 +822,7 @@ Features:
800 Orientation orient, bool, bool) 822 Orientation orient, bool, bool)
801 { 823 {
802 p->drawPixmap(x, y, orient == Qt::Horizontal ? *getPixmap(HSlider)->mask() : 824 p->drawPixmap(x, y, orient == Qt::Horizontal ? *getPixmap(HSlider)->mask() :
803@@ -2065,203 +1996,26 @@ 825@@ -2065,203 +1997,26 @@
804 p->drawLineSegments(a); 826 p->drawLineSegments(a);
805 } 827 }
806 828
@@ -994,8 +1016,8 @@ Features:
994+ h += 2; 1016+ h += 2;
995 } 1017 }
996-} 1018-}
997-
998 1019
1020-
999-void LiquidStyle::drawKMenuItem(QPainter *p, int x, int y, int w, int h, 1021-void LiquidStyle::drawKMenuItem(QPainter *p, int x, int y, int w, int h,
1000- const QColorGroup &g, bool active, QMenuItem *mi, 1022- const QColorGroup &g, bool active, QMenuItem *mi,
1001- QBrush *) 1023- QBrush *)
@@ -1016,7 +1038,7 @@ Features:
1016 g.background().dark(130); 1038 g.background().dark(130);
1017 } 1039 }
1018 else 1040 else
1019@@ -2300,8 +2054,8 @@ 1041@@ -2300,8 +2055,8 @@
1020 } 1042 }
1021 1043
1022 void LiquidStyle::drawPopupPanel(QPainter *p, int x, int y, int w, int h, 1044 void LiquidStyle::drawPopupPanel(QPainter *p, int x, int y, int w, int h,
@@ -1027,7 +1049,7 @@ Features:
1027 { 1049 {
1028 QColor c; 1050 QColor c;
1029 switch(menuHandler->transType()){ 1051 switch(menuHandler->transType()){
1030@@ -2336,8 +2090,6 @@ 1052@@ -2336,8 +2091,6 @@
1031 1053
1032 maxpmw = QMAX( maxpmw, 20 ); 1054 maxpmw = QMAX( maxpmw, 20 );
1033 1055
@@ -1036,7 +1058,7 @@ Features:
1036 1058
1037 bool dis = !enabled; 1059 bool dis = !enabled;
1038 QColorGroup itemg = dis ? pal.disabled() : pal.active(); 1060 QColorGroup itemg = dis ? pal.disabled() : pal.active();
1039@@ -2363,7 +2115,7 @@ 1061@@ -2363,7 +2116,7 @@
1040 p->fillRect(x, y, w, h, menuBrush); 1062 p->fillRect(x, y, w, h, menuBrush);
1041 } 1063 }
1042 else{ 1064 else{
@@ -1045,7 +1067,7 @@ Features:
1045 if(pix) 1067 if(pix)
1046 p->drawPixmap(x, y, *pix, x, y, w, h); 1068 p->drawPixmap(x, y, *pix, x, y, w, h);
1047 } 1069 }
1048@@ -2508,25 +2260,6 @@ 1070@@ -2508,25 +2261,6 @@
1049 return h; 1071 return h;
1050 } 1072 }
1051 1073
@@ -1071,7 +1093,7 @@ Features:
1071 1093
1072 void LiquidStyle::drawFocusRect(QPainter *p, const QRect &r, 1094 void LiquidStyle::drawFocusRect(QPainter *p, const QRect &r,
1073 const QColorGroup &g, const QColor *c, 1095 const QColorGroup &g, const QColor *c,
1074@@ -2540,25 +2273,25 @@ 1096@@ -2540,25 +2274,25 @@
1075 return; 1097 return;
1076 } 1098 }
1077 else{ 1099 else{
@@ -1101,7 +1123,7 @@ Features:
1101 return; 1123 return;
1102 } 1124 }
1103 QPixmap tilePix; 1125 QPixmap tilePix;
1104@@ -2671,7 +2404,7 @@ 1126@@ -2671,7 +2405,7 @@
1105 vFrame = 8; // was 10 1127 vFrame = 8; // was 10
1106 } 1128 }
1107 else 1129 else
@@ -1110,7 +1132,7 @@ Features:
1110 } 1132 }
1111 1133
1112 1134
1113@@ -2699,7 +2432,7 @@ 1135@@ -2699,7 +2433,7 @@
1114 p->drawLine(x+1, y+1, x+1, y2-1); 1136 p->drawLine(x+1, y+1, x+1, y2-1);
1115 } 1137 }
1116 else if(lineWidth != 2 || !sunken) 1138 else if(lineWidth != 2 || !sunken)
@@ -1119,7 +1141,7 @@ Features:
1119 else{ 1141 else{
1120 QPen oldPen = p->pen(); 1142 QPen oldPen = p->pen();
1121 int x2 = x+w-1; 1143 int x2 = x+w-1;
1122@@ -2726,105 +2459,6 @@ 1144@@ -2726,105 +2460,6 @@
1123 } 1145 }
1124 } 1146 }
1125 1147
@@ -1225,7 +1247,7 @@ Features:
1225 1247
1226 void LiquidStyle::adjustHSV(QPixmap &pix, int h, int s, int v) 1248 void LiquidStyle::adjustHSV(QPixmap &pix, int h, int s, int v)
1227 { 1249 {
1228@@ -2998,22 +2632,22 @@ 1250@@ -2998,22 +2633,22 @@
1229 customBtnIconList.clear(); 1251 customBtnIconList.clear();
1230 customBtnLabelList.clear(); 1252 customBtnLabelList.clear();
1231 1253
@@ -1255,7 +1277,7 @@ Features:
1255 while(labelStr != NULL){ 1277 while(labelStr != NULL){
1256 QColor *c = new QColor; 1278 QColor *c = new QColor;
1257 c->setNamedColor(QString(colorStr)); 1279 c->setNamedColor(QString(colorStr));
1258@@ -3022,7 +2656,7 @@ 1280@@ -3022,7 +2657,7 @@
1259 QString tmpStr(iconStr); 1281 QString tmpStr(iconStr);
1260 if(!tmpStr.isEmpty()){ 1282 if(!tmpStr.isEmpty()){
1261 QPixmap *pixmap = 1283 QPixmap *pixmap =
@@ -1264,7 +1286,7 @@ Features:
1264 if(pixmap->isNull()){ 1286 if(pixmap->isNull()){
1265 delete pixmap; 1287 delete pixmap;
1266 customBtnIconList.append(NULL); 1288 customBtnIconList.append(NULL);
1267@@ -3037,7 +2671,6 @@ 1289@@ -3037,7 +2672,6 @@
1268 colorStr = colorList.next(); 1290 colorStr = colorList.next();
1269 iconStr = iconList.next(); 1291 iconStr = iconList.next();
1270 } 1292 }
@@ -1272,7 +1294,7 @@ Features:
1272 } 1294 }
1273 1295
1274 void LiquidStyle::applyCustomAttributes(QPushButton *btn) 1296 void LiquidStyle::applyCustomAttributes(QPushButton *btn)
1275@@ -3087,7 +2720,7 @@ 1297@@ -3087,7 +2721,7 @@
1276 } 1298 }
1277 } 1299 }
1278 1300
@@ -1281,8 +1303,8 @@ Features:
1281 1303
1282 1304
1283 1305
1284 --- -Mon Jul 15 02:34:13 2002 1306 --- -Sat Sep 21 05:31:48 2002
1285 +++ plugin.cppFri Jul 12 00:41:40 2002 1307 +++ plugin.cppMon Jul 8 02:42:56 2002
1286@@ -1,29 +1,113 @@ 1308@@ -1,29 +1,113 @@
1287 #include "liquid.h" 1309 #include "liquid.h"
1288-#include <klocale.h> 1310-#include <klocale.h>