cutter/src/widgets/relocswidget.h
Hugo Teso ca821e1064 First code commit
First commit with the app code
2017-03-29 12:18:37 +02:00

33 lines
533 B
C++

#ifndef RELOCSWIDGET_H
#define RELOCSWIDGET_H
#include <QDockWidget>
#include <QTreeWidget>
class MainWindow;
namespace Ui {
class RelocsWidget;
}
class RelocsWidget : public QDockWidget
{
Q_OBJECT
public:
explicit RelocsWidget(MainWindow *main, QWidget *parent = 0);
~RelocsWidget();
QTreeWidget *relocsTreeWidget;
private slots:
void on_relocsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
private:
Ui::RelocsWidget *ui;
MainWindow *main;
};
#endif // RELOCSWIDGET_H