summaryrefslogtreecommitdiff
path: root/core
Side-by-side diff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/desktop.cpp28
1 files changed, 21 insertions, 7 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index 6ee7132..0e60839 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -177,6 +177,8 @@ public:
void restore()
{
- if ( !m_lcd_status ) // We must have turned it off
+ if ( !m_lcd_status ) { // We must have turned it off
ODevice::inst ( ) -> setDisplayStatus ( true );
+ m_lcd_status = true;
+ }
setBacklight ( -3 );
@@ -304,4 +306,12 @@ public:
}
+ void setDisplayState ( bool on )
+ {
+ if ( m_lcd_status != on ) {
+ ODevice::inst ( ) -> setDisplayStatus ( on );
+ m_lcd_status = on;
+ }
+ }
+
private:
int m_disable_suspend;
@@ -378,10 +388,4 @@ void DesktopApplication::desktopMessage( const QCString &msg, const QByteArray &
keyRegisterList.append( QCopKeyRegister( k, c, m ) );
}
- else if ( msg == "suspend()" ) {
- emit power();
- }
- else if ( msg == "home()" ) {
- qpedesktop-> home ( );
- }
#endif
}
@@ -413,4 +417,12 @@ void DesktopApplication::systemMessage( const QCString & msg, const QByteArray &
m_screensaver-> setMode ( mode );
}
+ else if ( msg == "setDisplayState(int)" ) {
+ int state;
+ stream >> state;
+ m_screensaver-> setDisplayState ( state != 0 );
+ }
+ else if ( msg == "suspend()" ) {
+ emit power();
+ }
#endif
}
@@ -629,4 +641,6 @@ Desktop::Desktop() :
qApp->installEventFilter( this );
+
+ qApp-> setMainWidget ( launcher );
}