diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /korganizer/korgac/alarmdockwindow.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/korgac/alarmdockwindow.cpp')
-rw-r--r-- | korganizer/korgac/alarmdockwindow.cpp | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/korganizer/korgac/alarmdockwindow.cpp b/korganizer/korgac/alarmdockwindow.cpp new file mode 100644 index 000000000..5f2c419c7 --- /dev/null +++ b/korganizer/korgac/alarmdockwindow.cpp @@ -0,0 +1,195 @@ +/* + This file is part of KOrganizer. + + Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +*/ + +#include "alarmdockwindow.h" +#include "koalarmclient.h" + +#include <kapplication.h> +#include <kdebug.h> +#include <kdeversion.h> +#include <klocale.h> +#include <kiconloader.h> +#include <kconfig.h> +#include <kurl.h> +#include <kstandarddirs.h> +#include <dcopclient.h> +#include <kpopupmenu.h> +#include <kmessagebox.h> +#include <kaction.h> +#include <kstdaction.h> + +#include <qtooltip.h> +#include <qfile.h> + +#include <stdlib.h> + +AlarmDockWindow::AlarmDockWindow( const char *name ) + : KSystemTray( 0, name ) +{ + // Read the autostart status from the config file + KConfig *config = kapp->config(); + config->setGroup("General"); + bool autostart = config->readBoolEntry( "Autostart", true ); + bool alarmsEnabled = config->readBoolEntry( "Enabled", true ); + + mName = i18n( "KOrganizer Reminder Daemon" ); + setCaption( mName ); + + // Set up icons + KGlobal::iconLoader()->addAppDir( "korgac" ); + mPixmapEnabled = loadIcon( "korgac" ); + mPixmapDisabled = loadIcon( "korgac_disabled" ); + + setPixmap( alarmsEnabled ? mPixmapEnabled : mPixmapDisabled ); + + // Set up the context menu + mSuspendAll = contextMenu()->insertItem( i18n("Suspend All"), this, SLOT( slotSuspendAll() ) ); + mDismissAll = contextMenu()->insertItem( i18n("Dismiss All"), this, SLOT( slotDismissAll() ) ); + contextMenu()->setItemEnabled( mSuspendAll, false ); + contextMenu()->setItemEnabled( mDismissAll, false ); + + contextMenu()->insertSeparator(); + mAlarmsEnabledId = contextMenu()->insertItem( i18n("Reminders Enabled"), this, + SLOT( toggleAlarmsEnabled() ) ); + mAutostartId = contextMenu()->insertItem( i18n("Start Reminder Daemon at Login"), this, + SLOT( toggleAutostart() ) ); + contextMenu()->setItemChecked( mAutostartId, autostart ); + contextMenu()->setItemChecked( mAlarmsEnabledId, alarmsEnabled ); + + // Disable standard quit behaviour. We have to intercept the quit even, if the + // main window is hidden. + KActionCollection *ac = actionCollection(); + const char *quitName = KStdAction::name( KStdAction::Quit ); + KAction *quit = ac->action( quitName ); + if ( !quit ) { + kdDebug(5890) << "No Quit standard action." << endl; + } else { +#if KDE_IS_VERSION(3,3,90) + quit->disconnect( SIGNAL( activated() ), this, + SLOT( maybeQuit() ) ); + connect( quit, SIGNAL( activated() ), SLOT( slotQuit() ) ); + } +#else //FIXME: remove for KDE 4.0 + quit->disconnect( SIGNAL( activated() ), qApp, + SLOT( closeAllWindows() ) ); + } + connect( this, SIGNAL( quitSelected() ), SLOT( slotQuit() ) ); +#endif + + QToolTip::add(this, mName ); +} + +AlarmDockWindow::~AlarmDockWindow() +{ +} + +void AlarmDockWindow::slotUpdate( int reminders ) +{ + QToolTip::remove( this ); + if ( reminders > 0 ) + { + QToolTip::add( this, i18n( "There is 1 active reminder.", + "There are %n active reminders.", reminders ) ); + contextMenu()->setItemEnabled( mSuspendAll, true ); + contextMenu()->setItemEnabled( mDismissAll, true ); + } + else + { + QToolTip::add( this, mName ); + contextMenu()->setItemEnabled( mSuspendAll, false ); + contextMenu()->setItemEnabled( mDismissAll, false ); + } +} + +void AlarmDockWindow::toggleAlarmsEnabled() +{ + kdDebug(5890) << "AlarmDockWindow::toggleAlarmsEnabled()" << endl; + + KConfig *config = kapp->config(); + config->setGroup( "General" ); + + bool enabled = !contextMenu()->isItemChecked( mAlarmsEnabledId ); + contextMenu()->setItemChecked( mAlarmsEnabledId, enabled ); + setPixmap( enabled ? mPixmapEnabled : mPixmapDisabled ); + + config->writeEntry( "Enabled", enabled ); + config->sync(); +} + +void AlarmDockWindow::toggleAutostart() +{ + bool autostart = !contextMenu()->isItemChecked( mAutostartId ); + + enableAutostart( autostart ); +} + +void AlarmDockWindow::slotSuspendAll() +{ + emit suspendAllSignal(); +} + +void AlarmDockWindow::slotDismissAll() +{ + emit dismissAllSignal(); +} + +void AlarmDockWindow::enableAutostart( bool enable ) +{ + KConfig *config = kapp->config(); + config->setGroup( "General" ); + config->writeEntry( "Autostart", enable ); + config->sync(); + + contextMenu()->setItemChecked( mAutostartId, enable ); +} + +void AlarmDockWindow::mousePressEvent( QMouseEvent *e ) +{ + if ( e->button() == LeftButton ) { + kapp->startServiceByDesktopName( "korganizer", QString::null ); + } else { + KSystemTray::mousePressEvent( e ); + } +} + +//void AlarmDockWindow::closeEvent( QCloseEvent * ) +void AlarmDockWindow::slotQuit() +{ + int result = KMessageBox::questionYesNoCancel( this, + i18n("Do you want to start the KOrganizer reminder daemon at login " + "(note that you will not get reminders whilst the daemon is not running)?"), + i18n("Close KOrganizer Reminder Daemon"), + i18n("Start"), i18n("Do Not Start"), + QString::fromLatin1("AskForStartAtLogin") + ); + + bool autostart = true; + if ( result == KMessageBox::No ) autostart = false; + enableAutostart( autostart ); + + if ( result != KMessageBox::Cancel ) + emit quitSignal(); +} + +#include "alarmdockwindow.moc" |