You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.1 KiB
81 lines
3.1 KiB
/*
|
|
* alarmdaemon.h - alarm daemon control routines
|
|
* Program: KAlarm's alarm daemon (kalarmd)
|
|
* Copyright © 2001,2004-2007 by David Jarvie <software@astrojar.org.uk>
|
|
* Based on the original, (c) 1998, 1999 Preston Brown
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef ALARMDAEMON_H
|
|
#define ALARMDAEMON_H
|
|
|
|
#include <libkcal/calendarlocal.h>
|
|
|
|
#include "alarmdaemoniface.h"
|
|
|
|
class ADCalendar;
|
|
|
|
|
|
class AlarmDaemon : public TQObject, virtual public AlarmDaemonIface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AlarmDaemon(bool autostart, TQObject* parent = 0, const char* name = 0);
|
|
|
|
private slots:
|
|
//#ifdef AUTOSTART_KALARM
|
|
void autostartKAlarm();
|
|
//#endif
|
|
void calendarLoaded(ADCalendar*, bool success);
|
|
void checkAlarmsSlot();
|
|
void checkAlarms();
|
|
|
|
private:
|
|
// DCOP interface
|
|
void enableAutoStart(bool enable);
|
|
void enableCalendar(const TQString& urlString, bool enable)
|
|
{ enableCal(expandURL(urlString), enable); }
|
|
void reloadCalendar(const TQCString& appname, const TQString& urlString)
|
|
{ reloadCal(appname, expandURL(urlString), false); }
|
|
void resetCalendar(const TQCString& appname, const TQString& urlString)
|
|
{ reloadCal(appname, expandURL(urlString), true); }
|
|
void registerApp(const TQCString& appName, const TQString& appTitle, const TQCString& dcopObject,
|
|
const TQString& calendarUrl, bool startClient);
|
|
void registerChange(const TQCString& appName, bool startClient);
|
|
void eventHandled(const TQCString& appname, const TQString& calendarURL, const TQString& eventID, bool reload);
|
|
void timeConfigChanged() { readKAlarmConfig(); }
|
|
void quit();
|
|
// Other methods
|
|
void readKAlarmConfig();
|
|
void startMonitoring();
|
|
void enableCal(const TQString& urlString, bool enable);
|
|
void reloadCal(const TQCString& appname, const TQString& urlString, bool reset);
|
|
void reloadCal(ADCalendar*, bool reset);
|
|
void checkAlarms(ADCalendar*);
|
|
bool notifyEvent(ADCalendar*, const TQString& eventID);
|
|
void notifyCalStatus(const ADCalendar*);
|
|
void setTimerStatus();
|
|
static TQString expandURL(const TQString& urlString);
|
|
|
|
TQTimer* mAlarmTimer;
|
|
int mAlarmTimerSyncCount; // countdown to re-synching the alarm timer
|
|
bool mAlarmTimerSyncing; // true while alarm timer interval < 1 minute
|
|
TQTime mStartOfDay; // start of day for date-only alarms
|
|
};
|
|
|
|
#endif // ALARMDAEMON_H
|