summaryrefslogtreecommitdiff
path: root/noncore/styles/web/plugin.cpp
Unidiff
Diffstat (limited to 'noncore/styles/web/plugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/web/plugin.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/noncore/styles/web/plugin.cpp b/noncore/styles/web/plugin.cpp
new file mode 100644
index 0000000..da2f371
--- a/dev/null
+++ b/noncore/styles/web/plugin.cpp
@@ -0,0 +1,71 @@
1/*
2               =. This file is part of the OPIE Project
3             .=l. Copyright (c) 2004 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 "webstyle.h"
32
33#include <qapplication.h>
34
35WebStyleImpl::WebStyleImpl()
36 : m_style( 0l )
37{}
38
39/* Qt will delete the style */
40WebStyleImpl::~WebStyleImpl()
41{}
42
43QRESULT WebStyleImpl::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* WebStyleImpl::style() {
57 if (!m_style )
58 m_style = new WebStyle();
59 return m_style;
60}
61
62QString WebStyleImpl::name()const {
63 return qApp->translate("WebStyle", "Web", "Name of the style Web");
64}
65
66
67Q_EXPORT_INTERFACE()
68{
69 Q_CREATE_INSTANCE( WebStyleImpl )
70}
71