-rw-r--r-- | libopie2/opieui/oledbox.cpp | 58 | ||||
-rw-r--r-- | libopie2/opieui/oledbox.h | 95 | ||||
-rw-r--r-- | libopie2/opieui/opieui.pro | 6 |
3 files changed, 106 insertions, 53 deletions
diff --git a/libopie2/opieui/oledbox.cpp b/libopie2/opieui/oledbox.cpp index 52826f1..d18d4b6 100644 --- a/libopie2/opieui/oledbox.cpp +++ b/libopie2/opieui/oledbox.cpp | |||
@@ -1,16 +1,45 @@ | |||
1 | 1 | /* | |
2 | #include <qbitmap.h> | 2 | This file is part of the Opie Project |
3 | #include <qpainter.h> | 3 | =. (C) 2002-2005 the Opie Team <opie-devel@handhelds.org> |
4 | .=l. | ||
5 | .>+-= | ||
6 | _;:, .> :=|. This program is free software; you can | ||
7 | .> <`_, > . <= redistribute it and/or modify it under | ||
8 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
9 | .="- .-=="i, .._ License as published by the Free Software | ||
10 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
11 | ._= =} : or (at your option) any later version. | ||
12 | .%`+i> _;_. | ||
13 | .i_,=:_. -<s. This program is distributed in the hope that | ||
14 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
15 | : .. .:, . . . without even the implied warranty of | ||
16 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
17 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
18 | ..}^=.= = ; Library General Public License for more | ||
19 | ++= -. .` .: details. | ||
20 | : = ...= . :.=- | ||
21 | -. .:....=;==+<; You should have received a copy of the GNU | ||
22 | -_. . . )=. = Library General Public License along with | ||
23 | -- :-=` this library; see the file COPYING.LIB. | ||
24 | If not, write to the Free Software Foundation, | ||
25 | Inc., 59 Temple Place - Suite 330, | ||
26 | Boston, MA 02111-1307, USA. | ||
27 | |||
28 | */ | ||
4 | 29 | ||
5 | #include "oledbox.h" | 30 | #include "oledbox.h" |
6 | 31 | ||
32 | /* QT */ | ||
33 | #include <qbitmap.h> | ||
34 | #include <qpainter.h> | ||
7 | 35 | ||
8 | #ifdef _QTE_IS_TOO_DUMB_TO_DRAW_AN_ARC | 36 | namespace Opie { |
37 | namespace Ui { | ||
9 | 38 | ||
10 | /* XPM */ | 39 | /* XPM */ |
11 | static const char * ledborder_xpm[] = { | 40 | static const char * ledborder_xpm[] = { |
12 | "16 16 11 1", | 41 | "16 16 11 1", |
13 | " c None", | 42 | " c None", |
14 | ".c #626562", | 43 | ".c #626562", |
15 | "+c #7B7D7B", | 44 | "+c #7B7D7B", |
16 | "@c #949594", | 45 | "@c #949594", |
@@ -36,33 +65,28 @@ static const char * ledborder_xpm[] = { | |||
36 | " $$,,' >>>>> ", | 65 | " $$,,' >>>>> ", |
37 | " ,,,''>>>>>>> ", | 66 | " ,,,''>>>>>>> ", |
38 | " ,''>>>>>>> ", | 67 | " ,''>>>>>>> ", |
39 | " '>>>>> "}; | 68 | " '>>>>> "}; |
40 | 69 | ||
41 | 70 | ||
42 | QPixmap *OLedBox::s_border_pix = 0; | 71 | QPixmap *OLedBox::s_border_pix = 0; |
43 | 72 | ||
44 | #endif | ||
45 | |||
46 | |||
47 | OLedBox::OLedBox ( const QColor &col, QWidget *parent, const char *name ) : QWidget ( parent, name ) | 73 | OLedBox::OLedBox ( const QColor &col, QWidget *parent, const char *name ) : QWidget ( parent, name ) |
48 | { | 74 | { |
49 | m_color = col; | 75 | m_color = col; |
50 | m_on = false; | 76 | m_on = false; |
51 | m_readonly = true; | 77 | m_readonly = true; |
52 | 78 | ||
53 | m_pix [ 0 ] = m_pix [ 1 ] = 0; | 79 | m_pix [ 0 ] = m_pix [ 1 ] = 0; |
54 | 80 | ||
55 | setBackgroundMode ( PaletteBackground ); | 81 | setBackgroundMode ( PaletteBackground ); |
56 | 82 | ||
57 | #ifdef _QTE_IS_TOO_DUMB_TO_DRAW_AN_ARC | ||
58 | if ( !s_border_pix ) | 83 | if ( !s_border_pix ) |
59 | s_border_pix = new QPixmap ( ledborder_xpm ); | 84 | s_border_pix = new QPixmap( ledborder_xpm ); |
60 | #endif | ||
61 | } | 85 | } |
62 | 86 | ||
63 | OLedBox::~OLedBox ( ) | 87 | OLedBox::~OLedBox ( ) |
64 | { | 88 | { |
65 | delete m_pix [ 0 ]; | 89 | delete m_pix [ 0 ]; |
66 | delete m_pix [ 1 ]; | 90 | delete m_pix [ 1 ]; |
67 | } | 91 | } |
68 | 92 | ||
@@ -137,19 +161,17 @@ void OLedBox::paintEvent ( QPaintEvent *e ) | |||
137 | } | 161 | } |
138 | if ( !e-> erased ( )) | 162 | if ( !e-> erased ( )) |
139 | erase ( ); | 163 | erase ( ); |
140 | 164 | ||
141 | QPainter p ( this ); | 165 | QPainter p ( this ); |
142 | p. drawPixmap ( 0, 0, *m_pix [ ind ] ); | 166 | p. drawPixmap ( 0, 0, *m_pix [ ind ] ); |
143 | } | 167 | } |
144 | 168 | ||
145 | // From KDE libkdeui / led.cpp | 169 | void OLedBox::drawLed ( QPixmap *pix, const QColor &col ) |
146 | |||
147 | void OLedBox::drawLed ( QPixmap *pix, const QColor &col ) // paint a ROUND SUNKEN led lamp | ||
148 | { | 170 | { |
149 | QPainter paint; | 171 | QPainter paint; |
150 | QColor color; | 172 | QColor color; |
151 | QBrush brush; | 173 | QBrush brush; |
152 | QPen pen; | 174 | QPen pen; |
153 | 175 | ||
154 | pix-> fill ( black ); | 176 | pix-> fill ( black ); |
155 | 177 | ||
@@ -216,21 +238,21 @@ void OLedBox::drawLed ( QPixmap *pix, const QColor &col ) // paint a ROUND SUNK | |||
216 | pos++; | 238 | pos++; |
217 | light_width--; | 239 | light_width--; |
218 | } | 240 | } |
219 | 241 | ||
220 | // Drawing of bright spot finished, now draw a thin border | 242 | // Drawing of bright spot finished, now draw a thin border |
221 | // around the LED which resembles a shadow with light coming | 243 | // around the LED which resembles a shadow with light coming |
222 | // from the upper left. | 244 | // from the upper left. |
223 | 245 | ||
224 | #ifdef _QTE_IS_TOO_DUMB_TO_DRAW_AN_ARC | 246 | #ifndef QT_CAN_DRAW_ARCS |
225 | paint. drawPixmap ( 0, 0, *s_border_pix ); | 247 | paint.drawPixmap ( 0, 0, *s_border_pix ); |
226 | paint. end ( ); | 248 | paint.end ( ); |
227 | 249 | ||
228 | pix-> setMask ( pix-> createHeuristicMask ( )); | 250 | pix->setMask ( pix-> createHeuristicMask ( )); |
229 | 251 | ||
230 | #else | 252 | #else |
231 | pen.setWidth( 3 ); | 253 | pen.setWidth( 3 ); |
232 | brush.setStyle( QBrush::NoBrush ); // Switch off the brush | 254 | brush.setStyle( QBrush::NoBrush ); // Switch off the brush |
233 | paint.setBrush( brush ); // This avoids filling of the ellipse | 255 | paint.setBrush( brush ); // This avoids filling of the ellipse |
234 | 256 | ||
235 | // Set the initial color value to 200 (bright) and start | 257 | // Set the initial color value to 200 (bright) and start |
236 | // drawing the shadow border at 45 (45*16 = 720). | 258 | // drawing the shadow border at 45 (45*16 = 720). |
@@ -270,8 +292,10 @@ void OLedBox::drawLed ( QPixmap *pix, const QColor &col ) // paint a ROUND SUNK | |||
270 | mp. setBrush ( Qt::color1 ); | 292 | mp. setBrush ( Qt::color1 ); |
271 | mp. drawEllipse ( 0, 0, width + 2, width + 2 ); | 293 | mp. drawEllipse ( 0, 0, width + 2, width + 2 ); |
272 | mp. end ( ); | 294 | mp. end ( ); |
273 | 295 | ||
274 | pix-> setMask ( mask ); | 296 | pix-> setMask ( mask ); |
275 | #endif | 297 | #endif |
276 | } | 298 | } |
277 | 299 | ||
300 | }; | ||
301 | }; | ||
diff --git a/libopie2/opieui/oledbox.h b/libopie2/opieui/oledbox.h index dd930bd..c02cc77 100644 --- a/libopie2/opieui/oledbox.h +++ b/libopie2/opieui/oledbox.h | |||
@@ -1,56 +1,85 @@ | |||
1 | #ifndef __OPIE_OLED_H__ | 1 | /* |
2 | #define __OPIE_OLED_H__ | 2 | This file is part of the Opie Project |
3 | =. (C) 2002-2005 the Opie Team <opie-devel@handhelds.org> | ||
4 | .=l. | ||
5 | .>+-= | ||
6 | _;:, .> :=|. This program is free software; you can | ||
7 | .> <`_, > . <= redistribute it and/or modify it under | ||
8 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
9 | .="- .-=="i, .._ License as published by the Free Software | ||
10 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
11 | ._= =} : or (at your option) any later version. | ||
12 | .%`+i> _;_. | ||
13 | .i_,=:_. -<s. This program is distributed in the hope that | ||
14 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
15 | : .. .:, . . . without even the implied warranty of | ||
16 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
17 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
18 | ..}^=.= = ; Library General Public License for more | ||
19 | ++= -. .` .: details. | ||
20 | : = ...= . :.=- | ||
21 | -. .:....=;==+<; You should have received a copy of the GNU | ||
22 | -_. . . )=. = Library General Public License along with | ||
23 | -- :-=` this library; see the file COPYING.LIB. | ||
24 | If not, write to the Free Software Foundation, | ||
25 | Inc., 59 Temple Place - Suite 330, | ||
26 | Boston, MA 02111-1307, USA. | ||
3 | 27 | ||
28 | */ | ||
29 | |||
30 | #ifndef OLEDBOX_H | ||
31 | #define OLEDBOX_H | ||
32 | |||
33 | /* QT */ | ||
4 | #include <qwidget.h> | 34 | #include <qwidget.h> |
5 | #include <qcolor.h> | 35 | #include <qcolor.h> |
6 | 36 | ||
7 | class QPixmap; | 37 | class QPixmap; |
8 | 38 | ||
9 | #define _QTE_IS_TOO_DUMB_TO_DRAW_AN_ARC | 39 | namespace Opie { |
40 | namespace Ui { | ||
10 | 41 | ||
11 | class OLedBox : public QWidget { | 42 | class OLedBox : public QWidget |
12 | Q_OBJECT | 43 | { |
13 | 44 | Q_OBJECT | |
14 | public: | ||
15 | OLedBox ( const QColor &col = red, QWidget *parent = 0, const char *name = 0 ); | ||
16 | virtual ~OLedBox ( ); | ||
17 | 45 | ||
18 | QColor color ( ) const; | 46 | public: |
19 | bool isOn ( ) const; | 47 | OLedBox( const QColor& col = red, QWidget* parent = 0, const char* name = 0 ); |
20 | void setReadOnly( bool R ) | 48 | virtual ~OLedBox(); |
21 | { m_readonly = R; } | ||
22 | inline bool readOnly( void ) const | ||
23 | { return m_readonly; } | ||
24 | |||
25 | virtual QSize sizeHint ( ) const; | ||
26 | 49 | ||
27 | public slots: | 50 | QColor color() const; |
28 | void toggle ( ); | 51 | bool isOn() const; |
29 | void setOn ( bool on ); | 52 | void setReadOnly( bool R ) { m_readonly = R; } |
30 | void setColor ( const QColor &col ); | 53 | bool readOnly( void ) const { return m_readonly; } |
54 | |||
55 | virtual QSize sizeHint() const; | ||
56 | |||
57 | public slots: | ||
58 | void toggle(); | ||
59 | void setOn( bool on ); | ||
60 | void setColor( const QColor& col ); | ||
31 | 61 | ||
32 | signals: | 62 | signals: |
33 | void toggled ( bool ); | 63 | void toggled( bool ); |
34 | 64 | ||
35 | protected: | 65 | protected: |
36 | virtual void paintEvent ( QPaintEvent *e ); | 66 | virtual void paintEvent( QPaintEvent* e ); |
37 | virtual void resizeEvent ( QResizeEvent *e ); | 67 | virtual void resizeEvent( QResizeEvent* e ); |
38 | 68 | ||
39 | virtual void mousePressEvent ( QMouseEvent *e ); | 69 | virtual void mousePressEvent( QMouseEvent* e ); |
40 | 70 | ||
41 | private: | 71 | private: |
42 | void drawLed ( QPixmap *, const QColor &col ); | 72 | void drawLed( QPixmap *, const QColor& col ); |
43 | 73 | ||
44 | private: | 74 | private: |
45 | QPixmap *m_pix [2]; | 75 | QPixmap *m_pix [2]; |
46 | 76 | ||
47 | QColor m_color; | 77 | QColor m_color; |
48 | bool m_on; | 78 | bool m_on; |
49 | bool m_readonly; | 79 | bool m_readonly; |
50 | 80 | ||
51 | #ifdef _QTE_IS_TOO_DUMB_TO_DRAW_AN_ARC | ||
52 | static QPixmap *s_border_pix; | 81 | static QPixmap *s_border_pix; |
53 | #endif | ||
54 | }; | 82 | }; |
55 | 83 | }; | |
84 | }; | ||
56 | #endif | 85 | #endif |
diff --git a/libopie2/opieui/opieui.pro b/libopie2/opieui/opieui.pro index 24157a1..ffa8b83 100644 --- a/libopie2/opieui/opieui.pro +++ b/libopie2/opieui/opieui.pro | |||
@@ -1,59 +1,59 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | DESTDIR = $(OPIEDIR)/lib | 3 | DESTDIR = $(OPIEDIR)/lib |
4 | HEADERS = oclickablelabel.h \ | 4 | HEADERS = oclickablelabel.h \ |
5 | odialog.h \ | 5 | odialog.h \ |
6 | ofontselector.h \ | 6 | ofontselector.h \ |
7 | oimageeffect.h \ | 7 | oimageeffect.h \ |
8 | okeyconfigwidget.h \ | 8 | okeyconfigwidget.h \ |
9 | oledbox.h \ | ||
9 | olistview.h \ | 10 | olistview.h \ |
10 | opixmapeffect.h \ | 11 | opixmapeffect.h \ |
11 | opopupmenu.h \ | 12 | opopupmenu.h \ |
12 | opixmapprovider.h \ | 13 | opixmapprovider.h \ |
13 | oselector.h \ | 14 | oselector.h \ |
14 | oseparator.h \ | 15 | oseparator.h \ |
15 | otabinfo.h \ | 16 | otabinfo.h \ |
16 | otabbar.h \ | 17 | otabbar.h \ |
17 | otabwidget.h \ | 18 | otabwidget.h \ |
18 | oledbox.h \ | ||
19 | otaskbarapplet.h \ | 19 | otaskbarapplet.h \ |
20 | otimepicker.h \ | 20 | otimepicker.h \ |
21 | oversatileview.h \ | 21 | oversatileview.h \ |
22 | oversatileviewitem.h \ | 22 | oversatileviewitem.h \ |
23 | owait.h | 23 | owait.h |
24 | 24 | ||
25 | SOURCES = oclickablelabel.cpp \ | 25 | SOURCES = oclickablelabel.cpp \ |
26 | odialog.cpp \ | 26 | odialog.cpp \ |
27 | ofontselector.cpp \ | 27 | ofontselector.cpp \ |
28 | oimageeffect.cpp \ | 28 | oimageeffect.cpp \ |
29 | okeyconfigwidget.cpp \ | 29 | okeyconfigwidget.cpp \ |
30 | oledbox.cpp \ | ||
30 | olistview.cpp \ | 31 | olistview.cpp \ |
31 | opixmapeffect.cpp \ | 32 | opixmapeffect.cpp \ |
32 | opopupmenu.cpp \ | 33 | opopupmenu.cpp \ |
33 | opixmapprovider.cpp \ | 34 | opixmapprovider.cpp \ |
34 | oselector.cpp \ | 35 | oselector.cpp \ |
35 | oseparator.cpp \ | 36 | oseparator.cpp \ |
36 | otabbar.cpp \ | 37 | otabbar.cpp \ |
37 | otabwidget.cpp \ | 38 | otabwidget.cpp \ |
38 | oledbox.cpp \ | ||
39 | otaskbarapplet.cpp \ | 39 | otaskbarapplet.cpp \ |
40 | otimepicker.cpp \ | 40 | otimepicker.cpp \ |
41 | oversatileview.cpp \ | 41 | oversatileview.cpp \ |
42 | oversatileviewitem.cpp \ | 42 | oversatileviewitem.cpp \ |
43 | owait.cpp | 43 | owait.cpp |
44 | 44 | ||
45 | include( big-screen/big-screen.pro ) | 45 | include( big-screen/big-screen.pro ) |
46 | include( fileselector/fileselector.pro ) | 46 | include( fileselector/fileselector.pro ) |
47 | 47 | ||
48 | INTERFACES = otimepickerbase.ui | 48 | INTERFACES = otimepickerbase.ui |
49 | 49 | ||
50 | TARGET = opieui2 | 50 | TARGET = opieui2 |
51 | VERSION = 1.8.5 | 51 | VERSION = 1.9.0 |
52 | 52 | ||
53 | INCLUDEPATH += $(OPIEDIR)/include | 53 | INCLUDEPATH += $(OPIEDIR)/include |
54 | DEPENDPATH += $(OPIEDIR)/include | 54 | DEPENDPATH += $(OPIEDIR)/include |
55 | 55 | ||
56 | LIBS += -lopiecore2 | 56 | LIBS += -lopiecore2 |
57 | 57 | ||
58 | !contains( platform, x11 ) { | 58 | !contains( platform, x11 ) { |
59 | include( $(OPIEDIR)/include.pro ) | 59 | include( $(OPIEDIR)/include.pro ) |