summaryrefslogtreecommitdiff
path: root/x11/libqpe-x11/qpe/qpeapplication.h
authorzecke <zecke>2002-10-16 13:04:20 (UTC)
committer zecke <zecke>2002-10-16 13:04:20 (UTC)
commitee8da0d0b70318c24ee2417bbccd9b7cd6e1404e (patch) (unidiff)
tree7d566843eb9fe423fbc8a8734abaa0ebcb127d16 /x11/libqpe-x11/qpe/qpeapplication.h
parentfdc4abb0d38e6d5dce98961e47b552ff56c89976 (diff)
downloadopie-ee8da0d0b70318c24ee2417bbccd9b7cd6e1404e.zip
opie-ee8da0d0b70318c24ee2417bbccd9b7cd6e1404e.tar.gz
opie-ee8da0d0b70318c24ee2417bbccd9b7cd6e1404e.tar.bz2
More implementation for X11
Hey this QPEApplication looks much better.... There still needs to be some stuff to be implemented InputMethods, eventFilter, hideOrQuit, Styles but they should be copy and paste I'll implement these and then take care of IPC...
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