mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
29 lines
490 B
C
29 lines
490 B
C
|
#ifndef OVERVIEWWIDGET_H
|
||
|
#define OVERVIEWWIDGET_H
|
||
|
|
||
|
#include "CutterDockWidget.h"
|
||
|
|
||
|
class MainWindow;
|
||
|
class OverviewView;
|
||
|
|
||
|
class OverviewWidget : public CutterDockWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit OverviewWidget(MainWindow *main, QAction *action = nullptr);
|
||
|
~OverviewWidget();
|
||
|
OverviewView *graphView;
|
||
|
|
||
|
private:
|
||
|
RefreshDeferrer *refreshDeferrer;
|
||
|
|
||
|
private slots:
|
||
|
/**
|
||
|
* @brief update the overview
|
||
|
*/
|
||
|
void updateContents();
|
||
|
};
|
||
|
|
||
|
#endif // OverviewWIDGET_H
|