qt5
Last change
on this file since 11f3f87 was
11f3f87,
checked in by gregor herrmann <gregoa@…>, 8 years ago
|
Update copyright notices.
|
-
Property mode set to
100644
|
File size:
1.5 KB
|
Rev | Line | |
---|
[ca90cb1] | 1 | /* |
---|
| 2 | * Copyright (C) 2010 Ixonos Plc. |
---|
[11f3f87] | 3 | * Copyright (C) 2011-2014 Philipp Spitzer, gregor herrmann, Stefan Stahl |
---|
[ca90cb1] | 4 | * |
---|
[6df32f2] | 5 | * This file is part of ConfClerk. |
---|
[ca90cb1] | 6 | * |
---|
[6df32f2] | 7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
[ca90cb1] | 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) |
---|
| 10 | * any later version. |
---|
| 11 | * |
---|
[6df32f2] | 12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
[ca90cb1] | 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 |
---|
| 15 | * more details. |
---|
| 16 | * |
---|
| 17 | * You should have received a copy of the GNU General Public License along with |
---|
[6df32f2] | 18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
[ca90cb1] | 19 | */ |
---|
[66327a0] | 20 | #ifndef TREEVIEW_H |
---|
| 21 | #define TREEVIEW_H |
---|
| 22 | |
---|
| 23 | #include <QTreeView> |
---|
| 24 | |
---|
| 25 | class TreeView : public QTreeView |
---|
| 26 | { |
---|
[59c6cfe] | 27 | Q_OBJECT |
---|
[66327a0] | 28 | public: |
---|
| 29 | TreeView(QWidget *aParent = NULL); |
---|
| 30 | ~TreeView() {} |
---|
| 31 | private: |
---|
| 32 | void mouseReleaseEvent(QMouseEvent *aEvent); |
---|
[c53a3f4] | 33 | bool testForControlClicked(const QModelIndex &aIndex, const QPoint &aPoint); |
---|
[b8a3ad1] | 34 | public slots: |
---|
| 35 | void setAllExpanded(bool aExpanded); // (aExpanded==true) => expanded; (aExpanded==false) => collapsed |
---|
[8fe9bd2] | 36 | private slots: |
---|
| 37 | void handleItemClicked(const QModelIndex &index); |
---|
[59c6cfe] | 38 | signals: |
---|
[ea638ef] | 39 | void requestForConflicts(const QModelIndex &aIndex); |
---|
[dc66a91] | 40 | void eventChanged(int aEventId, bool favouriteChanged); // emited when user changes some event details, eg. sets it Favourite |
---|
[66327a0] | 41 | }; |
---|
| 42 | |
---|
| 43 | #endif /* TREEVIEW_H */ |
---|
| 44 | |
---|
Note: See
TracBrowser
for help on using the repository browser.