KMail: Fix scrolling up/down on the message viewer
[kdepim.git] / incidenceeditor-ng / incidencecompletionpriority.h
blobc028ab04aa453bb50939a198c8630604da32a518
1 /*
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
18 02110-1301, USA.
21 #ifndef INCIDENCEEDITOR_INCIDENCECOMPLETIONPRIORITY_H
22 #define INCIDENCEEDITOR_INCIDENCECOMPLETIONPRIORITY_H
24 #include "incidenceeditor-ng.h"
26 namespace Ui
28 class EventOrTodoDesktop;
31 namespace IncidenceEditorNG
34 class INCIDENCEEDITORS_NG_EXPORT IncidenceCompletionPriority : public IncidenceEditor
36 Q_OBJECT
37 public:
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);
45 void save(const KCalCore::Incidence::Ptr &incidence);
46 bool isDirty() const;
48 private:
49 class Private;
50 Private *const d;
52 Q_PRIVATE_SLOT(d, void sliderValueChanged(int))
57 #endif