author | harlekin <harlekin> | 2002-03-11 14:59:10 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-03-11 14:59:10 (UTC) |
commit | fbc69c770602ee58e1b2d31a60d7743abb10cc2c (patch) (side-by-side diff) | |
tree | a33b1c31b3baed2a1ce33601bc081813b34665dd | |
parent | d9406acf405148290c11a49fc09f5ed6b1258843 (diff) | |
download | opie-fbc69c770602ee58e1b2d31a60d7743abb10cc2c.zip opie-fbc69c770602ee58e1b2d31a60d7743abb10cc2c.tar.gz opie-fbc69c770602ee58e1b2d31a60d7743abb10cc2c.tar.bz2 |
added a QPE/Desktop 'suspend()' qcop channel
-rw-r--r-- | core/launcher/desktop.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 4587ec6..da535d9 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp @@ -151,48 +151,52 @@ DesktopApplication::DesktopApplication( int& argc, char **argv, Type t ) } DesktopApplication::~DesktopApplication() { delete ps; delete pa; } void DesktopApplication::receive( const QCString &msg, const QByteArray &data ) { QDataStream stream( data, IO_ReadOnly ); if (msg == "keyRegister(int key, QString channel, QString message)") { int k; QString c, m; stream >> k; stream >> c; stream >> m; qWarning("KeyRegisterRecieved: %i, %s, %s", k, (const char*)c, (const char *)m); keyRegisterList.append(QCopKeyRegister(k,c,m)); } + else if (msg == "suspend()"){ + emit power(); + } + } enum MemState { Unknown, VeryLow, Low, Normal } memstate=Unknown; #ifdef Q_WS_QWS bool DesktopApplication::qwsEventFilter( QWSEvent *e ) { qpedesktop->checkMemory(); if ( e->type == QWSEvent::Key ) { QWSKeyEvent *ke = (QWSKeyEvent *)e; if ( !loggedin && ke->simpleData.keycode != Key_F34 ) return TRUE; bool press = ke->simpleData.is_press; if (!keyRegisterList.isEmpty()) { KeyRegisterList::Iterator it; for( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) { if ((*it).getKeyCode() == ke->simpleData.keycode) QCopEnvelope((*it).getChannel().utf8(), (*it).getMessage().utf8()); } } |