cutter/src/widgets/OverviewWidget.h
Vanellope 1a132ecf83 Fix an wrong positioning of the rect of Overview (#1171)
* Fix an wrong positioning of the rect of Overview

* Fix commenting and a resizing issue
2019-02-07 20:39:37 +00:00

39 lines
727 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;
/*
* \brief this takes care of scaling the overview when the widget is resized
*/
void resizeEvent(QResizeEvent *event) override;
private slots:
/*
* \brief update the overview
*/
void updateContents();
signals:
/*
* \brief emit signal to update the rect
*/
void resized();
};
#endif // OverviewWIDGET_H