summaryrefslogtreecommitdiff
path: root/core/applets/rotateapplet/rotate.cpp
authorharlekin <harlekin>2003-04-18 21:20:04 (UTC)
committer harlekin <harlekin>2003-04-18 21:20:04 (UTC)
commit1cdd9c974e621f6992ddc6dfccbc815baebd19ee (patch) (side-by-side diff)
treec479e851ffc9788e75d12be116fb0b44827a9b45 /core/applets/rotateapplet/rotate.cpp
parentc667951bfeaa17136bc828380e38062e150b2762 (diff)
downloadopie-1cdd9c974e621f6992ddc6dfccbc815baebd19ee.zip
opie-1cdd9c974e621f6992ddc6dfccbc815baebd19ee.tar.gz
opie-1cdd9c974e621f6992ddc6dfccbc815baebd19ee.tar.bz2
add a qcop channel
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
@@ -38,18 +38,39 @@
#include "rotate.h"
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
+
}
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
{
return 3;
}
QString RotateApplet::name ( ) const
@@ -59,21 +80,22 @@ QString RotateApplet::name ( ) const
QString RotateApplet::text ( ) const
{
return tr( "Rotate" );
}
-QString RotateApplet::tr( const char* s ) const
+/*QString RotateApplet::tr( const char* s ) const
{
return qApp->translate( "RotateApplet", s, 0 );
}
QString RotateApplet::tr( const char* s, const char* p ) const
{
return qApp->translate( "RotateApplet", s, p );
}
+*/
QIconSet RotateApplet::icon ( ) const
{
QPixmap pix;
QImage img = Resource::loadImage ( "Rotation" );
@@ -86,12 +108,13 @@ QPopupMenu *RotateApplet::popup ( QWidget * ) const
{
return 0;
}
void RotateApplet::activated ( )
{
+
int defaultRotation = QPEApplication::defaultRotation();
int newRotation;
Config cfg( "qpe" );
cfg.setGroup( "Appearance" );