-rw-r--r-- | noncore/multimedia/opieplayer2/skin.cpp | 27 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/skin.h | 12 |
2 files changed, 35 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/skin.cpp b/noncore/multimedia/opieplayer2/skin.cpp index fb1c9c4..7d05d80 100644 --- a/noncore/multimedia/opieplayer2/skin.cpp +++ b/noncore/multimedia/opieplayer2/skin.cpp | |||
@@ -9,26 +9,45 @@ Skin::Skin( const QString &name, const QString &fileNameInfix ) | |||
9 | m_skinPath = "opieplayer2/skins/" + name; | 9 | m_skinPath = "opieplayer2/skins/" + name; |
10 | } | 10 | } |
11 | 11 | ||
12 | void Skin::preload( const MediaWidget::SkinButtonInfo *skinButtonInfo, uint buttonCount ) | ||
13 | { | ||
14 | backgroundImage(); | ||
15 | buttonUpImage(); | ||
16 | buttonDownImage(); | ||
17 | for ( uint i = 0; i < buttonCount; ++i ) | ||
18 | ( void )buttonMaskImage( skinButtonInfo[ i ].fileName ); | ||
19 | } | ||
20 | |||
12 | QImage Skin::backgroundImage() const | 21 | QImage Skin::backgroundImage() const |
13 | { | 22 | { |
14 | return QImage( Resource::findPixmap( QString( "%1/background" ).arg( m_skinPath ) ) ); | 23 | if ( m_backgroundImage.isNull() ) |
24 | m_backgroundImage = QImage( Resource::findPixmap( QString( "%1/background" ).arg( m_skinPath ) ) ); | ||
25 | return m_backgroundImage; | ||
15 | } | 26 | } |
16 | 27 | ||
17 | QImage Skin::buttonUpImage() const | 28 | QImage Skin::buttonUpImage() const |
18 | { | 29 | { |
19 | return QImage( Resource::findPixmap( QString( "%1/skin%2_up" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | 30 | if ( m_buttonUpImage.isNull() ) |
31 | m_buttonUpImage = QImage( Resource::findPixmap( QString( "%1/skin%2_up" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | ||
32 | return m_buttonUpImage; | ||
20 | } | 33 | } |
21 | 34 | ||
22 | QImage Skin::buttonDownImage() const | 35 | QImage Skin::buttonDownImage() const |
23 | { | 36 | { |
24 | return QImage( Resource::findPixmap( QString( "%1/skin%2_down" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | 37 | if ( m_buttonDownImage.isNull() ) |
38 | m_buttonDownImage = QImage( Resource::findPixmap( QString( "%1/skin%2_down" ).arg( m_skinPath ).arg( m_fileNameInfix ) ) ); | ||
39 | return m_buttonDownImage; | ||
25 | } | 40 | } |
26 | 41 | ||
27 | QImage Skin::buttonMaskImage( const QString &fileName ) const | 42 | QImage Skin::buttonMaskImage( const QString &fileName ) const |
28 | { | 43 | { |
44 | ButtonMaskImageMap::Iterator it = m_buttonMasks.find( fileName ); | ||
45 | if ( it == m_buttonMasks.end() ) { | ||
29 | QString prefix = m_skinPath + QString::fromLatin1( "/skin%1_mask_" ).arg( m_fileNameInfix ); | 46 | QString prefix = m_skinPath + QString::fromLatin1( "/skin%1_mask_" ).arg( m_fileNameInfix ); |
30 | QString path = prefix + fileName + ".png"; | 47 | QString path = prefix + fileName + ".png"; |
31 | return QImage( Resource::findPixmap( path ) ); | 48 | it = m_buttonMasks.insert( fileName, QImage( Resource::findPixmap( path ) ) ); |
49 | } | ||
50 | return *it; | ||
32 | } | 51 | } |
33 | 52 | ||
34 | /* vim: et sw=4 ts=4 | 53 | /* vim: et sw=4 ts=4 |
diff --git a/noncore/multimedia/opieplayer2/skin.h b/noncore/multimedia/opieplayer2/skin.h index f160b3c..9276a5b 100644 --- a/noncore/multimedia/opieplayer2/skin.h +++ b/noncore/multimedia/opieplayer2/skin.h | |||
@@ -3,12 +3,17 @@ | |||
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qimage.h> | 5 | #include <qimage.h> |
6 | #include <qmap.h> | ||
7 | |||
8 | #include "mediawidget.h" | ||
6 | 9 | ||
7 | class Skin | 10 | class Skin |
8 | { | 11 | { |
9 | public: | 12 | public: |
10 | Skin( const QString &name, const QString &fileNameInfix ); | 13 | Skin( const QString &name, const QString &fileNameInfix ); |
11 | 14 | ||
15 | void preload( const MediaWidget::SkinButtonInfo *skinButtonInfo, uint buttonCount ); | ||
16 | |||
12 | QImage backgroundImage() const; | 17 | QImage backgroundImage() const; |
13 | QImage buttonUpImage() const; | 18 | QImage buttonUpImage() const; |
14 | QImage buttonDownImage() const; | 19 | QImage buttonDownImage() const; |
@@ -20,6 +25,13 @@ private: | |||
20 | QString m_fileNameInfix; | 25 | QString m_fileNameInfix; |
21 | QString m_skinPath; | 26 | QString m_skinPath; |
22 | 27 | ||
28 | typedef QMap<QString, QImage> ButtonMaskImageMap; | ||
29 | |||
30 | mutable QImage m_backgroundImage; | ||
31 | mutable QImage m_buttonUpImage; | ||
32 | mutable QImage m_buttonDownImage; | ||
33 | mutable ButtonMaskImageMap m_buttonMasks; | ||
34 | |||
23 | Skin( const Skin & ); | 35 | Skin( const Skin & ); |
24 | Skin &operator=( const Skin & ); | 36 | Skin &operator=( const Skin & ); |
25 | }; | 37 | }; |