summaryrefslogtreecommitdiff
path: root/core/applets/rotateapplet/rotate.cpp
Unidiff
Diffstat (limited to 'core/applets/rotateapplet/rotate.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/rotateapplet/rotate.cpp54
1 files changed, 27 insertions, 27 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp
index d13c2c0..9abbde8 100644
--- a/core/applets/rotateapplet/rotate.cpp
+++ b/core/applets/rotateapplet/rotate.cpp
@@ -1,28 +1,30 @@
1/* 1/*
2 This file is part of the OPIE Project 2                 This file is part of the Opie Project
3
3 Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org> 4 Copyright (C) 2003 Maximilian Reiss <harlekin@handhelds.org>
4 Copyright (C) 2003 Greg Gilbert <ggilbert@treke.net> 5 Copyright (C) 2003 Greg Gilbert <ggilbert@treke.net>
5               =. Copyright (C) 2004 Michael Lauer <mickey@Vanille.de> 6 Copyright (C) 2004 Michael Lauer <mickey@Vanille.de>
6             .=l. 7 =.
7           .>+-= 8 .=l.
8 _;:,     .>    :=|. This library is free software; you can 9           .>+-=
9.> <,   >  .   <= redistribute it and/or modify it under 10 _;:,     .>    :=|. This program is free software; you can
10:=1 )Y*s>-.--   : the terms of the GNU Library General Public 11.> <`_,   >  .   <= redistribute it and/or modify it under
11.="- .-=="i,     .._ License as published by the Free Software 12 :`=1 )Y*s>-.--   : the terms of the GNU Library General Public
12 - .   .-<_>     .<> Foundation; either version 2 of the License, 13.="- .-=="i,     .._ License as published by the Free Software
13     ._= =}       : or (at your option) any later version. 14 - .   .-<_>     .<> Foundation; either version 2 of the License,
14    .%+i>       _;_. 15     ._= =}       : or (at your option) any later version.
15    .i_,=:_.      -<s. This library is distributed in the hope that 16    .%`+i>       _;_.
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 17    .i_,=:_.      -<s. This program is distributed in the hope that
17    : ..    .:,     . . . without even the implied warranty of 18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
18    =_        +     =;=| MERCHANTABILITY or FITNESS FOR A 19 : ..    .:,     . . . without even the implied warranty of
19  _.=:.       :    :=>: PARTICULAR PURPOSE. See the GNU 20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
20..}^=.=       =       ; Library General Public License for more 21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
21++=   -.     .     .: details. 22..}^=.=       =       ; Library General Public License for more
22 :     =  ...= . :.=- 23++=   -.     .`     .: details.
23 -.   .:....=;==+<; You should have received a copy of the GNU 24 :     =  ...= . :.=-
24  -_. . .   )=.  = Library General Public License along with 25 -.   .:....=;==+<; You should have received a copy of the GNU
25    --        :-= this library; see the file COPYING.LIB. 26  -_. . .   )=.  = Library General Public License along with
27    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 28 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 29 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 30 Boston, MA 02111-1307, USA.
@@ -33,11 +35,12 @@
33/* OPIE */ 35/* OPIE */
34#include <opie2/odebug.h> 36#include <opie2/odebug.h>
35#include <opie2/odevice.h> 37#include <opie2/odevice.h>
38#include <opie2/oresource.h>
39
36#include <qpe/applnk.h> 40#include <qpe/applnk.h>
37#include <qpe/config.h> 41#include <qpe/config.h>
38#include <qpe/power.h> 42#include <qpe/power.h>
39#include <qpe/qcopenvelope_qws.h> 43#include <qpe/qcopenvelope_qws.h>
40#include <qpe/resource.h>
41using namespace Opie::Core; 44using namespace Opie::Core;
42 45
43/* STD */ 46/* STD */
@@ -139,10 +142,7 @@ QString RotateApplet::tr( const char* s, const char* p ) const
139 142
140QIconSet RotateApplet::icon() const 143QIconSet RotateApplet::icon() const
141{ 144{
142 QPixmap pix; 145 QPixmap pix = Opie::Core::OResource::loadPixmap( "Rotation", Opie::Core::OResource::SmallIcon );
143 QImage img = Resource::loadImage( "Rotation" );
144 if ( !img.isNull() )
145 pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
146 return pix; 146 return pix;
147} 147}
148 148