remove kcontrolcenter
[kdepim.git] / incidenceeditor-ng / incidencecategories.h
blob0f612d8cdd60f3c1a1aa7f44f261ac525ea13252
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 INCIDENCECATEGORIES_H
22 #define INCIDENCECATEGORIES_H
24 #include "incidenceeditor-ng.h"
26 namespace Ui {
27 class EventOrTodoDesktop;
28 class EventOrTodoMore;
31 namespace IncidenceEditorsNG {
33 class INCIDENCEEDITORS_NG_EXPORT IncidenceCategories : public IncidenceEditor
35 Q_OBJECT
37 public:
38 #ifdef KDEPIM_MOBILE_UI
39 IncidenceCategories( Ui::EventOrTodoMore *ui );
40 #else
41 IncidenceCategories( Ui::EventOrTodoDesktop *ui );
42 #endif
44 virtual void load( const KCalCore::Incidence::ConstPtr &incidence );
45 virtual void save( const KCalCore::Incidence::Ptr &incidence);
46 virtual bool isDirty() const;
48 private slots:
49 void selectCategories();
50 void setCategories( const QStringList &categories );
52 private:
53 QStringList mSelectedCategories;
54 #ifdef KDEPIM_MOBILE_UI
55 Ui::EventOrTodoMore *mUi;
56 #else
57 Ui::EventOrTodoDesktop *mUi;
58 #endif
63 #endif // INCIDENCECATEGORIES_H