summaryrefslogtreecommitdiff
path: root/core/applets/rotateapplet
authorgroucho <groucho>2003-03-26 08:48:04 (UTC)
committer groucho <groucho>2003-03-26 08:48:04 (UTC)
commit174bf901c2a59bbf1980ea3e770bfb33c50f1c08 (patch) (side-by-side diff)
tree0e73b0b445fc8bd91288d8f96351aa3b54bc7f04 /core/applets/rotateapplet
parent77aa3a82f511038d81705af30a169b809ff29002 (diff)
downloadopie-174bf901c2a59bbf1980ea3e770bfb33c50f1c08.zip
opie-174bf901c2a59bbf1980ea3e770bfb33c50f1c08.tar.gz
opie-174bf901c2a59bbf1980ea3e770bfb33c50f1c08.tar.bz2
On older ipaqs the display is rotated to 270 as default so adding 90 does nothing => fixed by rotating the values (270+90=0, 0-90=370)
Diffstat (limited to 'core/applets/rotateapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/rotateapplet/rotate.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp
index 653c61f..e236cd1 100644
--- a/core/applets/rotateapplet/rotate.cpp
+++ b/core/applets/rotateapplet/rotate.cpp
@@ -90,11 +90,19 @@ QPopupMenu *RotateApplet::popup ( QWidget * ) const
void RotateApplet::activated ( )
{
int currentRotation = QPEApplication::defaultRotation();
+
int newRotation;
if ( m_native == true ) {
+
newRotation = currentRotation + 90;
+ if(newRotation >= 360) newRotation = 0; //ipaqs like the 36xx have the display
+ //rotated to 270 as default, so 360 does nothing => handle this here
+
} else {
newRotation = currentRotation - 90;
+ if (newRotation <=0) newRotation = 270;
+ //ipaqs like the 36xx have the display rotated
+ // to 270 as default, and -90 is invalid => handle this here
}
QCopEnvelope env( "QPE/System", "setCurrentRotation(int)" );
env << newRotation;