summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/liquid.cpp5
-rw-r--r--noncore/styles/liquid/liquid.pro2
-rw-r--r--noncore/styles/liquid/liquiddeco.cpp183
-rw-r--r--noncore/styles/liquid/liquiddeco.h41
4 files changed, 231 insertions, 0 deletions
diff --git a/noncore/styles/liquid/liquid.cpp b/noncore/styles/liquid/liquid.cpp
index 2b6eaa4..9a7d2dd 100644
--- a/noncore/styles/liquid/liquid.cpp
+++ b/noncore/styles/liquid/liquid.cpp
@@ -1,108 +1,109 @@
1/*- 1/*-
2 * Copyright (C)QPL 2001 Daniel M. Duley. All rights reserved. 2 * Copyright (C)QPL 2001 Daniel M. Duley. All rights reserved.
3 */ 3 */
4 4
5 5
6 6
7#ifndef INCLUDE_MENUITEM_DEF 7#ifndef INCLUDE_MENUITEM_DEF
8#define INCLUDE_MENUITEM_DEF 8#define INCLUDE_MENUITEM_DEF
9#endif 9#endif
10 10
11#include <qmenudata.h> 11#include <qmenudata.h>
12#include "liquid.h" 12#include "liquid.h"
13#include "liquiddeco.h"
13#include <qapplication.h> 14#include <qapplication.h>
14#include <qpe/config.h> 15#include <qpe/config.h>
15#include "effects.h" 16#include "effects.h"
16#include <qpalette.h> 17#include <qpalette.h>
17#include <qbitmap.h> 18#include <qbitmap.h>
18#include <qtabbar.h> 19#include <qtabbar.h>
19#include <qpopupmenu.h> 20#include <qpopupmenu.h>
20#include <qobjectlist.h> 21#include <qobjectlist.h>
21#include <qimage.h> 22#include <qimage.h>
22#include <qtimer.h> 23#include <qtimer.h>
23#include <qpixmapcache.h> 24#include <qpixmapcache.h>
24#include <qradiobutton.h> 25#include <qradiobutton.h>
25#include <qcombobox.h> 26#include <qcombobox.h>
26#include <qdrawutil.h> 27#include <qdrawutil.h>
27#include <qwidgetlist.h> 28#include <qwidgetlist.h>
28#include <qtoolbutton.h> 29#include <qtoolbutton.h>
29#include <qheader.h> 30#include <qheader.h>
30#include <unistd.h> 31#include <unistd.h>
31#include <qmenubar.h> 32#include <qmenubar.h>
32 33
33 34
34#include <stdio.h> 35#include <stdio.h>
35 36
36#include "htmlmasks.h" 37#include "htmlmasks.h"
37#include "embeddata.h" 38#include "embeddata.h"
38 39
39typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *, 40typedef void (QStyle::*QDrawMenuBarItemImpl) (QPainter *, int, int, int, int, QMenuItem *,
40 QColorGroup &, bool, bool); 41 QColorGroup &, bool, bool);
41 42
42QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl); 43QDrawMenuBarItemImpl qt_set_draw_menu_bar_impl(QDrawMenuBarItemImpl impl);
43 44
44void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color) 45void TransMenuHandler::stripePixmap(QPixmap &pix, const QColor &color)
45{ 46{
46 QImage img(pix.convertToImage()); 47 QImage img(pix.convertToImage());
47 QImageEffect::fade(img, 0.9, color); 48 QImageEffect::fade(img, 0.9, color);
48 int x, y; 49 int x, y;
49 int r, g, b; 50 int r, g, b;
50 for(y=0; y < img.height(); y+=3){ 51 for(y=0; y < img.height(); y+=3){
51 unsigned int *data = (unsigned int *) img.scanLine(y); 52 unsigned int *data = (unsigned int *) img.scanLine(y);
52 for(x=0; x < img.width(); ++x){ 53 for(x=0; x < img.width(); ++x){
53 r = qRed(data[x]); 54 r = qRed(data[x]);
54 g = qGreen(data[x]); 55 g = qGreen(data[x]);
55 b = qBlue(data[x]); 56 b = qBlue(data[x]);
56 if(r-10) 57 if(r-10)
57 r-=10; 58 r-=10;
58 if(g-10) 59 if(g-10)
59 g-=10; 60 g-=10;
60 if(b-10) 61 if(b-10)
61 b-=10; 62 b-=10;
62 data[x] = qRgb(r, g, b); 63 data[x] = qRgb(r, g, b);
63 } 64 }
64 } 65 }
65 pix.convertFromImage(img); 66 pix.convertFromImage(img);
66} 67}
67 68
68TransMenuHandler::TransMenuHandler(QObject *parent) 69TransMenuHandler::TransMenuHandler(QObject *parent)
69 : QObject(parent) 70 : QObject(parent)
70{ 71{
71 pixDict.setAutoDelete(true); 72 pixDict.setAutoDelete(true);
72 reloadSettings(); 73 reloadSettings();
73} 74}
74 75
75void TransMenuHandler::reloadSettings() 76void TransMenuHandler::reloadSettings()
76{ 77{
77 pixDict.clear(); 78 pixDict.clear();
78 79
79 Config config ( "qpe" ); 80 Config config ( "qpe" );
80 config. setGroup ( "MosfetMenus" ); 81 config. setGroup ( "MosfetMenus" );
81 82
82 type = config. readNumEntry("Type", TransStippleBg); 83 type = config. readNumEntry("Type", TransStippleBg);
83 color = QColor ( config. readEntry("Color", QApplication::palette().active().button().name())); 84 color = QColor ( config. readEntry("Color", QApplication::palette().active().button().name()));
84 fgColor = QColor ( config. readEntry("TextColor", QApplication::palette().active().text().name())); 85 fgColor = QColor ( config. readEntry("TextColor", QApplication::palette().active().text().name()));
85 opacity = config. readNumEntry("Opacity", 10); 86 opacity = config. readNumEntry("Opacity", 10);
86 if ( opacity < -20 ) 87 if ( opacity < -20 )
87 opacity = 20; 88 opacity = 20;
88 else if ( opacity > 20 ) 89 else if ( opacity > 20 )
89 opacity = 20; 90 opacity = 20;
90 91
91 shadowText = config. readBoolEntry("ShadowText", true); 92 shadowText = config. readBoolEntry("ShadowText", true);
92} 93}
93 94
94bool TransMenuHandler::eventFilter(QObject *obj, QEvent *ev) 95bool TransMenuHandler::eventFilter(QObject *obj, QEvent *ev)
95{ 96{
96 QWidget *p = (QWidget *)obj; 97 QWidget *p = (QWidget *)obj;
97 98
98 if(ev->type() == QEvent::Show){ 99 if(ev->type() == QEvent::Show){
99 if(type == TransStippleBg || type == TransStippleBtn || 100 if(type == TransStippleBg || type == TransStippleBtn ||
100 type == Custom){ 101 type == Custom){
101 QApplication::syncX(); 102 QApplication::syncX();
102 QPixmap *pix = new QPixmap; 103 QPixmap *pix = new QPixmap;
103 if(p->testWFlags(Qt::WType_Popup)){ 104 if(p->testWFlags(Qt::WType_Popup)){
104 QRect r(p->x(), p->y(), p->width(), p->height()); 105 QRect r(p->x(), p->y(), p->width(), p->height());
105 QRect deskR = QApplication::desktop()->rect(); 106 QRect deskR = QApplication::desktop()->rect();
106 if(r.right() > deskR.right() || r.bottom() > deskR.bottom()){ 107 if(r.right() > deskR.right() || r.bottom() > deskR.bottom()){
107 r.setBottom(deskR.bottom()); 108 r.setBottom(deskR.bottom());
108 r.setRight(deskR.right()); 109 r.setRight(deskR.right());
@@ -894,201 +895,205 @@ void LiquidStyle::polish(QWidget *w)
894 895
895 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())-> 896 if(w->parent() && w->parent()->isWidgetType() && !((QWidget*)w->parent())->
896 palette().active().brush(QColorGroup::Background).pixmap()){ 897 palette().active().brush(QColorGroup::Background).pixmap()){
897 qWarning("No parent pixmap for child widget %s", w->className()); 898 qWarning("No parent pixmap for child widget %s", w->className());
898 return; 899 return;
899 } 900 }
900 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) && 901 if(!isViewport && !isViewportChild && !w->testWFlags(WType_Popup) &&
901 !( !w-> inherits("QLineEdit") && w-> parent() && w-> parent()-> isWidgetType ( ) && w-> parent()-> inherits ( "QMultiLineEdit" ))) { 902 !( !w-> inherits("QLineEdit") && w-> parent() && w-> parent()-> isWidgetType ( ) && w-> parent()-> inherits ( "QMultiLineEdit" ))) {
902 if(w->backgroundMode() == QWidget::PaletteBackground || 903 if(w->backgroundMode() == QWidget::PaletteBackground ||
903 w->backgroundMode() == QWidget::PaletteButton){ 904 w->backgroundMode() == QWidget::PaletteButton){
904 w->setBackgroundMode(QWidget::X11ParentRelative); 905 w->setBackgroundMode(QWidget::X11ParentRelative);
905 } 906 }
906 } 907 }
907 if(w->inherits("QToolBar")){ 908 if(w->inherits("QToolBar")){
908 w->installEventFilter(this); 909 w->installEventFilter(this);
909 w->setBackgroundMode(QWidget::PaletteBackground); 910 w->setBackgroundMode(QWidget::PaletteBackground);
910 return; 911 return;
911 } 912 }
912 913
913} 914}
914 915
915void LiquidStyle::unPolish(QWidget *w) 916void LiquidStyle::unPolish(QWidget *w)
916{ 917{
917 if(w->inherits("QMenuBar")){ 918 if(w->inherits("QMenuBar")){
918 ((QFrame *)w)->setLineWidth(1); 919 ((QFrame *)w)->setLineWidth(1);
919 w->setBackgroundMode(QWidget::PaletteBackground); 920 w->setBackgroundMode(QWidget::PaletteBackground);
920 return; 921 return;
921 } 922 }
922 923
923 if(w->inherits("QPopupMenu")) 924 if(w->inherits("QPopupMenu"))
924 w->setBackgroundMode(QWidget::PaletteButton); 925 w->setBackgroundMode(QWidget::PaletteButton);
925 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) { 926 else if(w-> testWFlags(Qt::WType_Popup) && !w->inherits("QListBox")) {
926 w->removeEventFilter(menuHandler); 927 w->removeEventFilter(menuHandler);
927 } 928 }
928 929
929 if(w->isTopLevel()) 930 if(w->isTopLevel())
930 return; 931 return;
931 932
932 // for viewport children, don't just check for NoBackground.... 933 // for viewport children, don't just check for NoBackground....
933 bool isViewportChild = w->parent() && 934 bool isViewportChild = w->parent() &&
934 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) || 935 ((qstrcmp(w->parent()->name(), "qt_viewport") == 0) ||
935 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0)); 936 (qstrcmp(w->parent()->name(), "qt_clipped_viewport") == 0));
936 937
937 w->setPalette(QApplication::palette()); 938 w->setPalette(QApplication::palette());
938 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){ 939 if(w->backgroundMode() == QWidget::X11ParentRelative || isViewportChild){
939 if(w->inherits("QPushButton")) 940 if(w->inherits("QPushButton"))
940 w->setBackgroundMode(QWidget::PaletteButton); 941 w->setBackgroundMode(QWidget::PaletteButton);
941 else 942 else
942 w->setBackgroundMode(QWidget::PaletteBackground); 943 w->setBackgroundMode(QWidget::PaletteBackground);
943 } 944 }
944 945
945 if(isViewportChild) 946 if(isViewportChild)
946 w->setAutoMask(false); 947 w->setAutoMask(false);
947 948
948 if(w->inherits("QPushButton")){ 949 if(w->inherits("QPushButton")){
949 unapplyCustomAttributes((QPushButton *)w); 950 unapplyCustomAttributes((QPushButton *)w);
950 w->removeEventFilter(this); 951 w->removeEventFilter(this);
951 } 952 }
952/* 953/*
953 if(w->inherits("QPushButton") || w-> inherits("QComboBox")){ 954 if(w->inherits("QPushButton") || w-> inherits("QComboBox")){
954 w-> setBackgroundMode ( PaletteBackground ); 955 w-> setBackgroundMode ( PaletteBackground );
955 } 956 }
956*/ 957*/
957 if(w->inherits("QComboBox") || 958 if(w->inherits("QComboBox") ||
958 w->inherits("QLineEdit") || w->inherits("QRadioButton") || 959 w->inherits("QLineEdit") || w->inherits("QRadioButton") ||
959 w->inherits("QCheckBox") || w->inherits("QScrollBar")) { 960 w->inherits("QCheckBox") || w->inherits("QScrollBar")) {
960 w->removeEventFilter(this); 961 w->removeEventFilter(this);
961 } 962 }
962 if(w->inherits("QButton") || w->inherits("QComboBox")){ 963 if(w->inherits("QButton") || w->inherits("QComboBox")){
963 if(w->parent() && w->parent()->inherits("KHTMLPart")){ 964 if(w->parent() && w->parent()->inherits("KHTMLPart")){
964 w->setAutoMask(false); 965 w->setAutoMask(false);
965 } 966 }
966 } 967 }
967 if(w->inherits("QToolBar")){ 968 if(w->inherits("QToolBar")){
968 w->removeEventFilter(this); 969 w->removeEventFilter(this);
969 w->setBackgroundMode(QWidget::PaletteBackground); 970 w->setBackgroundMode(QWidget::PaletteBackground);
970 return; 971 return;
971 } 972 }
972 if(w->inherits("QHeader")){ 973 if(w->inherits("QHeader")){
973 w->setMouseTracking(false); 974 w->setMouseTracking(false);
974 w->removeEventFilter(this); 975 w->removeEventFilter(this);
975 } 976 }
976} 977}
977 978
978void LiquidStyle::polish(QApplication *app) 979void LiquidStyle::polish(QApplication *app)
979{ 980{
980 981
981 QWindowsStyle::polish(app); 982 QWindowsStyle::polish(app);
982 menuAni = app->isEffectEnabled(UI_AnimateMenu); 983 menuAni = app->isEffectEnabled(UI_AnimateMenu);
983 menuFade = app->isEffectEnabled(UI_FadeMenu); 984 menuFade = app->isEffectEnabled(UI_FadeMenu);
984 if(menuAni) 985 if(menuAni)
985 app->setEffectEnabled(UI_AnimateMenu, false); 986 app->setEffectEnabled(UI_AnimateMenu, false);
986 if(menuFade) 987 if(menuFade)
987 app->setEffectEnabled(UI_FadeMenu, false); 988 app->setEffectEnabled(UI_FadeMenu, false);
988 989
989 qt_set_draw_menu_bar_impl((QDrawMenuBarItemImpl) &LiquidStyle::drawMenuBarItem); 990 qt_set_draw_menu_bar_impl((QDrawMenuBarItemImpl) &LiquidStyle::drawMenuBarItem);
991
992 QApplication::qwsSetDecoration ( new LiquidDecoration ( ));
990} 993}
991 994
992void LiquidStyle::unPolish(QApplication *app) 995void LiquidStyle::unPolish(QApplication *app)
993{ 996{
994 QWindowsStyle::unPolish(app); 997 QWindowsStyle::unPolish(app);
995 app->setEffectEnabled(UI_AnimateMenu, menuAni); 998 app->setEffectEnabled(UI_AnimateMenu, menuAni);
996 app->setEffectEnabled(UI_FadeMenu, menuFade); 999 app->setEffectEnabled(UI_FadeMenu, menuFade);
997 1000
998 qt_set_draw_menu_bar_impl ( 0 ); 1001 qt_set_draw_menu_bar_impl ( 0 );
1002
1003 QApplication::qwsSetDecoration ( new QPEDecoration ( ));
999} 1004}
1000 1005
1001/* 1006/*
1002 * This is a fun method ;-) Here's an overview. KToolBar grabs resize to 1007 * This is a fun method ;-) Here's an overview. KToolBar grabs resize to
1003 * force everything to erase and repaint on resize. This is going away, I'm 1008 * force everything to erase and repaint on resize. This is going away, I'm
1004 * trying to get shaped widgets to work right without masking. QPushButton, 1009 * trying to get shaped widgets to work right without masking. QPushButton,
1005 * QComboBox, and Panel applet handles capture mouse enter and leaves in order 1010 * QComboBox, and Panel applet handles capture mouse enter and leaves in order
1006 * to set the highlightwidget and repaint for mouse hovers. CheckBoxes and 1011 * to set the highlightwidget and repaint for mouse hovers. CheckBoxes and
1007 * RadioButtons need to do this differently. Qt buffers these in pixmaps and 1012 * RadioButtons need to do this differently. Qt buffers these in pixmaps and
1008 * caches them in QPixmapCache, which is bad for doing things like hover 1013 * caches them in QPixmapCache, which is bad for doing things like hover
1009 * because the style methods aren't called in paintEvents if everything 1014 * because the style methods aren't called in paintEvents if everything
1010 * is cached. We use our own Paint event handler instead. Taskbuttons and 1015 * is cached. We use our own Paint event handler instead. Taskbuttons and
1011 * pager buttons draw into a pixmap buffer, so we handle those with palette 1016 * pager buttons draw into a pixmap buffer, so we handle those with palette
1012 * modifications. For QHeader, different header items are actually one widget 1017 * modifications. For QHeader, different header items are actually one widget
1013 * that draws multiple items, so we need to check which ID is hightlighted 1018 * that draws multiple items, so we need to check which ID is hightlighted
1014 * and draw it. Finally, we also check enter and leave events for QLineEdit, 1019 * and draw it. Finally, we also check enter and leave events for QLineEdit,
1015 * since if it's inside a combobox we want to highlight the combobox during 1020 * since if it's inside a combobox we want to highlight the combobox during
1016 * hovering in the edit. 1021 * hovering in the edit.
1017 */ 1022 */
1018bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev) 1023bool LiquidStyle::eventFilter(QObject *obj, QEvent *ev)
1019{ 1024{
1020 if(obj->inherits("QToolBar")){ 1025 if(obj->inherits("QToolBar")){
1021 if(ev->type() == QEvent::Resize){ 1026 if(ev->type() == QEvent::Resize){
1022 const QObjectList *tbChildList = obj->children(); 1027 const QObjectList *tbChildList = obj->children();
1023 QObjectListIt it(*tbChildList); 1028 QObjectListIt it(*tbChildList);
1024 QObject *child; 1029 QObject *child;
1025 while((child = it.current()) != NULL){ 1030 while((child = it.current()) != NULL){
1026 ++it; 1031 ++it;
1027 if(child->isWidgetType()) 1032 if(child->isWidgetType())
1028 ((QWidget *)child)->repaint(true); 1033 ((QWidget *)child)->repaint(true);
1029 } 1034 }
1030 1035
1031 } 1036 }
1032 } 1037 }
1033 else if(obj->inherits("QPushButton") || obj->inherits("QComboBox")){ 1038 else if(obj->inherits("QPushButton") || obj->inherits("QComboBox")){
1034 QWidget *btn = (QWidget *)obj; 1039 QWidget *btn = (QWidget *)obj;
1035 if(ev->type() == QEvent::Enter){ 1040 if(ev->type() == QEvent::Enter){
1036 if(btn->isEnabled()){ 1041 if(btn->isEnabled()){
1037 highlightWidget = btn; 1042 highlightWidget = btn;
1038 btn->repaint(false); 1043 btn->repaint(false);
1039 } 1044 }
1040 } 1045 }
1041 else if(ev->type() == QEvent::Leave){ 1046 else if(ev->type() == QEvent::Leave){
1042 if(btn == highlightWidget){ 1047 if(btn == highlightWidget){
1043 highlightWidget = NULL; 1048 highlightWidget = NULL;
1044 btn->repaint(false); 1049 btn->repaint(false);
1045 } 1050 }
1046 } 1051 }
1047 } 1052 }
1048 else if(obj->inherits("QToolButton")){ 1053 else if(obj->inherits("QToolButton")){
1049 QToolButton *btn = (QToolButton *)btn; 1054 QToolButton *btn = (QToolButton *)btn;
1050 if(!btn->autoRaise()){ 1055 if(!btn->autoRaise()){
1051 if(btn->isEnabled()){ 1056 if(btn->isEnabled()){
1052 highlightWidget = btn; 1057 highlightWidget = btn;
1053 btn->repaint(false); 1058 btn->repaint(false);
1054 } 1059 }
1055 } 1060 }
1056 else if(ev->type() == QEvent::Leave){ 1061 else if(ev->type() == QEvent::Leave){
1057 QWidget *btn = (QWidget *)obj; 1062 QWidget *btn = (QWidget *)obj;
1058 if(btn == highlightWidget){ 1063 if(btn == highlightWidget){
1059 highlightWidget = NULL; 1064 highlightWidget = NULL;
1060 btn->repaint(false); 1065 btn->repaint(false);
1061 } 1066 }
1062 } 1067 }
1063 else 1068 else
1064 highlightWidget = NULL; 1069 highlightWidget = NULL;
1065 } 1070 }
1066 else if(obj->inherits("QScrollBar")){ 1071 else if(obj->inherits("QScrollBar")){
1067 QScrollBar *sb = (QScrollBar *)obj; 1072 QScrollBar *sb = (QScrollBar *)obj;
1068 if(ev->type() == QEvent::Enter){ 1073 if(ev->type() == QEvent::Enter){
1069 if(sb->isEnabled()){ 1074 if(sb->isEnabled()){
1070 highlightWidget = sb; 1075 highlightWidget = sb;
1071 sb->repaint(false); 1076 sb->repaint(false);
1072 } 1077 }
1073 } 1078 }
1074 else if(ev->type() == QEvent::Leave){ 1079 else if(ev->type() == QEvent::Leave){
1075 if(sb == highlightWidget && !sb->draggingSlider()){ 1080 if(sb == highlightWidget && !sb->draggingSlider()){
1076 highlightWidget = NULL; 1081 highlightWidget = NULL;
1077 sb->repaint(false); 1082 sb->repaint(false);
1078 } 1083 }
1079 } 1084 }
1080 else if(ev->type() == QEvent::MouseButtonRelease){ 1085 else if(ev->type() == QEvent::MouseButtonRelease){
1081 QMouseEvent *me = (QMouseEvent *)ev; 1086 QMouseEvent *me = (QMouseEvent *)ev;
1082 if(sb == highlightWidget && !sb->rect().contains(me->pos())){ 1087 if(sb == highlightWidget && !sb->rect().contains(me->pos())){
1083 highlightWidget = NULL; 1088 highlightWidget = NULL;
1084 sb->repaint(false); 1089 sb->repaint(false);
1085 } 1090 }
1086 } 1091 }
1087 } 1092 }
1088 else if(obj->inherits("QLineEdit")){ 1093 else if(obj->inherits("QLineEdit")){
1089 if(obj->parent() && obj->parent()->inherits("QComboBox")){ 1094 if(obj->parent() && obj->parent()->inherits("QComboBox")){
1090 QWidget *btn = (QComboBox *)obj->parent(); 1095 QWidget *btn = (QComboBox *)obj->parent();
1091 if(ev->type() == QEvent::Enter){ 1096 if(ev->type() == QEvent::Enter){
1092 if (btn->isEnabled()){ 1097 if (btn->isEnabled()){
1093 highlightWidget = btn; 1098 highlightWidget = btn;
1094 btn->repaint(false); 1099 btn->repaint(false);
diff --git a/noncore/styles/liquid/liquid.pro b/noncore/styles/liquid/liquid.pro
index 8689d3d..23dce09 100644
--- a/noncore/styles/liquid/liquid.pro
+++ b/noncore/styles/liquid/liquid.pro
@@ -1,28 +1,30 @@
1TEMPLATE = lib 1TEMPLATE = lib
2CONFIG = qt embedded release warn_on 2CONFIG = qt embedded release warn_on
3SOURCES = liquid.cpp \ 3SOURCES = liquid.cpp \
4 liquiddeco.cpp \
4 effects.cpp \ 5 effects.cpp \
5 plugin.cpp 6 plugin.cpp
6 7
7HEADERS = liquid.h \ 8HEADERS = liquid.h \
9 liquiddeco.h \
8 effects.h 10 effects.h
9LIBS += -lqpe 11LIBS += -lqpe
10INCLUDEPATH += $(OPIEDIR)/include 12INCLUDEPATH += $(OPIEDIR)/include
11DESTDIR = $(OPIEDIR)/plugins/styles 13DESTDIR = $(OPIEDIR)/plugins/styles
12TARGET = liquid 14TARGET = liquid
13VERSION = 1.0.0 15VERSION = 1.0.0
14 16
15TRANSLATIONS = ../../../i18n/de/libliquid.ts \ 17TRANSLATIONS = ../../../i18n/de/libliquid.ts \
16 ../../../i18n/en/libliquid.ts \ 18 ../../../i18n/en/libliquid.ts \
17 ../../../i18n/es/libliquid.ts \ 19 ../../../i18n/es/libliquid.ts \
18 ../../../i18n/fr/libliquid.ts \ 20 ../../../i18n/fr/libliquid.ts \
19 ../../../i18n/hu/libliquid.ts \ 21 ../../../i18n/hu/libliquid.ts \
20 ../../../i18n/ja/libliquid.ts \ 22 ../../../i18n/ja/libliquid.ts \
21 ../../../i18n/ko/libliquid.ts \ 23 ../../../i18n/ko/libliquid.ts \
22 ../../../i18n/no/libliquid.ts \ 24 ../../../i18n/no/libliquid.ts \
23 ../../../i18n/pl/libliquid.ts \ 25 ../../../i18n/pl/libliquid.ts \
24 ../../../i18n/pt/libliquid.ts \ 26 ../../../i18n/pt/libliquid.ts \
25 ../../../i18n/pt_BR/libliquid.ts \ 27 ../../../i18n/pt_BR/libliquid.ts \
26 ../../../i18n/sl/libliquid.ts \ 28 ../../../i18n/sl/libliquid.ts \
27 ../../../i18n/zh_CN/libliquid.ts \ 29 ../../../i18n/zh_CN/libliquid.ts \
28 ../../../i18n/zh_TW/libliquid.ts 30 ../../../i18n/zh_TW/libliquid.ts
diff --git a/noncore/styles/liquid/liquiddeco.cpp b/noncore/styles/liquid/liquiddeco.cpp
new file mode 100644
index 0000000..8eee1b1
--- a/dev/null
+++ b/noncore/styles/liquid/liquiddeco.cpp
@@ -0,0 +1,183 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#include <qapplication.h>
22#include <qstyle.h>
23#include <qwidget.h>
24#include <qpainter.h>
25#include <qtimer.h>
26#include <qwhatsthis.h>
27#include <qpe/qcopenvelope_qws.h>
28#include <qpe/qpedecoration_qws.h>
29#include <qdialog.h>
30#include <qdrawutil.h>
31#include <qgfx_qws.h>
32#include <qpe/qpeapplication.h>
33#include <qpe/resource.h>
34#include <qpe/global.h>
35#include <qfile.h>
36#include <qsignal.h>
37
38#include "liquiddeco.h"
39
40#include <stdlib.h>
41
42extern QRect qt_maxWindowRect;
43
44class HackWidget : public QWidget
45{
46public:
47 bool needsOk()
48 {
49 return ( getWState() & WState_Reserved1 );
50 }
51};
52
53
54LiquidDecoration::LiquidDecoration()
55 : QPEDecoration()
56{}
57
58LiquidDecoration::~LiquidDecoration()
59{}
60
61int LiquidDecoration::getTitleHeight( const QWidget * )
62{
63 return 15;
64}
65
66
67void LiquidDecoration::paint( QPainter *painter, const QWidget *widget )
68{
69 int titleWidth = getTitleWidth( widget );
70 int titleHeight = getTitleHeight( widget );
71
72 QRect rect( widget->rect() );
73
74 // Border rect
75 QRect br( rect.left() - BORDER_WIDTH,
76 rect.top() - BORDER_WIDTH - titleHeight,
77 rect.width() + 2 * BORDER_WIDTH,
78 rect.height() + BORDER_WIDTH + BOTTOM_BORDER_WIDTH + titleHeight );
79
80 // title bar rect
81 QRect tr;
82
83 tr = QRect( rect.left(), rect.top() - titleHeight, rect.width(), titleHeight );
84
85 QRegion oldClip = painter->clipRegion();
86 painter->setClipRegion( oldClip - QRegion( tr ) );// reduce flicker
87
88 bool isActive = ( widget == qApp->activeWindow() );
89
90 QColorGroup cg = QApplication::palette().active();
91 if ( isActive )
92 cg. setBrush ( QColorGroup::Button, cg. brush ( QColorGroup::Highlight ) );
93
94 qDrawWinPanel( painter, br.x(), br.y(), br.width(),
95 br.height() - 4, cg, FALSE,
96 &cg.brush( QColorGroup::Background ) );
97
98 painter->setClipRegion( oldClip );
99
100 if ( titleWidth > 0 ) {
101 QBrush titleBrush;
102 QPen titlePen;
103 QPen titleLines;
104 int titleLeft = titleHeight + 4;
105
106 titleLeft = rect.left() + 5;
107 painter->setPen( cg.midlight() );
108 painter->drawLine( rect.left() - BORDER_WIDTH + 2,
109 rect.bottom() + 1, rect.right() + BORDER_WIDTH - 2,
110 rect.bottom() + 1 );
111
112 QRect t ( rect.left() - 2, rect.top() - titleHeight - 2, rect.width() + 3, titleHeight + 2 );
113
114
115
116 QApplication::style().drawBevelButton( painter, t.x(), t.y(), t.width(), t.height(), cg, isActive );
117
118 t.setLeft( t.left() + 4 );
119 t.setRight( t.right() - 2 );
120
121 QFont f( QApplication::font() );
122 f.setWeight( QFont::Bold );
123
124 painter-> setFont( f );
125
126 QColor textcol = cg.color( isActive ? QColorGroup::HighlightedText : QColorGroup::Text );
127 QColor shadecol = ( qGray ( textcol. rgb ( ) ) > 128 ) ? textcol. dark ( 130 ) : textcol.light( 200 );
128
129 if ( textcol == shadecol ) {
130 if ( qGray ( shadecol. rgb ( ) ) < 128 )
131 shadecol = QColor ( 225, 225, 225 );
132 else
133 shadecol = QColor ( 30, 30, 30 );
134 }
135
136 painter-> setPen( shadecol );
137 painter-> drawText( t.x() + 1, t.y() + 1, t.width(), t.height(), Qt::AlignLeft | Qt::AlignVCenter | Qt::SingleLine, widget->caption() );
138 painter-> setPen( textcol );
139 painter-> drawText( t.x(), t.y(), t.width(), t.height(), Qt::AlignLeft | Qt::AlignVCenter | Qt::SingleLine, widget->caption() );
140 }
141
142#ifndef MINIMIZE_HELP_HACK
143 paintButton( painter, widget, ( QWSDecoration::Region ) Help, 0 );
144#endif
145}
146
147void LiquidDecoration::paintButton( QPainter *painter, const QWidget *w,
148 QWSDecoration::Region type, int state )
149{
150 const QColorGroup & cg = w->palette().active();
151
152 QRect brect( region( w, w->rect(), type ).boundingRect() );
153
154 const QImage *img = 0;
155
156 switch ( ( int ) type ) {
157 case Close:
158 img = &imageClose;
159 break;
160 case Minimize:
161 if ( ( ( HackWidget * ) w ) ->needsOk() ||
162 ( w->inherits( "QDialog" ) && !w->inherits( "QMessageBox" ) ) )
163 img = &imageOk;
164 else if ( helpExists )
165 img = &imageHelp;
166 break;
167 case Help:
168 img = &imageHelp;
169 break;
170 default:
171 return ;
172 }
173
174 if ( img ) {
175 if ( ( state & QWSButton::MouseOver ) && ( state & QWSButton::Clicked ) )
176 painter->drawImage( brect.x() + 1, brect.y() + 3, *img );
177 else
178 painter->drawImage( brect.x(), brect.y() + 2, *img );
179 }
180}
181
182
183
diff --git a/noncore/styles/liquid/liquiddeco.h b/noncore/styles/liquid/liquiddeco.h
new file mode 100644
index 0000000..d975fe5
--- a/dev/null
+++ b/noncore/styles/liquid/liquiddeco.h
@@ -0,0 +1,41 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#ifndef OPIE_LIQUIDDECO_H__
21#define OPIE_LIQUIDDECO_H__
22
23#include <qpe/qpedecoration_qws.h>
24
25
26class LiquidDecoration : public QPEDecoration
27{
28public:
29 LiquidDecoration();
30 virtual ~LiquidDecoration();
31
32 virtual void paint(QPainter *, const QWidget *);
33 virtual void paintButton(QPainter *, const QWidget *, Region, int state);
34
35protected:
36 virtual int getTitleHeight(const QWidget *);
37};
38
39
40
41#endif // OPIE_LIQUIDDECO_H__