-rw-r--r-- | noncore/styles/liquid/liquid.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/styles/liquid/liquid.cpp b/noncore/styles/liquid/liquid.cpp index e6d8310..4a65952 100644 --- a/noncore/styles/liquid/liquid.cpp +++ b/noncore/styles/liquid/liquid.cpp | |||
@@ -14,54 +14,56 @@ | |||
14 | #include <qmenudata.h> | 14 | #include <qmenudata.h> |
15 | #include "liquid.h" | 15 | #include "liquid.h" |
16 | //#include "liquiddeco.h" | 16 | //#include "liquiddeco.h" |
17 | #include <qapplication.h> | 17 | #include <qapplication.h> |
18 | #include <qpe/config.h> | 18 | #include <qpe/config.h> |
19 | #include "effects.h" | 19 | #include "effects.h" |
20 | #include <qpalette.h> | 20 | #include <qpalette.h> |
21 | #include <qbitmap.h> | 21 | #include <qbitmap.h> |
22 | #include <qtabbar.h> | 22 | #include <qtabbar.h> |
23 | #include <qpopupmenu.h> | 23 | #include <qpopupmenu.h> |
24 | #include <qobjectlist.h> | 24 | #include <qobjectlist.h> |
25 | #include <qimage.h> | 25 | #include <qimage.h> |
26 | #include <qtimer.h> | 26 | #include <qtimer.h> |
27 | #include <qpixmapcache.h> | 27 | #include <qpixmapcache.h> |
28 | #include <qradiobutton.h> | 28 | #include <qradiobutton.h> |
29 | #include <qcombobox.h> | 29 | #include <qcombobox.h> |
30 | #include <qdrawutil.h> | 30 | #include <qdrawutil.h> |
31 | #include <qwidgetlist.h> | 31 | #include <qwidgetlist.h> |
32 | #include <qtoolbutton.h> | 32 | #include <qtoolbutton.h> |
33 | #include <qheader.h> | 33 | #include <qheader.h> |
34 | #include <unistd.h> | 34 | #include <unistd.h> |
35 | #include <qmenubar.h> | 35 | #include <qmenubar.h> |
36 | #include <qprogressbar.h> | 36 | #include <qprogressbar.h> |
37 | #include <qlineedit.h> | 37 | #include <qlineedit.h> |
38 | #include <qlistbox.h> | ||
38 | 39 | ||
39 | #include <stdio.h> | 40 | #include <stdio.h> |
40 | 41 | ||
41 | #include "htmlmasks.h" | 42 | #include "htmlmasks.h" |
42 | #include "embeddata.h" | 43 | #include "embeddata.h" |
43 | 44 | ||
45 | |||
44 | typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *, | 46 | typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *, |
45 | QColorGroup &, bool, bool); | 47 | QColorGroup &, bool, bool); |
46 | 48 | ||
47 | QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl); | 49 | QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl); |
48 | 50 | ||
49 | void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color) | 51 | void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color) |
50 | { | 52 | { |
51 | QImage img(pix.convertToImage()); | 53 | QImage img(pix.convertToImage()); |
52 | QImageEffect::fade(img, 0.9, color); | 54 | QImageEffect::fade(img, 0.9, color); |
53 | int x, y; | 55 | int x, y; |
54 | int r, g, b; | 56 | int r, g, b; |
55 | for(y=0; y < img.height(); y+=3){ | 57 | for(y=0; y < img.height(); y+=3){ |
56 | unsigned int *data = (unsigned int *) img.scanLine(y); | 58 | unsigned int *data = (unsigned int *) img.scanLine(y); |
57 | for(x=0; x < img.width(); ++x){ | 59 | for(x=0; x < img.width(); ++x){ |
58 | r = qRed(data[x]); | 60 | r = qRed(data[x]); |
59 | g = qGreen(data[x]); | 61 | g = qGreen(data[x]); |
60 | b = qBlue(data[x]); | 62 | b = qBlue(data[x]); |
61 | if(r-10) | 63 | if(r-10) |
62 | r-=10; | 64 | r-=10; |
63 | if(g-10) | 65 | if(g-10) |
64 | g-=10; | 66 | g-=10; |
65 | if(b-10) | 67 | if(b-10) |
66 | b-=10; | 68 | b-=10; |
67 | data[x] = qRgb(r, g, b); | 69 | data[x] = qRgb(r, g, b); |
@@ -1387,49 +1389,50 @@ void LiquidStyle::drawBevelButton(QPainter *p, int x, int y, int w, int h, | |||
1387 | g.button() : isHeaderHover ? g.button().light(110) : | 1389 | g.button() : isHeaderHover ? g.button().light(110) : |
1388 | g.background(), g.background()); | 1390 | g.background(), g.background()); |
1389 | } | 1391 | } |
1390 | else | 1392 | else |
1391 | drawClearBevel(p, x, y, w, h, sunken ? g.button() : g.background(), | 1393 | drawClearBevel(p, x, y, w, h, sunken ? g.button() : g.background(), |
1392 | g.background()); | 1394 | g.background()); |
1393 | } | 1395 | } |
1394 | 1396 | ||
1395 | QRect LiquidStyle::buttonRect(int x, int y, int w, int h) | 1397 | QRect LiquidStyle::buttonRect(int x, int y, int w, int h) |
1396 | { | 1398 | { |
1397 | return(QRect(x+5, y+5, w-10, h-10)); | 1399 | return(QRect(x+5, y+5, w-10, h-10)); |
1398 | } | 1400 | } |
1399 | 1401 | ||
1400 | void LiquidStyle::drawComboButton(QPainter *painter, int x, int y, int w, int h, | 1402 | void LiquidStyle::drawComboButton(QPainter *painter, int x, int y, int w, int h, |
1401 | const QColorGroup &g, bool sunken, | 1403 | const QColorGroup &g, bool sunken, |
1402 | bool edit, bool, const QBrush *) | 1404 | bool edit, bool, const QBrush *) |
1403 | { | 1405 | { |
1404 | bool isActive = false; | 1406 | bool isActive = false; |
1405 | if (( painter->device()->devType() == QInternal::Widget ) && | 1407 | if (( painter->device()->devType() == QInternal::Widget ) && |
1406 | ( | 1408 | ( |
1407 | ( qApp-> focusWidget ( ) == painter-> device ( )) || | 1409 | ( qApp-> focusWidget ( ) == painter-> device ( )) || |
1408 | ( | 1410 | ( |
1409 | edit && | 1411 | edit && |
1410 | ((QWidget *) painter-> device ( ))-> inherits ( "QComboBox" ) && | 1412 | ((QWidget *) painter-> device ( ))-> inherits ( "QComboBox" ) && |
1411 | ( qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->lineEdit ( )) | 1413 | ( qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->lineEdit ( ) || |
1414 | qApp-> focusWidget ( ) == ((QComboBox *) painter->device())->listBox ( )) | ||
1412 | ) | 1415 | ) |
1413 | ) | 1416 | ) |
1414 | ) { | 1417 | ) { |
1415 | isActive = true; | 1418 | isActive = true; |
1416 | } | 1419 | } |
1417 | 1420 | ||
1418 | bool isMasked = false; | 1421 | bool isMasked = false; |
1419 | if(painter->device()->devType() == QInternal::Widget) | 1422 | if(painter->device()->devType() == QInternal::Widget) |
1420 | isMasked = ((QWidget*)painter->device())->autoMask(); | 1423 | isMasked = ((QWidget*)painter->device())->autoMask(); |
1421 | // TODO: Do custom code, don't just call drawRoundButton into a pixmap | 1424 | // TODO: Do custom code, don't just call drawRoundButton into a pixmap |
1422 | QPixmap tmpPix(w, h); | 1425 | QPixmap tmpPix(w, h); |
1423 | QPainter p(&tmpPix); | 1426 | QPainter p(&tmpPix); |
1424 | 1427 | ||
1425 | drawRoundButton(&p, g.button(), g.background(), 0, 0, w, h, false, | 1428 | drawRoundButton(&p, g.button(), g.background(), 0, 0, w, h, false, |
1426 | sunken, false, isMasked); | 1429 | sunken, false, isMasked); |
1427 | if(!isActive){ | 1430 | if(!isActive){ |
1428 | p.setClipRect(0, 0, w-17, h); | 1431 | p.setClipRect(0, 0, w-17, h); |
1429 | drawRoundButton(&p, g.background(), g.background(), 0, 0, w, h, false, | 1432 | drawRoundButton(&p, g.background(), g.background(), 0, 0, w, h, false, |
1430 | sunken, false, isMasked); | 1433 | sunken, false, isMasked); |
1431 | } | 1434 | } |
1432 | p.end(); | 1435 | p.end(); |
1433 | int x2 = x+w-1; | 1436 | int x2 = x+w-1; |
1434 | int y2 = y+h-1; | 1437 | int y2 = y+h-1; |
1435 | int bx2 = btnMaskBmp.width()-1; | 1438 | int bx2 = btnMaskBmp.width()-1; |