Updated the Tools menu to reflect current build.
[kdepim.git] / kalarm / startdaytimer.cpp
blobd4af6c4addf9bc3281490bd26b6df212b5039c82
1 /*
2 * startdaytimer.cpp - timer triggered at the user-defined start-of-day time
3 * Program: kalarm
4 * Copyright © 2004,2005,2009 by David Jarvie <djarvie@kde.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include "kalarm.h"
23 #include "preferences.h"
24 #include "startdaytimer.moc"
27 StartOfDayTimer* StartOfDayTimer::mInstance = 0;
29 StartOfDayTimer::StartOfDayTimer()
30 : DailyTimer(Preferences::startOfDay(), false)
32 Preferences::connect(SIGNAL(startOfDayChanged(QTime)), this, SLOT(startOfDayChanged()));
35 StartOfDayTimer* StartOfDayTimer::instance()
37 if (!mInstance)
38 mInstance = new StartOfDayTimer; // receive notifications of change of start-of-day time
39 return mInstance;
42 /******************************************************************************
43 * Called when the start-of-day time has changed.
44 * The timer is adjusted and if appropriate timer events are triggered now.
46 void StartOfDayTimer::startOfDayChanged()
48 changeTime(Preferences::startOfDay(), true);
51 // vim: et sw=4: