00001 00006 /* 00007 =. This file is part of the Opie Project 00008 .=l. Copyright (C) 2004 Opie Developer Team <opie-devel@handhelds.org> 00009 .>+-= 00010 _;:, .> :=|. This library is free software; you can 00011 .> <`_, > . <= redistribute it and/or modify it under 00012 :`=1 )Y*s>-.-- : the terms of the GNU Library General Public 00013 .="- .-=="i, .._ License as published by the Free Software 00014 - . .-<_> .<> Foundation; either version 2 of the License, 00015 ._= =} : or (at your option) any later version. 00016 .%`+i> _;_. 00017 .i_,=:_. -<s. This library is distributed in the hope that 00018 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 00019 : .. .:, . . . without even the implied warranty of 00020 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 00021 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU 00022 ..}^=.= = ; Library General Public License for more 00023 ++= -. .` .: details. 00024 : = ...= . :.=- 00025 -. .:....=;==+<; You should have received a copy of the GNU 00026 -_. . . )=. = Library General Public License along with 00027 -- :-=` this library; see the file COPYING.LIB. 00028 If not, write to the Free Software Foundation, 00029 Inc., 59 Temple Place - Suite 330, 00030 Boston, MA 02111-1307, USA. 00031 00032 */ 00033 00034 #ifndef MULTIAUTHCOMMON_H 00035 #define MULTIAUTHCOMMON_H 00036 00037 00038 /* OwnerDialog stuff */ 00039 #include <qpe/global.h> 00040 #include <qpe/contact.h> 00041 #include <qtextview.h> 00042 #include <qdialog.h> 00043 00044 namespace Opie { 00045 namespace Security { 00046 00048 class SecOwnerDlg : public QDialog 00049 { 00050 Q_OBJECT 00051 public: 00052 00053 SecOwnerDlg( QWidget *parent, const char * name, const QString& owner, 00054 bool modal, bool fullscreen); 00055 00056 void resizeEvent( QResizeEvent * ); 00057 bool eventFilter(QObject *o, QEvent *e); 00058 void mousePressEvent( QMouseEvent * ); 00059 00060 private: 00061 QTextView *tv; 00062 00063 private: 00064 struct Private; 00065 Private *d; 00066 }; 00067 00068 namespace Internal { 00069 int runPlugins(); 00070 } 00071 00072 } 00073 } 00074 00075 #endif // MULTIAUTHCOMMON_H
1.4.2