summaryrefslogtreecommitdiff
path: root/core/applets/rotateapplet/rotate.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/rotateapplet/rotate.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/rotateapplet/rotate.cpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp
index b490626..04270f1 100644
--- a/core/applets/rotateapplet/rotate.cpp
+++ b/core/applets/rotateapplet/rotate.cpp
@@ -43,2 +43,11 @@ RotateApplet::RotateApplet ( )
{
+
+#if defined(Q_WS_QWS)
+#if !defined(QT_NO_COP)
+ QCopChannel *rotateChannel = new QCopChannel( "QPE/Rotation" , this );
+ connect ( rotateChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
+ this, SLOT ( channelReceived( const QCString &, const QByteArray &) ) );
+#endif
+#endif
+
}
@@ -49,2 +58,14 @@ RotateApplet::~RotateApplet ( )
+
+/**
+ * Qcop receive method.
+ */
+void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data ) {
+ QDataStream stream( data, IO_ReadOnly );
+ if ( msg == "flip()" ) {
+ activated ( );
+ }
+}
+
+
int RotateApplet::position ( ) const
@@ -64,3 +85,3 @@ QString RotateApplet::text ( ) const
-QString RotateApplet::tr( const char* s ) const
+/*QString RotateApplet::tr( const char* s ) const
{
@@ -73,2 +94,3 @@ QString RotateApplet::tr( const char* s, const char* p ) const
}
+*/
@@ -91,2 +113,3 @@ void RotateApplet::activated ( )
{
+
int defaultRotation = QPEApplication::defaultRotation();