2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2014 Philipp Spitzer, gregor herrmann, Stefan Stahl
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/>.
25 class Delegate : public QItemDelegate
44 Control(ControlId aControlId, const QString &aImageName, const Control* prev_control);
46 inline QImage *image() const { return mImage; }
47 inline void setDrawPoint(const QPoint &aPoint) { mDrawPoint = aPoint; }
48 inline QRect drawRect(const QRect &aRect) const // helper for determining if Control was clicked
50 return QRect(drawPoint(aRect), drawPoint(aRect)+QPoint(mImage->size().width(),mImage->size().height()));
52 void paint(QPainter* painter, const QRect rect);
54 bool enabled() const { return mEnabled; }
55 void setEnabled(bool v) { mEnabled = v; }
57 inline QPoint drawPoint(const QRect &aRect = QRect()) const // for painter to draw Control
59 if(aRect == QRect()) // null rectangle
60 return mDrawPoint; // returns relative drawing point
62 return QPoint(aRect.x()+aRect.width(),aRect.y()) + mDrawPoint; // returns absolute drawing point
67 QPoint mDrawPoint; // relative 'start-drawing' position (may hold negative values)
71 Delegate(QTreeView *aParent); // the delegate 'owner' has to be specified in the constructor - it's used to obtain visualRect of selected item/index
74 void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
75 QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
77 Delegate::ControlId whichControlClicked(const QModelIndex &aIndex, const QPoint &aPoint) const;
78 bool isPointFromRect(const QPoint &aPoint, const QRect &aRect) const;
81 bool hasParent( const QModelIndex &index ) const;
82 bool isLast( const QModelIndex &index ) const;
83 bool isExpanded( const QModelIndex &index ) const;
84 void defineControls();
85 // TODO: the better place for these methods would be 'eventmodel'
86 // they are used in 'paint' method and so it's better to obtain number of
87 // favourities/alarms once when the data has changed and not to call
88 // these methods which iterate over all Events in corresponding group
89 // every time it requires them
90 int numberOfFavourities(const QModelIndex &index) const;
91 int numberOfAlarms(const QModelIndex &index) const;
94 QPointer<QTreeView> mViewPtr;
95 QMap<ControlId,Control*> mControls;
98 #endif /* DELEGATE_H */