-rw-r--r-- | core/applets/rotateapplet/rotate.cpp | 25 | ||||
-rw-r--r-- | core/applets/rotateapplet/rotate.h | 16 |
2 files changed, 36 insertions, 5 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 @@ -42,4 +42,13 @@ RotateApplet::RotateApplet ( ) : QObject ( 0, "RotateApplet" ), ref ( 0 ), m_flipped( false ) { + +#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 + } @@ -48,4 +57,16 @@ 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 { @@ -63,5 +84,5 @@ QString RotateApplet::text ( ) const } -QString RotateApplet::tr( const char* s ) const +/*QString RotateApplet::tr( const char* s ) const { return qApp->translate( "RotateApplet", s, 0 ); @@ -72,4 +93,5 @@ QString RotateApplet::tr( const char* s, const char* p ) const return qApp->translate( "RotateApplet", s, p ); } +*/ QIconSet RotateApplet::icon ( ) const @@ -90,4 +112,5 @@ QPopupMenu *RotateApplet::popup ( QWidget * ) const void RotateApplet::activated ( ) { + int defaultRotation = QPEApplication::defaultRotation(); diff --git a/core/applets/rotateapplet/rotate.h b/core/applets/rotateapplet/rotate.h index 57f9040..5ac7768 100644 --- a/core/applets/rotateapplet/rotate.h +++ b/core/applets/rotateapplet/rotate.h @@ -33,7 +33,11 @@ #include <qpe/menuappletinterface.h> +#include <qobject.h> class RotateApplet : public QObject, public MenuAppletInterface { + + Q_OBJECT + public: RotateApplet ( ); @@ -48,13 +52,17 @@ public: virtual QIconSet icon ( ) const; virtual QString text ( ) const; - virtual QString tr( const char* ) const; + /* virtual QString tr( const char* ) const; virtual QString tr( const char*, const char* ) const; + */ virtual QPopupMenu *popup ( QWidget *parent ) const; - - virtual void activated ( ); + virtual void activated ( ); + +private slots: + void channelReceived( const QCString &msg, const QByteArray & data ); private: - bool m_flipped; ulong ref; + bool m_flipped; + }; |