1 /***************************************************************************
2 * Copyright (C) 2011 by Peter Penz <peter.penz19@gmail.com> *
4 * Based on the Itemviews NG project from Trolltech Labs: *
5 * http://qt.gitorious.org/qt-labs/itemviews-ng *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the *
19 * Free Software Foundation, Inc., *
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
21 ***************************************************************************/
23 #ifndef KITEMLISTWIDGET_H
24 #define KITEMLISTWIDGET_H
26 #include <libdolphin_export.h>
28 #include <kitemviews/kitemliststyleoption.h>
31 #include <QGraphicsWidget>
34 class KItemListSelectionToggle
;
36 class QPropertyAnimation
;
39 * @brief Provides information for creating an instance of KItemListWidget.
41 * KItemListView only creates KItemListWidget instances for the visible
42 * area. For calculating the required size of all items the expected
43 * size for the invisible items must be accessible. KItemListWidgetInformant
44 * provides this information.
46 class LIBDOLPHINPRIVATE_EXPORT KItemListWidgetInformant
49 KItemListWidgetInformant();
50 virtual ~KItemListWidgetInformant();
52 virtual void calculateItemSizeHints(QVector
<qreal
>& logicalHeightHints
, qreal
& logicalWidthHint
, const KItemListView
* view
) const = 0;
54 virtual qreal
preferredRoleColumnWidth(const QByteArray
& role
,
56 const KItemListView
* view
) const = 0;
60 * @brief Widget that shows a visible item from the model.
62 * For showing an item from a custom model it is required to at least overwrite KItemListWidget::paint().
63 * All properties are set by KItemListView, for each property there is a corresponding
64 * virtual protected method that allows to react on property changes.
66 class LIBDOLPHINPRIVATE_EXPORT KItemListWidget
: public QGraphicsWidget
71 KItemListWidget(KItemListWidgetInformant
* informant
, QGraphicsItem
* parent
);
72 virtual ~KItemListWidget();
74 void setIndex(int index
);
77 void setData(const QHash
<QByteArray
, QVariant
>& data
, const QSet
<QByteArray
>& roles
= QSet
<QByteArray
>());
78 QHash
<QByteArray
, QVariant
> data() const;
81 * Draws the hover-rectangle if the item is hovered. Overwrite this method
82 * to show the data of the custom model provided by KItemListWidget::data().
85 virtual void paint(QPainter
* painter
, const QStyleOptionGraphicsItem
* option
, QWidget
* widget
= 0);
87 void setVisibleRoles(const QList
<QByteArray
>& roles
);
88 QList
<QByteArray
> visibleRoles() const;
91 * Sets the width of a role that should be used if the alignment of the content
92 * should be done in columns.
94 void setColumnWidth(const QByteArray
& role
, qreal width
);
95 qreal
columnWidth(const QByteArray
& role
) const;
97 void setStyleOption(const KItemListStyleOption
& option
);
98 const KItemListStyleOption
& styleOption() const;
100 // TODO: Hides QGraphicsItem::setSelected()/isSelected(). Replace
101 // this by using the default mechanism.
102 void setSelected(bool selected
);
103 bool isSelected() const;
105 void setCurrent(bool current
);
106 bool isCurrent() const;
108 void setHovered(bool hovered
);
109 bool isHovered() const;
111 void setHoverPosition(const QPointF
& pos
);
113 void setAlternateBackground(bool enable
);
114 bool alternateBackground() const;
116 void setEnabledSelectionToggle(bool enabled
);
117 bool enabledSelectionToggle() const;
120 * Sets the sibling information for the item and all of its parents.
121 * The sibling information of the upper most parent is represented by
122 * the first bit, the sibling information of the item by the last bit.
123 * The sibling information is useful for drawing the branches in
126 void setSiblingsInformation(const QBitArray
& siblings
);
127 QBitArray
siblingsInformation() const;
130 * Allows the user to edit the role \a role. The signals
131 * roleEditingCanceled() or roleEditingFinished() will be
132 * emitted after editing. An ongoing editing gets canceled if
133 * the role is empty. Derived classes must implement
134 * editedRoleChanged().
136 void setEditedRole(const QByteArray
& role
);
137 QByteArray
editedRole() const;
140 * @return True if \a point is inside KItemListWidget::hoverRect(),
141 * KItemListWidget::textRect(), KItemListWidget::selectionToggleRect()
142 * or KItemListWidget::expansionToggleRect().
145 virtual bool contains(const QPointF
& point
) const;
148 * @return Rectangle for the area that shows the icon.
150 virtual QRectF
iconRect() const = 0;
153 * @return Rectangle for the area that contains the text-properties.
155 virtual QRectF
textRect() const = 0;
158 * @return Focus rectangle for indicating the current item. Per default
159 * textRect() will be returned. Overwrite this method if textRect()
160 * provides a larger rectangle than the actual text (e.g. to
161 * be aligned with the iconRect()). The textFocusRect() may not be
162 * outside the boundaries of textRect().
164 virtual QRectF
textFocusRect() const;
167 * @return Rectangle around which a selection box should be drawn if the item is selected.
169 virtual QRectF
selectionRect() const = 0;
172 * @return Rectangle for the selection-toggle that is used to select or deselect an item.
173 * Per default an empty rectangle is returned which means that no selection-toggle
176 virtual QRectF
selectionToggleRect() const;
179 * @return Rectangle for the expansion-toggle that is used to open a sub-tree of the model.
180 * Per default an empty rectangle is returned which means that no opening of sub-trees
183 virtual QRectF
expansionToggleRect() const;
186 * @return Pixmap that is used when dragging an item. Per default the current state of the
187 * widget is returned as pixmap.
189 virtual QPixmap
createDragPixmap(const QStyleOptionGraphicsItem
* option
, QWidget
* widget
= 0);
192 void roleEditingCanceled(int index
, const QByteArray
& role
, const QVariant
& value
);
193 void roleEditingFinished(int index
, const QByteArray
& role
, const QVariant
& value
);
196 virtual void dataChanged(const QHash
<QByteArray
, QVariant
>& current
, const QSet
<QByteArray
>& roles
= QSet
<QByteArray
>());
197 virtual void visibleRolesChanged(const QList
<QByteArray
>& current
, const QList
<QByteArray
>& previous
);
198 virtual void columnWidthChanged(const QByteArray
& role
, qreal current
, qreal previous
);
199 virtual void styleOptionChanged(const KItemListStyleOption
& current
, const KItemListStyleOption
& previous
);
200 virtual void currentChanged(bool current
);
201 virtual void selectedChanged(bool selected
);
202 virtual void hoveredChanged(bool hovered
);
203 virtual void alternateBackgroundChanged(bool enabled
);
204 virtual void siblingsInformationChanged(const QBitArray
& current
, const QBitArray
& previous
);
205 virtual void editedRoleChanged(const QByteArray
& current
, const QByteArray
& previous
);
206 virtual void resizeEvent(QGraphicsSceneResizeEvent
* event
);
209 * @return The current opacity of the hover-animation. When implementing a custom painting-code for a hover-state
210 * this opacity value should be respected.
212 qreal
hoverOpacity() const;
214 const KItemListWidgetInformant
* informant() const;
217 void slotHoverAnimationFinished();
220 void initializeSelectionToggle();
221 void setHoverOpacity(qreal opacity
);
222 void clearHoverCache();
223 void drawItemStyleOption(QPainter
* painter
, QWidget
* widget
, QStyle::State styleState
);
226 Q_PROPERTY(qreal hoverOpacity READ hoverOpacity WRITE setHoverOpacity
)
228 KItemListWidgetInformant
* m_informant
;
233 bool m_alternateBackground
;
234 bool m_enabledSelectionToggle
;
235 QHash
<QByteArray
, QVariant
> m_data
;
236 QList
<QByteArray
> m_visibleRoles
;
237 QHash
<QByteArray
, qreal
> m_columnWidths
;
238 KItemListStyleOption m_styleOption
;
239 QBitArray m_siblingsInfo
;
241 qreal m_hoverOpacity
;
242 mutable QPixmap
* m_hoverCache
;
243 QPropertyAnimation
* m_hoverAnimation
;
245 KItemListSelectionToggle
* m_selectionToggle
;
247 QByteArray m_editedRole
;
250 inline const KItemListWidgetInformant
* KItemListWidget::informant() const