summaryrefslogtreecommitdiff
path: root/x11/libqpe-x11/qpe/qpeapplication.h
Unidiff
Diffstat (limited to 'x11/libqpe-x11/qpe/qpeapplication.h') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.h b/x11/libqpe-x11/qpe/qpeapplication.h
index 2af1c66..333f331 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.h
+++ b/x11/libqpe-x11/qpe/qpeapplication.h
@@ -33,61 +33,70 @@ public:
33 }; 33 };
34 static void setStylusOperation( QWidget*, StylusMode ); 34 static void setStylusOperation( QWidget*, StylusMode );
35 static StylusMode stylusOperation( QWidget* ); 35 static StylusMode stylusOperation( QWidget* );
36 36
37 enum InputMethodHint { 37 enum InputMethodHint {
38 Normal, 38 Normal,
39 AlwaysOff, 39 AlwaysOff,
40 AlwaysOn 40 AlwaysOn
41 }; 41 };
42 static void setInputMethodHint( QWidget*, InputMethodHint ); 42 static void setInputMethodHint( QWidget*, InputMethodHint );
43 static InputMethodHint inputMethodHint( QWidget* ); 43 static InputMethodHint inputMethodHint( QWidget* );
44 44
45 void showMainWidget( QWidget*, bool nomax = FALSE ); 45 void showMainWidget( QWidget*, bool nomax = FALSE );
46 void showMainDocumentWidget( QWidget*, bool nomax = FALSE ); 46 void showMainDocumentWidget( QWidget*, bool nomax = FALSE );
47 47
48 static void showDialog( QDialog*, bool nomax = FALSE ); 48 static void showDialog( QDialog*, bool nomax = FALSE );
49 static int execDialog( QDialog*, bool nomax = FALSE ); 49 static int execDialog( QDialog*, bool nomax = FALSE );
50 50
51 static void setKeepRunning(); 51 static void setKeepRunning();
52 bool keepRunning()const; 52 bool keepRunning()const;
53 53
54 bool keyboardGrabbed()const; 54 bool keyboardGrabbed()const;
55 int exec(); 55 int exec();
56 56
57// QWS bits
58 enum screenSaverHint {
59 Disable = 0,
60 DisableLightOff = 1,
61 DisableSuspend = 2,
62 Enable = 100
63 };
64
57signals: 65signals:
58 void clientMoused(); 66 void clientMoused();
59 void timeChanged(); 67 void timeChanged();
60 void clockChanged( bool pm ); 68 void clockChanged( bool pm );
61 void micChanged( bool muted ); 69 void micChanged( bool muted );
62 void volumeChanged( bool muted ); 70 void volumeChanged( bool muted );
63 void appMessage( const QCString& msg, const QByteArray& data); 71 void appMessage( const QCString& msg, const QByteArray& data);
64 void weekChanged( bool startOnMonday ); 72 void weekChanged( bool startOnMonday );
65 void dateFormatChanged( DateFormat ); 73 void dateFormatChanged( DateFormat );
66 void flush(); 74 void flush();
67 void reload(); 75 void reload();
68 76
69private: 77private:
70 void initTranslations(); 78 void initTranslations();
71 void internalSetStyle(const QString&); 79 void internalSetStyle(const QString&);
72 80
73private slots: 81private slots:
74 void hideOrQuit(); 82 void hideOrQuit();
75 void systemMessage( const QCString&, const QByteArray& ); 83 void systemMessage( const QCString&, const QByteArray& );
76 void pidMessage( const QCString&, const QByteArray& ); 84 void pidMessage( const QCString&, const QByteArray& );
77 void removeSenderFromStylusDict(); 85 void removeSenderFromStylusDict();
78protected: 86protected:
79 virtual void restart(); 87 virtual void restart();
80 virtual void shutdown(); 88 virtual void shutdown();
89 void prepareForTermination(bool willrestart);
81 bool eventFilter( QObject*, QEvent* ); 90 bool eventFilter( QObject*, QEvent* );
82 void timerEvent( QTimerEvent* ); 91 void timerEvent( QTimerEvent* );
83 void raiseAppropriateWindow(); 92 void raiseAppropriateWindow();
84 virtual void tryQuit(); 93 virtual void tryQuit();
85 94
86private: 95private:
87 class Private; 96 class Private;
88 Private* d; 97 Private* d;
89 QCopChannel *m_sys; 98 QCopChannel *m_sys;
90 QCopChannel *m_pid; 99 QCopChannel *m_pid;
91}; 100};
92 101
93#endif 102#endif