Krazy/EBN fixes: QString::clear() instead of assigning QString()
[kphotoalbum.git] / XMLDB / XMLCategoryCollection.h
blobc1a0d2cda76ef45a12682af0565a3ba677271061
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef XMLCATEGORYCOLLECTION_H
19 #define XMLCATEGORYCOLLECTION_H
21 #include "DB/CategoryCollection.h"
22 #include <QList>
24 namespace XMLDB {
26 class XMLCategoryCollection :public DB::CategoryCollection
28 Q_OBJECT
30 public:
31 virtual DB::CategoryPtr categoryForName( const QString& name ) const;
32 void addCategory( DB::CategoryPtr );
33 virtual QStringList categoryNames() const;
34 virtual void removeCategory( const QString& name );
35 virtual void rename( const QString& oldName, const QString& newName );
36 virtual QList<DB::CategoryPtr> categories() const;
37 virtual void addCategory( const QString& text, const QString& icon, DB::Category::ViewType type,
38 int thumbnailSize, bool show );
40 void initIdMap();
42 private:
43 QList<DB::CategoryPtr> _categories;
47 #endif /* XMLCATEGORYCOLLECTION_H */