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.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.h b/x11/libqpe-x11/qpe/qpeapplication.h
index 3713251..cd385db 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.h
+++ b/x11/libqpe-x11/qpe/qpeapplication.h
@@ -9,6 +9,7 @@
9 9
10#include <qpe/timestring.h> 10#include <qpe/timestring.h>
11 11
12class QCopChannel;
12class QPEApplication : public QApplication { 13class QPEApplication : public QApplication {
13 Q_OBJECT 14 Q_OBJECT
14public: 15public:
@@ -35,7 +36,7 @@ public:
35 void showMainDocumentWidget( QWidget*, bool nomax = FALSE ); 36 void showMainDocumentWidget( QWidget*, bool nomax = FALSE );
36 37
37 static void showDialog( QDialog*, bool nomax = FALSE ); 38 static void showDialog( QDialog*, bool nomax = FALSE );
38 static void execDialog( QDialog*, bool nomax = FALSE ); 39 static int execDialog( QDialog*, bool nomax = FALSE );
39 40
40 static void setKeepRunning(); 41 static void setKeepRunning();
41 bool keepRunning()const; 42 bool keepRunning()const;
@@ -55,6 +56,15 @@ signals:
55 void flush(); 56 void flush();
56 void reload(); 57 void reload();
57 58
59private:
60 void initTranslations();
61 void internalSetStyle(const QString&);
62
63private:
64 class Private;
65 Private* d;
66 QCopChannel *m_sys;
67 QCopChannel *m_pid;
58}; 68};
59 69
60#endif 70#endif