File: pTreeComboBox.h

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (104 lines) | stat: -rw-r--r-- 3,107 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/****************************************************************************
    Copyright (C) 2005 - 2011  Filipe AZEVEDO & The Monkey Studio Team
    http://monkeystudio.org licensing under the GNU GPL.

    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 St, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/
/*!
    \file pTreeComboBox.h
    \date 2008-01-14T00:27:56
    \author Filipe AZEVEDO aka Nox P\@sNox <pasnox@gmail.com>
    \brief An extended QComboBox
*/
#ifndef PTREECOMBOBOX_H
#define PTREECOMBOBOX_H

#include "../objects/MonkeyExport.h"

#include <QWidget>
#include <QModelIndex>
#include <QPointer>

class QFrame;
class QTreeView;
class QAbstractItemModel;

/*!
    \brief An extended QComboBox
    \details that handle a QTreeView
*/
class Q_MONKEY_EXPORT pTreeComboBox : public QWidget
{
    Q_OBJECT

public:
    pTreeComboBox( QWidget* parent = 0 );
    ~pTreeComboBox();

    bool eventFilter( QObject* object, QEvent* event );

    virtual QSize sizeHint() const;
    int count() const;

    virtual QSize iconSize() const;
    virtual void setIconSize( const QSize& size );

    virtual void hidePopup();
    virtual void showPopup();

    QTreeView* view() const;
    void setView( QTreeView* view );

    QAbstractItemModel* model() const;
    void setModel( QAbstractItemModel* model );

    QModelIndex rootIndex() const;
    void setRootIndex( const QModelIndex& index );

    QModelIndex currentIndex() const;
    void setCurrentIndex( const QModelIndex& index );
    
    void expandAll();

protected slots:
    void internal_activated( const QModelIndex& index );
    void internal_clicked( const QModelIndex& index );
    void internal_currentChanged( const QModelIndex& current, const QModelIndex& previous );

protected:
    QSize mIconSize;
    QSize mSizeHint;
    QFrame* mFrame;
    QPointer<QTreeView> mView;
    QPointer<QAbstractItemModel> mModel;
    QModelIndex mIndex;
    bool mForce;

    void paintEvent( QPaintEvent* event );
    void hideEvent( QHideEvent* event );
    void enterEvent( QEvent* event );
    void leaveEvent( QEvent* event );
    void mousePressEvent( QMouseEvent* event );

    void calculPopupGeometry();

signals:
    void activated( const QModelIndex& index );
    void clicked( const QModelIndex& index );
    void currentChanged( const QModelIndex& index );
    void highlighted( const QModelIndex& index );
};

#endif // PTREECOMBOBOX_H