]> cloud.milkyroute.net Git - dolphin.git/blob - src/kitemviews/kstandarditem.h
Bring back basic bookmark support for the Places Panel
[dolphin.git] / src / kitemviews / kstandarditem.h
1 /***************************************************************************
2 * Copyright (C) 2012 by Peter Penz <peter.penz19@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
19
20 #ifndef KSTANDARDITEM_H
21 #define KSTANDARDITEM_H
22
23 #include <libdolphin_export.h>
24
25 #include <QByteArray>
26 #include <QHash>
27 #include <QIcon>
28 #include <QList>
29 #include <QVariant>
30
31 class KStandardItemModel;
32
33 /**
34 * @brief Represents and item of KStandardItemModel.
35 *
36 * Provides setter- and getter-methods for the most commonly
37 * used roles. It is possible to assign values for custom
38 * roles by using setDataValue().
39 */
40 class LIBDOLPHINPRIVATE_EXPORT KStandardItem
41 {
42
43 public:
44 explicit KStandardItem(KStandardItem* parent = 0);
45 explicit KStandardItem(const QString& text, KStandardItem* parent = 0);
46 KStandardItem(const QIcon& icon, const QString& text, KStandardItem* parent = 0);
47 virtual ~KStandardItem();
48
49 /**
50 * Sets the text for the "text"-role.
51 */
52 void setText(const QString& text);
53 QString text() const;
54
55 /**
56 * Sets the icon for the "iconName"-role.
57 */
58 void setIcon(const QIcon& icon);
59 QIcon icon() const;
60
61 /**
62 * Sets the group for the "group"-role.
63 */
64 void setGroup(const QString& group);
65 QString group() const;
66
67 void setDataValue(const QByteArray& role, const QVariant& value);
68 QVariant dataValue(const QByteArray& role) const;
69
70 void setParent(KStandardItem* parent);
71 KStandardItem* parent() const;
72
73 QHash<QByteArray, QVariant> data() const;
74 QList<KStandardItem*> children() const;
75
76 private:
77 KStandardItem* m_parent;
78 QList<KStandardItem*> m_children;
79 KStandardItemModel* m_model;
80
81 QHash<QByteArray, QVariant> m_data;
82
83 friend class KStandardItemModel;
84 };
85
86 #endif
87
88