cutter/src/widgets/OverviewWidget.h

39 lines
730 B
C
Raw Normal View History

#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;
2019-03-06 20:30:39 +00:00
/**
* @brief this takes care of scaling the overview when the widget is resized
2019-01-24 18:04:39 +00:00
*/
void resizeEvent(QResizeEvent *event) override;
private slots:
2019-03-06 20:30:39 +00:00
/**
* @brief update the overview
*/
void updateContents();
signals:
2019-03-06 20:30:39 +00:00
/**
* @brief emit signal to update the rect
*/
void resized();
};
#endif // OverviewWIDGET_H