-rw-r--r-- | libopie2/opiesecurity/multiauthcommon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie2/opiesecurity/multiauthcommon.h b/libopie2/opiesecurity/multiauthcommon.h index 46beab0..b728dae 100644 --- a/libopie2/opiesecurity/multiauthcommon.h +++ b/libopie2/opiesecurity/multiauthcommon.h | |||
@@ -1,75 +1,76 @@ | |||
1 | /** | 1 | /** |
2 | * \file multiauthcommon.h | 2 | * \file multiauthcommon.h |
3 | * \brief Objects and functions for Opie multiauth framework | 3 | * \brief Objects and functions for Opie multiauth framework |
4 | * \author Clément Séveillac (clement . seveillac (at) via . ecp . fr) | 4 | * \author Clément Séveillac (clement . seveillac (at) via . ecp . fr) |
5 | */ | 5 | */ |
6 | /* | 6 | /* |
7 | =. This file is part of the Opie Project | 7 | =. This file is part of the Opie Project |
8 | .=l. Copyright (C) 2004 Opie Developer Team <opie-devel@handhelds.org> | 8 | .=l. Copyright (C) 2004 Opie Developer Team <opie-devel@handhelds.org> |
9 | .>+-= | 9 | .>+-= |
10 | _;:, .> :=|. This library is free software; you can | 10 | _;:, .> :=|. This library is free software; you can |
11 | .> <`_, > . <= redistribute it and/or modify it under | 11 | .> <`_, > . <= redistribute it and/or modify it under |
12 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | 12 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public |
13 | .="- .-=="i, .._ License as published by the Free Software | 13 | .="- .-=="i, .._ License as published by the Free Software |
14 | - . .-<_> .<> Foundation; either version 2 of the License, | 14 | - . .-<_> .<> Foundation; either version 2 of the License, |
15 | ._= =} : or (at your option) any later version. | 15 | ._= =} : or (at your option) any later version. |
16 | .%`+i> _;_. | 16 | .%`+i> _;_. |
17 | .i_,=:_. -<s. This library is distributed in the hope that | 17 | .i_,=:_. -<s. This library is distributed in the hope that |
18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
19 | : .. .:, . . . without even the implied warranty of | 19 | : .. .:, . . . without even the implied warranty of |
20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
22 | ..}^=.= = ; Library General Public License for more | 22 | ..}^=.= = ; Library General Public License for more |
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = Library General Public License along with | 26 | -_. . . )=. = Library General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #ifndef MULTIAUTHCOMMON_H | 34 | #ifndef MULTIAUTHCOMMON_H |
35 | #define MULTIAUTHCOMMON_H | 35 | #define MULTIAUTHCOMMON_H |
36 | 36 | ||
37 | 37 | ||
38 | /* OwnerDialog stuff */ | 38 | /* OwnerDialog stuff */ |
39 | #include <qpe/global.h> | 39 | #include <qpe/global.h> |
40 | #include <qpe/contact.h> | 40 | #include <qpe/contact.h> |
41 | #include <qtextview.h> | 41 | #include <qtextview.h> |
42 | #include <qdialog.h> | 42 | #include <qdialog.h> |
43 | 43 | ||
44 | 44 | ||
45 | namespace Opie { | 45 | namespace Opie { |
46 | namespace Security { | 46 | namespace Security { |
47 | 47 | ||
48 | /// QDialog simply showing the owner information | ||
48 | class SecOwnerDlg : public QDialog | 49 | class SecOwnerDlg : public QDialog |
49 | { | 50 | { |
50 | Q_OBJECT | 51 | Q_OBJECT |
51 | public: | 52 | public: |
52 | 53 | ||
53 | SecOwnerDlg( QWidget *parent, const char * name, Contact c, | 54 | SecOwnerDlg( QWidget *parent, const char * name, Contact c, |
54 | bool modal, bool fullscreen); | 55 | bool modal, bool fullscreen); |
55 | 56 | ||
56 | void resizeEvent( QResizeEvent * ); | 57 | void resizeEvent( QResizeEvent * ); |
57 | bool eventFilter(QObject *o, QEvent *e); | 58 | bool eventFilter(QObject *o, QEvent *e); |
58 | void mousePressEvent( QMouseEvent * ); | 59 | void mousePressEvent( QMouseEvent * ); |
59 | 60 | ||
60 | private: | 61 | private: |
61 | QTextView *tv; | 62 | QTextView *tv; |
62 | 63 | ||
63 | private: | 64 | private: |
64 | struct Private; | 65 | struct Private; |
65 | Private *d; | 66 | Private *d; |
66 | }; | 67 | }; |
67 | 68 | ||
68 | namespace Internal { | 69 | namespace Internal { |
69 | int runPlugins(); | 70 | int runPlugins(); |
70 | } | 71 | } |
71 | 72 | ||
72 | } | 73 | } |
73 | } | 74 | } |
74 | 75 | ||
75 | #endif // MULTIAUTHCOMMON_H | 76 | #endif // MULTIAUTHCOMMON_H |