summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-01-04 23:36:39 (UTC)
committer mickeyl <mickeyl>2004-01-04 23:36:39 (UTC)
commit8b0be84aaf5da9b43ab6935c1939bf77caf0aa02 (patch) (unidiff)
tree794ed2440f4fdf35588c50d1858eacdda36d6c81
parent68f09442c635da109c0f31888d4f42bd14e8de1f (diff)
downloadopie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.zip
opie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.tar.gz
opie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.tar.bz2
better not shutoff the display without shutting it on again :D
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/rotateapplet/rotate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp
index ea114bb..79098d4 100644
--- a/core/applets/rotateapplet/rotate.cpp
+++ b/core/applets/rotateapplet/rotate.cpp
@@ -33,97 +33,97 @@
33/* OPIE */ 33/* OPIE */
34#include <opie/odevice.h> 34#include <opie/odevice.h>
35#include <qpe/applnk.h> 35#include <qpe/applnk.h>
36#include <qpe/config.h> 36#include <qpe/config.h>
37#include <qpe/power.h> 37#include <qpe/power.h>
38#include <qpe/qpeapplication.h> 38#include <qpe/qpeapplication.h>
39#include <qpe/qcopenvelope_qws.h> 39#include <qpe/qcopenvelope_qws.h>
40#include <qpe/resource.h> 40#include <qpe/resource.h>
41 41
42/* QT */ 42/* QT */
43#include <qiconset.h> 43#include <qiconset.h>
44#include <qpopupmenu.h> 44#include <qpopupmenu.h>
45 45
46using namespace Opie; 46using namespace Opie;
47 47
48RotateApplet::RotateApplet() 48RotateApplet::RotateApplet()
49 :QObject( 0, "RotateApplet" ), ref( 0 ), m_flipped( false ) 49 :QObject( 0, "RotateApplet" ), ref( 0 ), m_flipped( false )
50{ 50{
51 51
52#if !defined(QT_NO_COP) 52#if !defined(QT_NO_COP)
53 QCopChannel *rotateChannel = new QCopChannel( "QPE/Rotation" , this ); 53 QCopChannel *rotateChannel = new QCopChannel( "QPE/Rotation" , this );
54 connect ( rotateChannel, SIGNAL( received( const QCString &, const QByteArray &) ), 54 connect ( rotateChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
55 this, SLOT ( channelReceived( const QCString &, const QByteArray &) ) ); 55 this, SLOT ( channelReceived( const QCString &, const QByteArray &) ) );
56#endif 56#endif
57 57
58} 58}
59 59
60RotateApplet::~RotateApplet ( ) 60RotateApplet::~RotateApplet ( )
61{} 61{}
62 62
63/** 63/**
64 * Qcop receive method. 64 * Qcop receive method.
65 */ 65 */
66void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data ) 66void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data )
67{ 67{
68 qDebug( "RotateApplet::channelReceived( '%s' )", (const char*) msg ); 68 qDebug( "RotateApplet::channelReceived( '%s' )", (const char*) msg );
69 69
70 if ( ODevice::inst()->hasHingeSensor() ) 70 if ( ODevice::inst()->hasHingeSensor() )
71 { 71 {
72 OHingeStatus status = ODevice::inst()->readHingeSensor(); 72 OHingeStatus status = ODevice::inst()->readHingeSensor();
73 qDebug( "RotateApplet::readHingeSensor = %d", (int) status ); 73 qDebug( "RotateApplet::readHingeSensor = %d", (int) status );
74 if ( status == CASE_CLOSED ) 74 if ( status == CASE_CLOSED )
75 { 75 {
76 Config cfg( "apm" ); 76 Config cfg( "apm" );
77 cfg.setGroup( PowerStatusManager::readStatus().acStatus() == PowerStatus::Online ? "AC" : "Battery" ); 77 cfg.setGroup( PowerStatusManager::readStatus().acStatus() == PowerStatus::Online ? "AC" : "Battery" );
78 int action = cfg.readNumEntry( "CloseHingeAction", 0 ); 78 int action = cfg.readNumEntry( "CloseHingeAction", 0 );
79 switch ( action ) 79 switch ( action )
80 { 80 {
81 case 1: /* DISPLAY OFF */ ODevice::inst()->setDisplayStatus( false ); ODevice::inst()->setDisplayBrightness( 0 ); break; 81 case 1: /* DISPLAY OFF */ ODevice::inst()->setDisplayBrightness( 0 ); break;
82 case 2: /* SUSPEND */ ODevice::inst()->suspend(); break; 82 case 2: /* SUSPEND */ ODevice::inst()->suspend(); break;
83 default: /* IGNORE */ break; 83 default: /* IGNORE */ break;
84 } 84 }
85 qDebug( "RotateApplet::switchAction %d performed.", cfg.readNumEntry( "CloseHingeAction", 0 ) ); 85 qDebug( "RotateApplet::switchAction %d performed.", cfg.readNumEntry( "CloseHingeAction", 0 ) );
86 } 86 }
87 } 87 }
88 88
89 QDataStream stream( data, IO_ReadOnly ); 89 QDataStream stream( data, IO_ReadOnly );
90 if ( msg == "flip()" ) 90 if ( msg == "flip()" )
91 { 91 {
92 activated ( ); 92 activated ( );
93 } 93 }
94 else if ( msg == "rotateDefault()") 94 else if ( msg == "rotateDefault()")
95 { 95 {
96 rotateDefault(); 96 rotateDefault();
97 } 97 }
98} 98}
99 99
100int RotateApplet::position() const 100int RotateApplet::position() const
101{ 101{
102 return 3; 102 return 3;
103} 103}
104 104
105QString RotateApplet::name() const 105QString RotateApplet::name() const
106{ 106{
107 return tr( "Rotate shortcut" ); 107 return tr( "Rotate shortcut" );
108} 108}
109 109
110QString RotateApplet::text() const 110QString RotateApplet::text() const
111{ 111{
112 return tr( "Rotate" ); 112 return tr( "Rotate" );
113} 113}
114 114
115/*QString RotateApplet::tr( const char* s ) const 115/*QString RotateApplet::tr( const char* s ) const
116{ 116{
117 return qApp->translate( "RotateApplet", s, 0 ); 117 return qApp->translate( "RotateApplet", s, 0 );
118} 118}
119 119
120QString RotateApplet::tr( const char* s, const char* p ) const 120QString RotateApplet::tr( const char* s, const char* p ) const
121{ 121{
122 return qApp->translate( "RotateApplet", s, p ); 122 return qApp->translate( "RotateApplet", s, p );
123} 123}
124*/ 124*/
125 125
126QIconSet RotateApplet::icon() const 126QIconSet RotateApplet::icon() const
127{ 127{
128 QPixmap pix; 128 QPixmap pix;
129 QImage img = Resource::loadImage( "Rotation" ); 129 QImage img = Resource::loadImage( "Rotation" );