author | kergoth <kergoth> | 2003-04-24 21:04:40 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-24 21:04:40 (UTC) |
commit | f7ed0f1e02fa05b330d94b2a4928f3e249edb98f (patch) (side-by-side diff) | |
tree | 300a828ddf7f4d8c7441f394c0cd828cd5200be2 | |
parent | b59b200a00486bc68810317eb7f14c565604a475 (diff) | |
download | opie-f7ed0f1e02fa05b330d94b2a4928f3e249edb98f.zip opie-f7ed0f1e02fa05b330d94b2a4928f3e249edb98f.tar.gz opie-f7ed0f1e02fa05b330d94b2a4928f3e249edb98f.tar.bz2 |
Add background to the clock.
-rw-r--r-- | noncore/tools/clock/clock.cpp | 6 | ||||
-rw-r--r-- | noncore/tools/clock/clock.h | 5 | ||||
-rw-r--r-- | pics/clock/bg.png | bin | 0 -> 14019 bytes |
3 files changed, 9 insertions, 2 deletions
diff --git a/noncore/tools/clock/clock.cpp b/noncore/tools/clock/clock.cpp index 74b7147..41c99a8 100644 --- a/noncore/tools/clock/clock.cpp +++ b/noncore/tools/clock/clock.cpp @@ -518,2 +518,6 @@ void Clock::timerEvent( QTimerEvent *e ) +AnalogClock::AnalogClock(QWidget * parent, const char * name) : QFrame( parent, name ), clear(true) +{ + bg = Resource::loadPixmap("clock/bg"); +} @@ -529,2 +533,4 @@ void AnalogClock::drawContents( QPainter *p ) + p->drawPixmap(QPoint(0, 0), bg, r); + if ( r. width ( ) > r. height ( )) diff --git a/noncore/tools/clock/clock.h b/noncore/tools/clock/clock.h index 1e5aa2c..fa12b61 100644 --- a/noncore/tools/clock/clock.h +++ b/noncore/tools/clock/clock.h @@ -24,2 +24,3 @@ #include <qvbox.h> +#include <qpixmap.h> @@ -37,4 +38,3 @@ class AnalogClock : public QFrame public: - AnalogClock( QWidget * parent = 0, const char * name = 0 ) - : QFrame( parent, name ), clear(true) {} + AnalogClock( QWidget * parent = 0, const char * name = 0 ); @@ -49,2 +49,3 @@ private: + QPixmap bg; QTime currTime; diff --git a/pics/clock/bg.png b/pics/clock/bg.png Binary files differnew file mode 100644 index 0000000..0954ca6 --- a/dev/null +++ b/pics/clock/bg.png |