qt5
Last change
on this file since eb21333 was
ea638ef,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
implemented 'conflicts' dialog
- displays rooms instead of conflicts for now
- needs to implement additional methods in Event, ...
|
-
Property mode set to
100644
|
File size:
761 bytes
|
Rev | Line | |
---|
[66327a0] | 1 | #ifndef TREEVIEW_H |
---|
| 2 | #define TREEVIEW_H |
---|
| 3 | |
---|
| 4 | #include <QTreeView> |
---|
| 5 | |
---|
| 6 | class TreeView : public QTreeView |
---|
| 7 | { |
---|
[59c6cfe] | 8 | Q_OBJECT |
---|
[66327a0] | 9 | public: |
---|
| 10 | TreeView(QWidget *aParent = NULL); |
---|
| 11 | ~TreeView() {} |
---|
| 12 | private: |
---|
| 13 | void mouseReleaseEvent(QMouseEvent *aEvent); |
---|
[c53a3f4] | 14 | bool testForControlClicked(const QModelIndex &aIndex, const QPoint &aPoint); |
---|
[b8a3ad1] | 15 | public slots: |
---|
| 16 | void setAllExpanded(bool aExpanded); // (aExpanded==true) => expanded; (aExpanded==false) => collapsed |
---|
[8fe9bd2] | 17 | private slots: |
---|
| 18 | void handleItemClicked(const QModelIndex &index); |
---|
[59c6cfe] | 19 | signals: |
---|
| 20 | void requestForMap(const QModelIndex &aIndex); |
---|
[ea638ef] | 21 | void requestForConflicts(const QModelIndex &aIndex); |
---|
[c718a77] | 22 | void eventHasChanged(int aEventId); // emited when user changes some event details, eg. sets it Favourite |
---|
[66327a0] | 23 | }; |
---|
| 24 | |
---|
| 25 | #endif /* TREEVIEW_H */ |
---|
| 26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.