mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
25 lines
412 B
C
25 lines
412 B
C
|
#ifndef BOOKMARKSTREEWIDGET_H
|
||
|
#define BOOKMARKSTREEWIDGET_H
|
||
|
|
||
|
#include <QTreeWidget>
|
||
|
#include <QTreeWidgetItem>
|
||
|
#include <QMouseEvent>
|
||
|
|
||
|
class TreeWidget : public QTreeWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit TreeWidget(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
void itemControlClicked(QTreeWidgetItem *item);
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
private:
|
||
|
void mousePressEvent(QMouseEvent *event);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BOOKMARKSTREEWIDGET_H
|