~ubuntu-branches/debian/sid/kexi/sid

« back to all changes in this revision

Viewing changes to src/widget/navigator/KexiProjectItemDelegate.h

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2017-06-24 20:10:10 UTC
  • Revision ID: package-import@ubuntu.com-20170624201010-5lrzd5r2vwthwifp
Tags: upstream-3.0.1.1
Import upstream version 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2011-2014 Jarosław Staniek <staniek@kde.org>
 
3
 
 
4
   This library is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU Library General Public
 
6
   License version 2 as published by the Free Software Foundation.
 
7
 
 
8
   This library is distributed in the hope that it will be useful,
 
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
   Library General Public License for more details.
 
12
 
 
13
   You should have received a copy of the GNU Library General Public License
 
14
   along with this library; see the file COPYING.LIB.  If not, write to
 
15
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
   Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
#ifndef KEXIPROJECTITEMDELEGATE_H
 
20
#define KEXIPROJECTITEMDELEGATE_H
 
21
 
 
22
#include <QStyledItemDelegate>
 
23
 
 
24
class KexiProject;
 
25
 
 
26
//! @short Item delegate for the Kexi navigator tree view
 
27
/*! It's currently needed to validate input when renaming items
 
28
    (KDbIdentifierValidator is used for this).
 
29
    @todo In the future custom painting and/or editing may be added through this delegate. */
 
30
class KexiProjectItemDelegate : public QStyledItemDelegate
 
31
{
 
32
    Q_OBJECT
 
33
public:
 
34
    explicit KexiProjectItemDelegate(QObject *parent = 0);
 
35
    virtual ~KexiProjectItemDelegate();
 
36
    virtual void paint(QPainter *painter, const QStyleOptionViewItem &option,
 
37
                       const QModelIndex &index) const;
 
38
    virtual QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &option,
 
39
                                  const QModelIndex &index) const;
 
40
    virtual QSize sizeHint(const QStyleOptionViewItem &option,
 
41
                           const QModelIndex &index) const;
 
42
 
 
43
private:
 
44
    class Private;
 
45
    Private * const d;
 
46
};
 
47
 
 
48
#endif // KEXIPROJECTITEMDELEGATE_H