summaryrefslogtreecommitdiff
authordrw <drw>2005-04-24 21:32:37 (UTC)
committer drw <drw>2005-04-24 21:32:37 (UTC)
commit2391cfd9c79b87b3b00a4bb4a1d76981debb4486 (patch) (unidiff)
tree4ba271b1465881c0cce4ba5fd7a8c95bff5aca24
parentead2586272813b8cab8092773376c690cdf1b906 (diff)
downloadopie-2391cfd9c79b87b3b00a4bb4a1d76981debb4486.zip
opie-2391cfd9c79b87b3b00a4bb4a1d76981debb4486.tar.gz
opie-2391cfd9c79b87b3b00a4bb4a1d76981debb4486.tar.bz2
Resource -> OResource
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/restartapplet2/opie-restartapplet2.control2
-rw-r--r--core/applets/restartapplet2/restart.cpp42
-rw-r--r--core/applets/restartapplet2/restartapplet.pro2
-rw-r--r--core/applets/rotateapplet/rotate.cpp54
-rw-r--r--core/applets/vtapplet/opie-vtapplet.control2
-rw-r--r--core/applets/vtapplet/vt.cpp10
-rw-r--r--core/applets/vtapplet/vtapplet.pro2
7 files changed, 39 insertions, 75 deletions
diff --git a/core/applets/restartapplet2/opie-restartapplet2.control b/core/applets/restartapplet2/opie-restartapplet2.control
index cec3b19..9cc8dac 100644
--- a/core/applets/restartapplet2/opie-restartapplet2.control
+++ b/core/applets/restartapplet2/opie-restartapplet2.control
@@ -1,10 +1,10 @@
1Package: opie-restartapplet2 1Package: opie-restartapplet2
2Files: plugins/applets/librestartapplet2.so* 2Files: plugins/applets/librestartapplet2.so*
3Priority: optional 3Priority: optional
4Section: opie/applets 4Section: opie/applets
5Maintainer: L.J. Potter <lpotter@trolltech.com> 5Maintainer: L.J. Potter <lpotter@trolltech.com>
6Architecture: arm 6Architecture: arm
7Depends: task-opie-minimal 7Depends: task-opie-minimal, libopiecore2
8Description: Restart Applet 8Description: Restart Applet
9 A simple opie menu applet to restart the Opie environment 9 A simple opie menu applet to restart the Opie environment
10Version: $QPE_VERSION$EXTRAVERSION 10Version: $QPE_VERSION$EXTRAVERSION
diff --git a/core/applets/restartapplet2/restart.cpp b/core/applets/restartapplet2/restart.cpp
index eda0005..42d814a 100644
--- a/core/applets/restartapplet2/restart.cpp
+++ b/core/applets/restartapplet2/restart.cpp
@@ -1,96 +1,62 @@
1// coptright Mon 10-21-2002 01:14:03 by L. Potter <ljp@llornkcor.com> 1// coptright Mon 10-21-2002 01:14:03 by L. Potter <ljp@llornkcor.com>
2 2
3#include "restart.h" 3#include "restart.h"
4 4
5#include <opie2/oresource.h>
6
5#include <qpe/applnk.h> 7#include <qpe/applnk.h>
6#include <qpe/qpeapplication.h> 8#include <qpe/qpeapplication.h>
7#include <qpe/resource.h>
8#include <qpe/qcopenvelope_qws.h> 9#include <qpe/qcopenvelope_qws.h>
9 10
10/* XPM */
11static char *restart_xpm[] = {
12"16 16 11 1",
13" c None",
14". c #000000",
15"+ c #DCDCDC",
16"@ c #A0A0A0",
17"# c #C3C3C3",
18"$ c #808080",
19"% c #FFA858",
20"& c #FFDCA8",
21"* c #FFFFC0",
22"= c #FFFFFF",
23"- c #585858",
24" .. ",
25" .. .++. .. ",
26" .+@.@##@.@+. ",
27" .@+$@%%@$+@. ",
28" .$%%&%&%$. ",
29" ..+@%&$$%&@+.. ",
30".+#@%&%@@&*%@#+.",
31".$@+$&*&&=*$+@$.",
32" .--+$&*=&$+--. ",
33" .$#++$$++#$. ",
34" .@=$-$++$-$=@. ",
35" .+@-..@@..-@+. ",
36" ... .+=. ... ",
37" .-$. ",
38" .. ",
39" "};
40
41RestartApplet::RestartApplet ( ) 11RestartApplet::RestartApplet ( )
42 : QObject ( 0, "RestartApplet" ) 12 : QObject ( 0, "RestartApplet" )
43{ 13{
44} 14}
45 15
46RestartApplet::~RestartApplet ( ) 16RestartApplet::~RestartApplet ( )
47{ 17{
48} 18}
49 19
50int RestartApplet::position ( ) const 20int RestartApplet::position ( ) const
51{ 21{
52 return 4; 22 return 4;
53} 23}
54 24
55QString RestartApplet::name ( ) const 25QString RestartApplet::name ( ) const
56{ 26{
57 return tr( "Restart" ); 27 return tr( "Restart" );
58} 28}
59 29
60QString RestartApplet::text ( ) const 30QString RestartApplet::text ( ) const
61{ 31{
62 return tr( "Restart Opie" ); 32 return tr( "Restart Opie" );
63} 33}
64 34
65QIconSet RestartApplet::icon ( ) const 35QIconSet RestartApplet::icon ( ) const
66{ 36{
67 QPixmap pix; 37 QPixmap pix = Opie::Core::OResource::loadPixmap( "exec", Opie::Core::OResource::SmallIcon );
68 QImage img = ( const char** ) restart_xpm ;//Resource::loadImage ( "Run" ); 38 return pix;
69
70 if ( !img. isNull ( ))
71 pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
72 return pix;
73} 39}
74 40
75QPopupMenu *RestartApplet::popup ( QWidget * ) const 41QPopupMenu *RestartApplet::popup ( QWidget * ) const
76{ 42{
77 return 0; 43 return 0;
78} 44}
79 45
80void RestartApplet::activated ( ) 46void RestartApplet::activated ( )
81{ 47{
82 QCopEnvelope e("QPE/System", "restart()"); 48 QCopEnvelope e("QPE/System", "restart()");
83} 49}
84 50
85 51
86QRESULT RestartApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **iface ) 52QRESULT RestartApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **iface )
87{ 53{
88 *iface = 0; 54 *iface = 0;
89 if ( uuid == IID_QUnknown ) 55 if ( uuid == IID_QUnknown )
90 *iface = this; 56 *iface = this;
91 else if ( uuid == IID_MenuApplet ) 57 else if ( uuid == IID_MenuApplet )
92 *iface = this; 58 *iface = this;
93 else 59 else
94 return QS_FALSE; 60 return QS_FALSE;
95 61
96 if ( *iface ) 62 if ( *iface )
diff --git a/core/applets/restartapplet2/restartapplet.pro b/core/applets/restartapplet2/restartapplet.pro
index 60d34f2..d3c408d 100644
--- a/core/applets/restartapplet2/restartapplet.pro
+++ b/core/applets/restartapplet2/restartapplet.pro
@@ -1,17 +1,17 @@
1TEMPLATE = lib 1TEMPLATE = lib
2CONFIG += qt plugin warn_on 2CONFIG += qt plugin warn_on
3HEADERS = restart.h 3HEADERS = restart.h
4SOURCES = restart.cpp 4SOURCES = restart.cpp
5TARGET = restartapplet2 5TARGET = restartapplet2
6DESTDIR = $(OPIEDIR)/plugins/applets 6DESTDIR = $(OPIEDIR)/plugins/applets
7INCLUDEPATH += $(OPIEDIR)/include 7INCLUDEPATH += $(OPIEDIR)/include
8DEPENDPATH += $(OPIEDIR)/include 8DEPENDPATH += $(OPIEDIR)/include
9LIBS += -lqpe 9LIBS += -lqpe -lopiecore2
10VERSION = 1.0.0 10VERSION = 1.0.0
11MOC_DIR=opieobj 11MOC_DIR=opieobj
12OBJECTS_DIR=opieobj 12OBJECTS_DIR=opieobj
13 13
14 14
15 15
16include( $(OPIEDIR)/include.pro ) 16include( $(OPIEDIR)/include.pro )
17target.path = $$prefix/plugins/applets 17target.path = $$prefix/plugins/applets
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,64 +1,67 @@
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.
29*/ 31*/
30 32
31#include "rotate.h" 33#include "rotate.h"
32 34
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 */
44#include <time.h> 47#include <time.h>
45 48
46RotateApplet::RotateApplet() 49RotateApplet::RotateApplet()
47 :QObject( 0, "RotateApplet" ), m_flipped( false ) 50 :QObject( 0, "RotateApplet" ), m_flipped( false )
48{ 51{
49 52
50#if !defined(QT_NO_COP) 53#if !defined(QT_NO_COP)
51 QCopChannel *rotateChannel = new QCopChannel( "QPE/Rotation" , this ); 54 QCopChannel *rotateChannel = new QCopChannel( "QPE/Rotation" , this );
52 connect ( rotateChannel, SIGNAL( received(const QCString&,const QByteArray&) ), 55 connect ( rotateChannel, SIGNAL( received(const QCString&,const QByteArray&) ),
53 this, SLOT ( channelReceived(const QCString&,const QByteArray&) ) ); 56 this, SLOT ( channelReceived(const QCString&,const QByteArray&) ) );
54#endif 57#endif
55 58
56} 59}
57 60
58RotateApplet::~RotateApplet ( ) 61RotateApplet::~RotateApplet ( )
59{} 62{}
60 63
61/** 64/**
62 * Qcop receive method. 65 * Qcop receive method.
63 */ 66 */
64void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data ) 67void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data )
@@ -118,52 +121,49 @@ int RotateApplet::position() const
118 121
119QString RotateApplet::name() const 122QString RotateApplet::name() const
120{ 123{
121 return tr( "Rotate shortcut" ); 124 return tr( "Rotate shortcut" );
122} 125}
123 126
124QString RotateApplet::text() const 127QString RotateApplet::text() const
125{ 128{
126 return tr( "Rotate" ); 129 return tr( "Rotate" );
127} 130}
128 131
129/*QString RotateApplet::tr( const char* s ) const 132/*QString RotateApplet::tr( const char* s ) const
130{ 133{
131 return qApp->translate( "RotateApplet", s, 0 ); 134 return qApp->translate( "RotateApplet", s, 0 );
132} 135}
133 136
134QString RotateApplet::tr( const char* s, const char* p ) const 137QString RotateApplet::tr( const char* s, const char* p ) const
135{ 138{
136 return qApp->translate( "RotateApplet", s, p ); 139 return qApp->translate( "RotateApplet", s, p );
137} 140}
138*/ 141*/
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
149QPopupMenu* RotateApplet::popup(QWidget*) const 149QPopupMenu* RotateApplet::popup(QWidget*) const
150{ 150{
151 return 0; 151 return 0;
152} 152}
153 153
154void RotateApplet::rotateDefault() 154void RotateApplet::rotateDefault()
155{ 155{
156 int rot = ODevice::inst()->rotation(); 156 int rot = ODevice::inst()->rotation();
157 157
158 switch (rot) 158 switch (rot)
159 { 159 {
160 case Rot0: rot=0; break; 160 case Rot0: rot=0; break;
161 case Rot90: rot=90; break; 161 case Rot90: rot=90; break;
162 case Rot180: rot=180; break; 162 case Rot180: rot=180; break;
163 case Rot270: rot=270; break; 163 case Rot270: rot=270; break;
164 default: rot=0; break; 164 default: rot=0; break;
165 } 165 }
166 166
167 Config cfg( "qpe" ); 167 Config cfg( "qpe" );
168 cfg.setGroup( "Appearance" ); 168 cfg.setGroup( "Appearance" );
169 169
diff --git a/core/applets/vtapplet/opie-vtapplet.control b/core/applets/vtapplet/opie-vtapplet.control
index a1662f1..ae504a9 100644
--- a/core/applets/vtapplet/opie-vtapplet.control
+++ b/core/applets/vtapplet/opie-vtapplet.control
@@ -1,9 +1,9 @@
1Package: opie-vtapplet 1Package: opie-vtapplet
2Files: plugins/applets/libvtapplet.so* 2Files: plugins/applets/libvtapplet.so*
3Priority: optional 3Priority: optional
4Section: opie/applets 4Section: opie/applets
5Maintainer: Opie Team <opie@handhelds.org> 5Maintainer: Opie Team <opie@handhelds.org>
6Architecture: arm 6Architecture: arm
7Depends: task-opie-minimal 7Depends: task-opie-minimal, libopiecore2
8Description: Switch to another virtual terminal 8Description: Switch to another virtual terminal
9Version: $QPE_VERSION$EXTRAVERSION 9Version: $QPE_VERSION$EXTRAVERSION
diff --git a/core/applets/vtapplet/vt.cpp b/core/applets/vtapplet/vt.cpp
index ae89635..0d4e657 100644
--- a/core/applets/vtapplet/vt.cpp
+++ b/core/applets/vtapplet/vt.cpp
@@ -1,43 +1,45 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2003-2004 Michael 'Mickey' Lauer <mickey@Vanille.de> 2** Copyright (C) 2003-2004 Michael 'Mickey' Lauer <mickey@Vanille.de>
3** 3**
4** This file may be distributed and/or modified under the terms of the 4** This file may be distributed and/or modified under the terms of the
5** GNU General Public License version 2 as published by the Free Software 5** GNU General Public License version 2 as published by the Free Software
6** Foundation and appearing in the file LICENSE.GPL included in the 6** Foundation and appearing in the file LICENSE.GPL included in the
7** packaging of this file. 7** packaging of this file.
8** 8**
9** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 9** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
10** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 10** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11** 11**
12**********************************************************************/ 12**********************************************************************/
13 13
14#include "vt.h" 14#include "vt.h"
15 15
16/* OPIE */ 16/* OPIE */
17#include <opie2/odebug.h> 17#include <opie2/odebug.h>
18#include <opie2/oresource.h>
19
18#include <qpe/applnk.h> 20#include <qpe/applnk.h>
19#include <qpe/resource.h> 21
20using namespace Opie::Core; 22using namespace Opie::Core;
21 23
22/* QT */ 24/* QT */
23#include <qpopupmenu.h> 25#include <qpopupmenu.h>
24 26
25/* STD */ 27/* STD */
26#include <fcntl.h> 28#include <fcntl.h>
27#include <unistd.h> 29#include <unistd.h>
28#include <sys/types.h> 30#include <sys/types.h>
29#include <sys/stat.h> 31#include <sys/stat.h>
30#include <sys/ioctl.h> 32#include <sys/ioctl.h>
31#include <linux/vt.h> 33#include <linux/vt.h>
32 34
33VTApplet::VTApplet ( ) 35VTApplet::VTApplet ( )
34 : QObject ( 0, "VTApplet" ) 36 : QObject ( 0, "VTApplet" )
35{ 37{
36} 38}
37 39
38VTApplet::~VTApplet ( ) 40VTApplet::~VTApplet ( )
39{ 41{
40} 42}
41 43
42int VTApplet::position ( ) const 44int VTApplet::position ( ) const
43{ 45{
@@ -47,53 +49,49 @@ int VTApplet::position ( ) const
47QString VTApplet::name ( ) const 49QString VTApplet::name ( ) const
48{ 50{
49 return tr( "VT shortcut" ); 51 return tr( "VT shortcut" );
50} 52}
51 53
52QString VTApplet::text ( ) const 54QString VTApplet::text ( ) const
53{ 55{
54 return tr( "Terminal" ); 56 return tr( "Terminal" );
55} 57}
56 58
57/* 59/*
58QString VTApplet::tr( const char* s ) const 60QString VTApplet::tr( const char* s ) const
59{ 61{
60 return qApp->translate( "VTApplet", s, 0 ); 62 return qApp->translate( "VTApplet", s, 0 );
61} 63}
62 64
63QString VTApplet::tr( const char* s, const char* p ) const 65QString VTApplet::tr( const char* s, const char* p ) const
64{ 66{
65 return qApp->translate( "VTApplet", s, p ); 67 return qApp->translate( "VTApplet", s, p );
66} 68}
67*/ 69*/
68 70
69QIconSet VTApplet::icon ( ) const 71QIconSet VTApplet::icon ( ) const
70{ 72{
71 QPixmap pix; 73 QPixmap pix = Opie::Core::OResource::loadPixmap( "terminal", Opie::Core::OResource::SmallIcon );
72 QImage img = Resource::loadImage ( "terminal" );
73
74 if ( !img. isNull ( ))
75 pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
76 return pix; 74 return pix;
77} 75}
78 76
79QPopupMenu *VTApplet::popup ( QWidget* parent ) const 77QPopupMenu *VTApplet::popup ( QWidget* parent ) const
80{ 78{
81 odebug << "VTApplet::popup" << oendl; 79 odebug << "VTApplet::popup" << oendl;
82 80
83 struct vt_stat vtstat; 81 struct vt_stat vtstat;
84#ifdef QT_QWS_DEVFS 82#ifdef QT_QWS_DEVFS
85 int fd = ::open( "/dev/vc/0", O_RDWR ); 83 int fd = ::open( "/dev/vc/0", O_RDWR );
86#else 84#else
87 int fd = ::open( "/dev/tty0", O_RDWR ); 85 int fd = ::open( "/dev/tty0", O_RDWR );
88#endif 86#endif
89 if ( fd == -1 ) return 0; 87 if ( fd == -1 ) return 0;
90 if ( ioctl( fd, VT_GETSTATE, &vtstat ) == -1 ) return 0; 88 if ( ioctl( fd, VT_GETSTATE, &vtstat ) == -1 ) return 0;
91 89
92 m_subMenu = new QPopupMenu( parent ); 90 m_subMenu = new QPopupMenu( parent );
93 m_subMenu->setCheckable( true ); 91 m_subMenu->setCheckable( true );
94 for ( int i = 1; i < 10; ++i ) 92 for ( int i = 1; i < 10; ++i )
95 { 93 {
96 int id = m_subMenu->insertItem( QString::number( i ), 500+i ); 94 int id = m_subMenu->insertItem( QString::number( i ), 500+i );
97 m_subMenu->setItemChecked( id, id-500 == vtstat.v_active ); 95 m_subMenu->setItemChecked( id, id-500 == vtstat.v_active );
98 } 96 }
99 ::close( fd ); 97 ::close( fd );
diff --git a/core/applets/vtapplet/vtapplet.pro b/core/applets/vtapplet/vtapplet.pro
index 6c4873c..912af58 100644
--- a/core/applets/vtapplet/vtapplet.pro
+++ b/core/applets/vtapplet/vtapplet.pro
@@ -1,13 +1,13 @@
1TEMPLATE = lib 1TEMPLATE = lib
2CONFIG += qt warn_on 2CONFIG += qt warn_on
3HEADERS = vt.h 3HEADERS = vt.h
4SOURCES = vt.cpp 4SOURCES = vt.cpp
5TARGET = vtapplet 5TARGET = vtapplet
6DESTDIR = $(OPIEDIR)/plugins/applets 6DESTDIR = $(OPIEDIR)/plugins/applets
7INCLUDEPATH += $(OPIEDIR)/include 7INCLUDEPATH += $(OPIEDIR)/include
8DEPENDPATH += $(OPIEDIR)/include 8DEPENDPATH += $(OPIEDIR)/include
9LIBS += -lqpe 9LIBS += -lqpe -lopiecore2
10VERSION = 1.0.0 10VERSION = 1.0.0
11 11
12include( $(OPIEDIR)/include.pro ) 12include( $(OPIEDIR)/include.pro )
13target.path = $$prefix/plugins/applets 13target.path = $$prefix/plugins/applets