change KTTSD to Jovie
[kdepim.git] / incidenceeditor-ng / incidencealarm.h
blob19e7db9c243313ea8b718b1d56e1c267a9a9e581
1 /*
2 Copyright (c) 2010 Bertjan Broeksema <broeksema@kde.org>
3 Copyright (C) 2010 Klaralvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
5 This library is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or (at your
8 option) any later version.
10 This library is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 02110-1301, USA.
21 #ifndef INCIDENCEEDITOR_INCIDENCEALARM_H
22 #define INCIDENCEEDITOR_INCIDENCEALARM_H
24 #include "incidenceeditor-ng.h"
26 namespace Ui {
27 class EventOrTodoDesktop;
28 class EventOrTodoMore;
31 namespace IncidenceEditorNG {
33 class IncidenceDateTime;
35 class INCIDENCEEDITORS_NG_EXPORT IncidenceAlarm : public IncidenceEditor
37 Q_OBJECT
38 public:
39 #ifdef KDEPIM_MOBILE_UI
40 IncidenceAlarm( IncidenceDateTime *dateTime, Ui::EventOrTodoMore *ui );
41 #else
42 IncidenceAlarm( IncidenceDateTime *dateTime, Ui::EventOrTodoDesktop *ui );
43 #endif
45 virtual void load( const KCalCore::Incidence::Ptr &incidence );
46 virtual void save( const KCalCore::Incidence::Ptr &incidence );
47 virtual bool isDirty() const;
49 Q_SIGNALS:
50 void alarmCountChanged( int newCount );
52 private Q_SLOTS:
53 void editCurrentAlarm();
54 void handleDateTimeToggle();
55 void newAlarm();
56 void newAlarmFromPreset();
57 void removeCurrentAlarm();
58 void toggleCurrentAlarm();
59 void updateAlarmList();
60 void updateButtons();
62 private:
63 QString stringForAlarm( const KCalCore::Alarm::Ptr &alarm );
65 private:
66 #ifdef KDEPIM_MOBILE_UI
67 Ui::EventOrTodoMore *mUi;
68 #else
69 Ui::EventOrTodoDesktop *mUi;
70 #endif
72 KCalCore::Alarm::List mAlarms;
73 IncidenceDateTime *mDateTime;
74 int mEnabledAlarmCount;
75 bool mIsTodo;
80 #endif