qt5
Last change
on this file since 67c59a7 was
92995da,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
just some directory renaming
- renamed 'model' to 'mvc' (Model-View-Controller), since it contains also 'delegate' and 'view'
|
-
Property mode set to
100644
|
File size:
331 bytes
|
Line | |
---|
1 | #ifndef TREEVIEW_H |
---|
2 | #define TREEVIEW_H |
---|
3 | |
---|
4 | #include <QTreeView> |
---|
5 | |
---|
6 | class TreeView : public QTreeView |
---|
7 | { |
---|
8 | public: |
---|
9 | TreeView(QWidget *aParent = NULL); |
---|
10 | ~TreeView() {} |
---|
11 | private: |
---|
12 | void mouseReleaseEvent(QMouseEvent *aEvent); |
---|
13 | void testForControlClicked(const QModelIndex &aIndex, const QPoint &aPoint); |
---|
14 | }; |
---|
15 | |
---|
16 | #endif /* TREEVIEW_H */ |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.