summaryrefslogtreecommitdiff
authordrw <drw>2005-05-20 21:13:18 (UTC)
committer drw <drw>2005-05-20 21:13:18 (UTC)
commit3394f57eac978fa97ad60fb96bebc67b3783cfc6 (patch) (unidiff)
tree2c9678edf7c7cbdd1d484a8dcf8549538f3450e2
parenta83cdcaac26fafa7bc0e816e19ee6127c0103195 (diff)
downloadopie-3394f57eac978fa97ad60fb96bebc67b3783cfc6.zip
opie-3394f57eac978fa97ad60fb96bebc67b3783cfc6.tar.gz
opie-3394f57eac978fa97ad60fb96bebc67b3783cfc6.tar.bz2
Added OResource::findPixmap implementation
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oresource.cpp5
-rw-r--r--libopie2/opiecore/oresource.h11
2 files changed, 16 insertions, 0 deletions
diff --git a/libopie2/opiecore/oresource.cpp b/libopie2/opiecore/oresource.cpp
index 7253d56..95cf8f3 100644
--- a/libopie2/opiecore/oresource.cpp
+++ b/libopie2/opiecore/oresource.cpp
@@ -59,29 +59,34 @@ QImage OResource::loadImage( const QString &name, Scale scale )
59 59
60 // Scale image 60 // Scale image
61 return image.smoothScale( smallIconSize, smallIconSize ); 61 return image.smoothScale( smallIconSize, smallIconSize );
62 } 62 }
63 else if ( scale == BigIcon ) 63 else if ( scale == BigIcon )
64 { 64 {
65 // Retrieve size of big icons 65 // Retrieve size of big icons
66 if ( bigIconSize == -1 ) 66 if ( bigIconSize == -1 )
67 bigIconSize = AppLnk::bigIconSize(); 67 bigIconSize = AppLnk::bigIconSize();
68 68
69 // Scale image 69 // Scale image
70 return image.smoothScale( bigIconSize, bigIconSize ); 70 return image.smoothScale( bigIconSize, bigIconSize );
71 } 71 }
72 else 72 else
73 return image; 73 return image;
74} 74}
75 75
76QPixmap OResource::loadPixmap( const QString &name, Scale scale ) 76QPixmap OResource::loadPixmap( const QString &name, Scale scale )
77{ 77{
78 QPixmap pixmap; 78 QPixmap pixmap;
79 pixmap.convertFromImage( loadImage( name, scale ) ); 79 pixmap.convertFromImage( loadImage( name, scale ) );
80 return pixmap; 80 return pixmap;
81} 81}
82 82
83QString OResource::findPixmap( const QString &name )
84{
85 return Resource::findPixmap( name );
86}
87
83} // namespace Core 88} // namespace Core
84} // namespace Opie 89} // namespace Opie
85 90
86 91
87 92
diff --git a/libopie2/opiecore/oresource.h b/libopie2/opiecore/oresource.h
index 87b2abd..2071b87 100644
--- a/libopie2/opiecore/oresource.h
+++ b/libopie2/opiecore/oresource.h
@@ -61,30 +61,41 @@ class OResource
61 */ 61 */
62 OResource() {} 62 OResource() {}
63 63
64 /** 64 /**
65 * @fn loadImage( const QString &name, Scale scale = NoScale ) 65 * @fn loadImage( const QString &name, Scale scale = NoScale )
66 * @brief Load specified image. 66 * @brief Load specified image.
67 * 67 *
68 * @param name - name of pixmap image to load 68 * @param name - name of pixmap image to load
69 * @param scale - scaling (if any) to preform on image 69 * @param scale - scaling (if any) to preform on image
70 * 70 *
71 * @return QImage containing image loaded (and scaled if appropriate) 71 * @return QImage containing image loaded (and scaled if appropriate)
72 **/ 72 **/
73 static QImage loadImage( const QString &name, Scale scale = NoScale ); 73 static QImage loadImage( const QString &name, Scale scale = NoScale );
74 74
75 /** 75 /**
76 * @fn loadPixmap( const QString &name, Scale scale = NoScale ) 76 * @fn loadPixmap( const QString &name, Scale scale = NoScale )
77 * @brief Load specified image. 77 * @brief Load specified image.
78 * 78 *
79 * @param name - name of pixmap image to load 79 * @param name - name of pixmap image to load
80 * @param scale - scaling (if any) to preform on image 80 * @param scale - scaling (if any) to preform on image
81 * 81 *
82 * @return QPixmap containing image loaded (and scaled if appropriate) 82 * @return QPixmap containing image loaded (and scaled if appropriate)
83 **/ 83 **/
84 static QPixmap loadPixmap( const QString &name, Scale scale = NoScale ); 84 static QPixmap loadPixmap( const QString &name, Scale scale = NoScale );
85
86 /**
87 * @fn findPixmap( const QString &name )
88 * @brief Retrieve fully qualified filename of image.
89 *
90 * @param name - name of pixmap image to retrieve filename of
91 *
92 * @return QString containing fully qualified filename of image
93 * (Null string if image is not found)
94 **/
95 static QString findPixmap( const QString &name );
85}; 96};
86 97
87} // namespace Core 98} // namespace Core
88} // namespace Opie 99} // namespace Opie
89 100
90#endif 101#endif