summaryrefslogtreecommitdiff
path: root/noncore/securityplugins/dummy/dummyplugin.h
Unidiff
Diffstat (limited to 'noncore/securityplugins/dummy/dummyplugin.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/securityplugins/dummy/dummyplugin.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/noncore/securityplugins/dummy/dummyplugin.h b/noncore/securityplugins/dummy/dummyplugin.h
new file mode 100644
index 0000000..9680dff
--- a/dev/null
+++ b/noncore/securityplugins/dummy/dummyplugin.h
@@ -0,0 +1,66 @@
1/**
2 * \file dummyplugin.h
3 * \brief Standard Opie multiauth plugin definition
4 * \author Clément Séveillac (clement . seveillac (at) via . ecp . fr)
5 */
6/*
7 =. This file is part of the Opie Project
8 .=l. Copyright (C) 2004 Opie Developer Team <opie-devel@handhelds.org>
9 .>+-=
10 _;:, .> :=|. This library is free software; you can
11.> <`_, > . <= redistribute it and/or modify it under
12:`=1 )Y*s>-.-- : the terms of the GNU Library General Public
13.="- .-=="i, .._ License as published by the Free Software
14 - . .-<_> .<> Foundation; either version 2 of the License,
15 ._= =} : or (at your option) any later version.
16 .%`+i> _;_.
17 .i_,=:_. -<s. This library is distributed in the hope that
18 + . -:. = it will be useful, but WITHOUT ANY WARRANTY;
19 : .. .:, . . . without even the implied warranty of
20 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A
21 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU
22..}^=.= = ; Library General Public License for more
23++= -. .` .: details.
24 : = ...= . :.=-
25 -. .:....=;==+<; You should have received a copy of the GNU
26 -_. . . )=. = Library General Public License along with
27 -- :-=` this library; see the file COPYING.LIB.
28 If not, write to the Free Software Foundation,
29 Inc., 59 Temple Place - Suite 330,
30 Boston, MA 02111-1307, USA.
31
32*/
33
34#ifndef DUMMY_PLUGIN_H
35#define DUMMY_PLUGIN_H
36
37#include <qobject.h>
38#include <qstring.h>
39#include <opie2/multiauthplugininterface.h>
40
41/// Multi-authentication example plugin, implementing a trivial 'yes/no' verification.
42/**
43 * The plugin itself, implementing the main authenticate() function.
44 */
45class DummyPlugin : public QObject, public MultiauthPluginObject {
46
47 Q_OBJECT
48
49 public:
50 int authenticate();
51 MultiauthConfigWidget * configWidget(QWidget * parent);
52 QString pixmapNameConfig() const;
53 QString pixmapNameWidget() const;
54 QString pluginName() const;
55
56 signals:
57 /// Signal carrying the result code of this plugin
58 void emitCode(int resultCode);
59
60 private slots:
61 void success();
62 void failure();
63 void skip();
64};
65
66#endif