summaryrefslogtreecommitdiff
path: root/noncore/styles/phase/plugin.cpp
authorzecke <zecke>2004-08-02 18:37:26 (UTC)
committer zecke <zecke>2004-08-02 18:37:26 (UTC)
commit4d0a9fc4a21e7a7242e466f8eec1dc61d173800d (patch) (unidiff)
treef66b7c11f1325363fb4d426cc133802f9b8e59ab /noncore/styles/phase/plugin.cpp
parentdb991191fa216293191a0a8b0a2db18866b94dca (diff)
downloadopie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.zip
opie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.tar.gz
opie-4d0a9fc4a21e7a7242e466f8eec1dc61d173800d.tar.bz2
Initial revision
Diffstat (limited to 'noncore/styles/phase/plugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/phase/plugin.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/noncore/styles/phase/plugin.cpp b/noncore/styles/phase/plugin.cpp
new file mode 100644
index 0000000..8396c0a
--- a/dev/null
+++ b/noncore/styles/phase/plugin.cpp
@@ -0,0 +1,71 @@
1/*
2               =. This file is part of the OPIE Project
3             .=l. Copyright (c) 2002 Holger Hans Peter Freyther <zecke@handhelds.org>
4           .>+-=
5 _;:,     .>    :=|. This program is free software; you can
6.> <`_,   >  .   <= redistribute it and/or modify it under
7:`=1 )Y*s>-.--   : the terms of the GNU General Public
8.="- .-=="i,     .._ License as published by the Free Software
9 - .   .-<_>     .<> Foundation; either version 2 of the License,
10     ._= =}       : or (at your option) any later version.
11    .%`+i>       _;_.
12    .i_,=:_.      -<s. This program is distributed in the hope that
13     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
14    : ..    .:,     . . . without even the implied warranty of
15    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
16  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
17..}^=.=       =       ; Library General Public License for more
18++=   -.     .`     .: details.
19 :     =  ...= . :.=-
20 -.   .:....=;==+<; You should have received a copy of the GNU
21  -_. . .   )=.  = General Public License along with
22    --        :-=` this library; see the file COPYING.
23 If not, write to the Free Software Foundation,
24 Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA.
26
27*/
28
29#include "plugin.h"
30
31#include "phasestyle.h"
32
33#include <qapplication.h>
34
35PhaseStyleImpl::PhaseStyleImpl()
36 : m_style( 0l )
37{}
38
39/* Qt will delete the style */
40PhaseStyleImpl::~PhaseStyleImpl()
41{}
42
43QRESULT PhaseStyleImpl::queryInterface( const QUuid& uuid, QUnknownInterface **iface ) {
44 *iface = 0;
45
46 if ( uuid == IID_QUnknown || uuid == IID_Style)
47 *iface = this;
48 else
49 return QS_FALSE;
50
51 (*iface)->addRef();
52
53 return QS_OK;
54}
55
56QStyle* PhaseStyleImpl::style() {
57 if (!m_style )
58 m_style = new PhaseStyle();
59 return m_style;
60}
61
62QString PhaseStyleImpl::name()const {
63 return qApp->translate("PhaseStyle", "Phase", "Name of the style Phase");
64}
65
66
67Q_EXPORT_INTERFACE()
68{
69 Q_CREATE_INSTANCE( PhaseStyleImpl )
70}
71