2017-07-13 18:49:12 +00:00
|
|
|
#ifndef ENTRYPOINTWIDGET_H
|
|
|
|
#define ENTRYPOINTWIDGET_H
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
2017-07-13 18:49:12 +00:00
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
class QTreeWidget;
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class EntrypointWidget;
|
|
|
|
}
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
class EntrypointWidget : public QDockWidget
|
2017-07-13 18:49:12 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit EntrypointWidget(MainWindow *main, QWidget *parent = 0);
|
|
|
|
~EntrypointWidget();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_entrypointTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
void fillEntrypoint();
|
|
|
|
|
2017-07-13 18:49:12 +00:00
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::EntrypointWidget> ui;
|
2017-07-13 18:49:12 +00:00
|
|
|
MainWindow *main;
|
|
|
|
|
|
|
|
void setScrollMode();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ENTRYPOINTWIDGET_H
|