author | tille <tille> | 2002-07-06 14:34:09 (UTC) |
---|---|---|
committer | tille <tille> | 2002-07-06 14:34:09 (UTC) |
commit | 76685f88ebcfd475c2d3c6d8c69271883053b09f (patch) (side-by-side diff) | |
tree | 35289cc1378ac48a3781c049ba657455d5c18d98 | |
parent | 2d2eda28dd68bb989c3af8bb7f95d8255e886dda (diff) | |
download | opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.zip opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.tar.gz opie-76685f88ebcfd475c2d3c6d8c69271883053b09f.tar.bz2 |
clockapplet uses qcop call to open settime dialog
-rw-r--r-- | core/applets/clockapplet/clock.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/applets/clockapplet/clock.cpp b/core/applets/clockapplet/clock.cpp index c186fb3..ba079bf 100644 --- a/core/applets/clockapplet/clock.cpp +++ b/core/applets/clockapplet/clock.cpp @@ -19,21 +19,23 @@ **********************************************************************/ #include "clock.h" #include <qpe/global.h> #include <qpe/qpeapplication.h> +#include <qpe/qcopenvelope_qws.h> #include <qpe/config.h> #include <qmainwindow.h> #include <qlayout.h> #include <qpushbutton.h> #include <qmessagebox.h> #include <qdatetime.h> #include <qtimer.h> #include <qpopupmenu.h> +#include <qfile.h> #include <stdlib.h> LauncherClock::LauncherClock( QWidget *parent ) : QLabel( parent ) { // If you want a sunken border around the clock do this: @@ -55,13 +57,22 @@ void LauncherClock::readConfig() { config.setGroup( "Date" ); format = config.readNumEntry("ClockApplet",0); } void LauncherClock::mouseReleaseEvent( QMouseEvent * ) { - Global::execute( "systemtime" ); + QCString setTimeApp; + if (QFile::exists(QPEApplication::qpeDir()+"bin/netsystemtime")) + setTimeApp="netsystemtime"; + else setTimeApp="systemtime"; + qDebug("app "+setTimeApp); + QCopEnvelope e("QPE/Application/"+setTimeApp, "setDocument(QString)"); + QString lf = QString::null; + + e << lf; + } void LauncherClock::timerEvent( QTimerEvent *e ) { if ( !e || e->timerId() == timerId ) { |