author | simon <simon> | 2002-12-11 12:10:41 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-11 12:10:41 (UTC) |
commit | 381de1a3cfcc32dd7c0350329413f55dd9de9bb8 (patch) (unidiff) | |
tree | a60ebc3af59e5d7c55c773a10652d86a709dafea | |
parent | 882ddb046c81bdee5eeca59fde7ec458ae522dc7 (diff) | |
download | opie-381de1a3cfcc32dd7c0350329413f55dd9de9bb8.zip opie-381de1a3cfcc32dd7c0350329413f55dd9de9bb8.tar.gz opie-381de1a3cfcc32dd7c0350329413f55dd9de9bb8.tar.bz2 |
- more image loading functionality moved to the Skin class
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.cpp | 4 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/skin.cpp | 10 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/skin.h | 5 |
3 files changed, 17 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/mediawidget.cpp b/noncore/multimedia/opieplayer2/mediawidget.cpp index 617e0fe..2031b4d 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.cpp +++ b/noncore/multimedia/opieplayer2/mediawidget.cpp | |||
@@ -107,4 +107,4 @@ void MediaWidget::loadSkin( const SkinButtonInfo *skinInfo, uint buttonCount, co | |||
107 | backgroundPixmap = skin.backgroundImage(); | 107 | backgroundPixmap = skin.backgroundImage(); |
108 | buttonUpImage = QImage( Resource::loadImage( QString( "%1/skin%2_up" ).arg( skinPath ).arg( fileNameInfix ) ) ); | 108 | buttonUpImage = skin.buttonUpImage(); |
109 | buttonDownImage = QImage( Resource::loadImage( QString( "%1/skin%2_down" ).arg( skinPath ).arg( fileNameInfix ) ) ); | 109 | buttonDownImage = skin.buttonDownImage(); |
110 | 110 | ||
diff --git a/noncore/multimedia/opieplayer2/skin.cpp b/noncore/multimedia/opieplayer2/skin.cpp index 097b29a..352368f 100644 --- a/noncore/multimedia/opieplayer2/skin.cpp +++ b/noncore/multimedia/opieplayer2/skin.cpp | |||
@@ -16,2 +16,12 @@ QImage Skin::backgroundImage() const | |||
16 | 16 | ||
17 | QImage Skin::buttonUpImage() const | ||
18 | { | ||
19 | return QImage( Resource::findPixmap( QString( "%1/skin%2_up" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | ||
20 | } | ||
21 | |||
22 | QImage Skin::buttonDownImage() const | ||
23 | { | ||
24 | return QImage( Resource::findPixmap( QString( "%1/skin%2_down" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | ||
25 | } | ||
26 | |||
17 | /* vim: et sw=4 ts=4 | 27 | /* vim: et sw=4 ts=4 |
diff --git a/noncore/multimedia/opieplayer2/skin.h b/noncore/multimedia/opieplayer2/skin.h index 3c09e43..85f9e57 100644 --- a/noncore/multimedia/opieplayer2/skin.h +++ b/noncore/multimedia/opieplayer2/skin.h | |||
@@ -12,2 +12,4 @@ public: | |||
12 | QImage backgroundImage() const; | 12 | QImage backgroundImage() const; |
13 | QImage buttonUpImage() const; | ||
14 | QImage buttonDownImage() const; | ||
13 | 15 | ||
@@ -17,2 +19,5 @@ private: | |||
17 | QString m_skinPath; | 19 | QString m_skinPath; |
20 | |||
21 | Skin( const Skin & ); | ||
22 | Skin &operator=( const Skin & ); | ||
18 | }; | 23 | }; |