summaryrefslogtreecommitdiff
path: root/core/applets/logoutapplet/logout.h
authorsandman <sandman>2002-10-06 22:22:17 (UTC)
committer sandman <sandman>2002-10-06 22:22:17 (UTC)
commit932cb3b350748549bfdb6fdc6f080061f4340f73 (patch) (side-by-side diff)
tree2998710324342eed2b4da3dc37f09fbf42daddda /core/applets/logoutapplet/logout.h
parent685c08f1c48813f9d222446f0516b8e20635607e (diff)
downloadopie-932cb3b350748549bfdb6fdc6f080061f4340f73.zip
opie-932cb3b350748549bfdb6fdc6f080061f4340f73.tar.gz
opie-932cb3b350748549bfdb6fdc6f080061f4340f73.tar.bz2
- added a new logout menu-applet
- fixed the positions of all menu applets - changed the icons for logout/suspend
Diffstat (limited to 'core/applets/logoutapplet/logout.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/logoutapplet/logout.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/core/applets/logoutapplet/logout.h b/core/applets/logoutapplet/logout.h
new file mode 100644
index 0000000..e45f3ba
--- a/dev/null
+++ b/core/applets/logoutapplet/logout.h
@@ -0,0 +1,47 @@
+/**********************************************************************
+** Copyright (C) 2000 Trolltech AS. All rights reserved.
+**
+** This file is part of Qtopia Environment.
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+** See http://www.trolltech.com/gpl/ for GPL licensing information.
+**
+** Contact info@trolltech.com if any conditions of this licensing are
+** not clear to you.
+**
+**********************************************************************/
+#ifndef __OPIE_LOGOUT_APPLET_H__
+#define __OPIE_LOGOUT_APPLET_H__
+
+#include <qpe/menuappletinterface.h>
+
+class LogoutApplet : public QObject, public MenuAppletInterface
+{
+public:
+ LogoutApplet ( );
+ virtual ~LogoutApplet ( );
+
+ QRESULT queryInterface( const QUuid&, QUnknownInterface** );
+ Q_REFCOUNT
+
+ virtual int position() const;
+
+ virtual QString name ( ) const;
+ virtual QIconSet icon ( ) const;
+ virtual QString text ( ) const;
+ virtual QPopupMenu *popup ( QWidget *parent ) const;
+
+ virtual void activated ( );
+
+private:
+ ulong ref;
+};
+
+#endif