2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011 Philipp Spitzer, gregor herrmann
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
23 #include <QItemDelegate>
27 class Delegate : public QItemDelegate
46 Control(ControlId aControlId, const QString &aImageName, const Control* prev_control);
48 inline QImage *image() const { return mImage; }
49 inline void setDrawPoint(const QPoint &aPoint) { mDrawPoint = aPoint; }
50 inline QRect drawRect(const QRect &aRect) const // helper for determining if Control was clicked
52 return QRect(drawPoint(aRect), drawPoint(aRect)+QPoint(mImage->size().width(),mImage->size().height()));
54 void paint(QPainter* painter, const QRect rect);
56 bool enabled() const { return mEnabled; }
57 void setEnabled(bool v) { mEnabled = v; }
59 inline QPoint drawPoint(const QRect &aRect = QRect()) const // for painter to draw Control
61 if(aRect == QRect()) // null rectangle
62 return mDrawPoint; // returns relative drawing point
64 return QPoint(aRect.x()+aRect.width(),aRect.y()) + mDrawPoint; // returns absolute drawing point
69 QPoint mDrawPoint; // relative 'start-drawing' position (may hold negative values)
73 Delegate(QTreeView *aParent); // the delegate 'owner' has to be specified in the constructor - it's used to obtain visualRect of selected item/index
76 void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
77 QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
79 Delegate::ControlId whichControlClicked(const QModelIndex &aIndex, const QPoint &aPoint) const;
80 bool isPointFromRect(const QPoint &aPoint, const QRect &aRect) const;
83 bool hasParent( const QModelIndex &index ) const;
84 bool isLast( const QModelIndex &index ) const;
85 bool isExpanded( const QModelIndex &index ) const;
86 void defineControls();
87 // TODO: the better place for these methods would be 'eventmodel'
88 // they are used in 'paint' method and so it's better to obtain number of
89 // favourities/alarms once when the data has changed and not to call
90 // these methods which iterate over all Events in corresponding group
91 // every time it requires them
92 int numberOfFavourities(const QModelIndex &index) const;
93 int numberOfAlarms(const QModelIndex &index) const;
96 QPointer<QTreeView> mViewPtr;
97 QMap<ControlId,Control*> mControls;
100 #endif /* DELEGATE_H */