From ee8da0d0b70318c24ee2417bbccd9b7cd6e1404e Mon Sep 17 00:00:00 2001 From: zecke Date: Wed, 16 Oct 2002 13:04:20 +0000 Subject: 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... --- (limited to 'x11/libqpe-x11/qpe/qpeapplication.h') 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 @@ #include +class QCopChannel; class QPEApplication : public QApplication { Q_OBJECT public: @@ -35,7 +36,7 @@ public: void showMainDocumentWidget( QWidget*, bool nomax = FALSE ); static void showDialog( QDialog*, bool nomax = FALSE ); - static void execDialog( QDialog*, bool nomax = FALSE ); + static int execDialog( QDialog*, bool nomax = FALSE ); static void setKeepRunning(); bool keepRunning()const; @@ -55,6 +56,15 @@ signals: void flush(); void reload(); +private: + void initTranslations(); + void internalSetStyle(const QString&); + +private: + class Private; + Private* d; + QCopChannel *m_sys; + QCopChannel *m_pid; }; #endif -- cgit v0.9.0.2