/src/kandas-client/viewdelegate.h
http://kandas.googlecode.com/ · C Header · 46 lines · 22 code · 7 blank · 17 comment · 0 complexity · ddb317eaf6ce0a3dbe447c9de219783d MD5 · raw file
- /***************************************************************************
- * Copyright 2009 Stefan Majewsky <majewsky@gmx.net>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- ***************************************************************************/
- #ifndef KANDAS_CLIENT_VIEWDELEGATE_H
- #define KANDAS_CLIENT_VIEWDELEGATE_H
- #include <kwidgetitemdelegate.h>
- namespace Kandas
- {
- namespace Client
- {
- class ViewDelegate : public KWidgetItemDelegate
- {
- Q_OBJECT
- public:
- ViewDelegate(QAbstractItemView *view, QObject *parent = 0);
- virtual QList<QWidget *> createItemWidgets() const;
- virtual void updateItemWidgets(const QList<QWidget *> widgets, const QStyleOptionViewItem &option, const QPersistentModelIndex &index) const;
- virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
- virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
- Q_SIGNALS:
- void actionTriggered(const QPersistentModelIndex &index, const QString &action);
- };
- }
- }
- #endif // KANDAS_CLIENT_VIEWDELEGATE_H