Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef QSESSIONMANAGER_H
00043 #define QSESSIONMANAGER_H
00044
00045 #include <QtCore/qobject.h>
00046 #include <QtGui/qwindowdefs.h>
00047 #include <QtCore/qstring.h>
00048 #include <QtCore/qstringlist.h>
00049
00050 #ifndef QT_NO_SESSIONMANAGER
00051
00052 QT_BEGIN_HEADER
00053
00054 QT_BEGIN_NAMESPACE
00055
00056 QT_MODULE(Gui)
00057
00058 class QSessionManagerPrivate;
00059
00060 class Q_GUI_EXPORT QSessionManager : public QObject
00061 {
00062 Q_OBJECT
00063 Q_DECLARE_PRIVATE(QSessionManager)
00064 QSessionManager(QApplication *app, QString &id, QString &key);
00065 ~QSessionManager();
00066 public:
00067 QString sessionId() const;
00068 QString sessionKey() const;
00069 #if defined(Q_WS_X11) || defined(Q_WS_MAC)
00070 void *handle() const;
00071 #endif
00072
00073 bool allowsInteraction();
00074 bool allowsErrorInteraction();
00075 void release();
00076
00077 void cancel();
00078
00079 enum RestartHint {
00080 RestartIfRunning,
00081 RestartAnyway,
00082 RestartImmediately,
00083 RestartNever
00084 };
00085 void setRestartHint(RestartHint);
00086 RestartHint restartHint() const;
00087
00088 void setRestartCommand(const QStringList&);
00089 QStringList restartCommand() const;
00090 void setDiscardCommand(const QStringList&);
00091 QStringList discardCommand() const;
00092
00093 void setManagerProperty(const QString& name, const QString& value);
00094 void setManagerProperty(const QString& name, const QStringList& value);
00095
00096 bool isPhase2() const;
00097 void requestPhase2();
00098
00099 private:
00100 friend class QApplication;
00101 friend class QApplicationPrivate;
00102 friend class QBaseApplication;
00103 };
00104
00105 QT_END_NAMESPACE
00106
00107 QT_END_HEADER
00108
00109 #endif // QT_NO_SESSIONMANAGER
00110
00111 #endif // QSESSIONMANAGER_H