summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oapplication.h
Side-by-side diff
Diffstat (limited to 'libopie2/opiecore/oapplication.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oapplication.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libopie2/opiecore/oapplication.h b/libopie2/opiecore/oapplication.h
index d34e6b1..709d73a 100644
--- a/libopie2/opiecore/oapplication.h
+++ b/libopie2/opiecore/oapplication.h
@@ -92,24 +92,35 @@ class OApplication : public QPEApplication
/**
* Shows the main @a widget and sets the name of the application as window caption.
*/
virtual void showMainWidget( QWidget* widget, bool nomax = false );
/**
* Set the application title. The application title will be concatenated
* to the application name given in the constructor.
*
* @param title the title. If not given, resets caption to appname
*/
virtual void setTitle( const QString& title = QString::null ) const;
+ signals:
+
+ /**
+ * Emit signals when messages are received on QPE/System
+ * QCOP Channel.
+ *
+ * @param msg The QCOP Message
+ * @param data The QCOP Data
+ */
+ void systemMessageSignal(const QCString& msg, const QByteArray& data);
+
protected:
void init();
private:
const QCString _appname;
static OApplication* _instance;
OConfig* _config;
Internal::OApplicationPrivate* d;
};
} // Core
} // Opie