summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oresource.cpp
Unidiff
Diffstat (limited to 'libopie2/opiecore/oresource.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oresource.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libopie2/opiecore/oresource.cpp b/libopie2/opiecore/oresource.cpp
index 88058d0..0d6e60a 100644
--- a/libopie2/opiecore/oresource.cpp
+++ b/libopie2/opiecore/oresource.cpp
@@ -18,48 +18,51 @@
18    : ..    .:,     . . . without even the implied warranty of 18    : ..    .:,     . . . without even the implied warranty of
19    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 19    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
20  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 20  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
21..}^=.=       =       ; Library General Public License for more 21..}^=.=       =       ; Library General Public License for more
22++=   -.     .`     .: details. 22++=   -.     .`     .: details.
23 :     =  ...= . :.=- 23 :     =  ...= . :.=-
24 -.   .:....=;==+<; You should have received a copy of the GNU 24 -.   .:....=;==+<; You should have received a copy of the GNU
25  -_. . .   )=.  = Library General Public License along with 25  -_. . .   )=.  = Library General Public License along with
26    --        :-=` this library; see the file COPYING.LIB. 26    --        :-=` this library; see the file COPYING.LIB.
27 If not, write to the Free Software Foundation, 27 If not, write to the Free Software Foundation,
28 Inc., 59 Temple Place - Suite 330, 28 Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. 29 Boston, MA 02111-1307, USA.
30*/ 30*/
31 31
32#include <opie2/oapplication.h> 32#include <opie2/oapplication.h>
33#include <opie2/odebug.h> 33#include <opie2/odebug.h>
34 34
35#include <qpe/applnk.h> 35#include <qpe/applnk.h>
36 36
37#include "oresource.h" 37#include "oresource.h"
38 38
39namespace Opie { 39namespace Opie {
40namespace Core { 40namespace Core {
41 41
42static int smallIconSize = -1; // Size of small icons (width & height)
43static int bigIconSize = -1; // Size of large icons (width & height)
44
42QImage OResource::loadImage( const QString &name, Scale scale ) 45QImage OResource::loadImage( const QString &name, Scale scale )
43{ 46{
44 // Load image 47 // Load image
45 QString filename; 48 QString filename;
46 filename.sprintf( "%spics/%s.png", (const char*) oApp->qpeDir(), (const char*) name ); 49 filename.sprintf( "%spics/%s.png", (const char*) oApp->qpeDir(), (const char*) name );
47 QImage image( filename ); 50 QImage image( filename );
48 if ( image.isNull() ) 51 if ( image.isNull() )
49 odebug << "libopie2 OResource: can't find image " << filename << oendl; 52 odebug << "libopie2 OResource: can't find image " << filename << oendl;
50 53
51 // Scale image (if necessary) 54 // Scale image (if necessary)
52 if ( scale == SmallIcon ) 55 if ( scale == SmallIcon )
53 { 56 {
54 // Retrieve size of small icons 57 // Retrieve size of small icons
55 if ( smallIconSize == -1 ) 58 if ( smallIconSize == -1 )
56 smallIconSize = AppLnk::smallIconSize(); 59 smallIconSize = AppLnk::smallIconSize();
57 60
58 // Scale image 61 // Scale image
59 return image.smoothScale( smallIconSize, smallIconSize ); 62 return image.smoothScale( smallIconSize, smallIconSize );
60 } 63 }
61 else if ( scale == BigIcon ) 64 else if ( scale == BigIcon )
62 { 65 {
63 // Retrieve size of big icons 66 // Retrieve size of big icons
64 if ( bigIconSize == -1 ) 67 if ( bigIconSize == -1 )
65 bigIconSize = AppLnk::bigIconSize(); 68 bigIconSize = AppLnk::bigIconSize();