mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
552021c38d
* prevents layout problems * fix header change when doubleclicking in unsynchronized function
39 lines
726 B
C++
39 lines
726 B
C++
#ifndef GRAPHWIDGET_H
|
|
#define GRAPHWIDGET_H
|
|
|
|
#include "MemoryDockWidget.h"
|
|
#include <QLineEdit>
|
|
|
|
class MainWindow;
|
|
class DisassemblerGraphView;
|
|
|
|
class GraphWidget : public MemoryDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GraphWidget(MainWindow *main, QAction *action = nullptr);
|
|
~GraphWidget() override {}
|
|
|
|
DisassemblerGraphView *getGraphView() const;
|
|
|
|
static QString getWidgetType();
|
|
|
|
signals:
|
|
void graphClosed();
|
|
|
|
protected:
|
|
QWidget *widgetToFocusOnRaise() override;
|
|
|
|
private:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
QString getWindowTitle() const override;
|
|
void prepareHeader();
|
|
|
|
DisassemblerGraphView *graphView;
|
|
QLineEdit *header = nullptr;
|
|
};
|
|
|
|
#endif // GRAPHWIDGET_H
|