2 Copyright (C) 2010 Klaralvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
3 Author: Kevin Krammer <krake@kdab.com>
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
21 #ifndef INCIDENCEEDITOR_INCIDENCECOMPLETIONPRIORITY_H
22 #define INCIDENCEEDITOR_INCIDENCECOMPLETIONPRIORITY_H
24 #include "incidenceeditor-ng.h"
28 class EventOrTodoDesktop
;
31 namespace IncidenceEditorNG
34 class IncidenceCompletionPriority
: public IncidenceEditor
38 using IncidenceEditorNG::IncidenceEditor::save
; // So we don't trigger -Woverloaded-virtual
39 using IncidenceEditorNG::IncidenceEditor::load
; // So we don't trigger -Woverloaded-virtual
41 explicit IncidenceCompletionPriority(Ui::EventOrTodoDesktop
*ui
);
42 ~IncidenceCompletionPriority();
44 void load(const KCalCore::Incidence::Ptr
&incidence
) Q_DECL_OVERRIDE
;
45 void save(const KCalCore::Incidence::Ptr
&incidence
) Q_DECL_OVERRIDE
;
46 bool isDirty() const Q_DECL_OVERRIDE
;
52 Q_PRIVATE_SLOT(d
, void sliderValueChanged(int))