2018-03-16 21:46:57 +00:00
|
|
|
#ifndef CUTTERWIDGET_H
|
|
|
|
#define CUTTERWIDGET_H
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
|
2019-01-13 11:40:54 +00:00
|
|
|
#include "common/RefreshDeferrer.h"
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
class MainWindow;
|
|
|
|
|
|
|
|
class CutterDockWidget : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-03-10 22:26:25 +00:00
|
|
|
explicit CutterDockWidget(MainWindow *parent, QAction *action = nullptr);
|
2019-01-12 17:02:51 +00:00
|
|
|
~CutterDockWidget() override;
|
|
|
|
bool eventFilter(QObject *object, QEvent *event) override;
|
2019-01-12 19:25:43 +00:00
|
|
|
bool isVisibleToUser() { return isVisibleToUserCurrent; }
|
2019-01-12 17:02:51 +00:00
|
|
|
|
2019-04-27 09:46:29 +00:00
|
|
|
/**
|
|
|
|
* @brief Set whether the Widget should be deleted after it is closed.
|
|
|
|
* This is especially important for extra widgets.
|
|
|
|
*/
|
|
|
|
void setTransient(bool v) { isTransient = v; }
|
|
|
|
|
2019-03-06 20:30:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Convenience method for creating and registering a RefreshDeferrer without any parameters
|
|
|
|
* @param refreshNowFunc lambda taking no parameters, called when a refresh should occur
|
2019-01-13 14:26:55 +00:00
|
|
|
*/
|
|
|
|
template<typename Func>
|
|
|
|
RefreshDeferrer *createRefreshDeferrer(Func refreshNowFunc)
|
|
|
|
{
|
|
|
|
auto *deferrer = new RefreshDeferrer(nullptr, this);
|
|
|
|
deferrer->registerFor(this);
|
|
|
|
connect(deferrer, &RefreshDeferrer::refreshNow, this, [refreshNowFunc](const RefreshDeferrerParamsResult) {
|
|
|
|
refreshNowFunc();
|
|
|
|
});
|
|
|
|
return deferrer;
|
|
|
|
}
|
|
|
|
|
2019-03-06 20:30:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Convenience method for creating and registering a RefreshDeferrer with a replacing Accumulator
|
|
|
|
* @param replaceIfNull passed to the ReplacingRefreshDeferrerAccumulator
|
|
|
|
* @param refreshNowFunc lambda taking a single parameter of type ParamResult, called when a refresh should occur
|
2019-01-13 14:26:55 +00:00
|
|
|
*/
|
2019-01-13 11:40:54 +00:00
|
|
|
template<class ParamResult, typename Func>
|
2019-01-13 13:59:08 +00:00
|
|
|
RefreshDeferrer *createReplacingRefreshDeferrer(bool replaceIfNull, Func refreshNowFunc)
|
2019-01-13 11:40:54 +00:00
|
|
|
{
|
2019-01-13 13:59:08 +00:00
|
|
|
auto *deferrer = new RefreshDeferrer(new ReplacingRefreshDeferrerAccumulator<ParamResult>(replaceIfNull), this);
|
2019-01-13 11:40:54 +00:00
|
|
|
deferrer->registerFor(this);
|
|
|
|
connect(deferrer, &RefreshDeferrer::refreshNow, this, [refreshNowFunc](const RefreshDeferrerParamsResult paramsResult) {
|
2019-01-13 13:59:08 +00:00
|
|
|
auto *result = static_cast<const ParamResult *>(paramsResult);
|
|
|
|
refreshNowFunc(result);
|
2019-01-13 11:40:54 +00:00
|
|
|
});
|
|
|
|
return deferrer;
|
|
|
|
}
|
2019-02-07 10:42:53 +00:00
|
|
|
|
2019-03-27 08:24:54 +00:00
|
|
|
signals:
|
|
|
|
void becameVisibleToUser();
|
2019-06-18 13:02:41 +00:00
|
|
|
void closed();
|
2019-03-27 08:24:54 +00:00
|
|
|
|
2019-02-07 10:42:53 +00:00
|
|
|
public slots:
|
|
|
|
void toggleDockWidget(bool show);
|
|
|
|
|
2019-03-27 08:24:54 +00:00
|
|
|
protected:
|
|
|
|
virtual QWidget* widgetToFocusOnRaise();
|
|
|
|
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
QAction *getBoundAction() const;
|
2019-07-19 19:21:12 +00:00
|
|
|
QString getDockNumber();
|
2019-02-07 10:42:53 +00:00
|
|
|
|
2019-06-18 18:22:26 +00:00
|
|
|
MainWindow *mainWindow;
|
2019-07-19 19:21:12 +00:00
|
|
|
|
|
|
|
private:
|
2019-02-07 10:42:53 +00:00
|
|
|
QAction *action;
|
|
|
|
|
2019-04-27 09:46:29 +00:00
|
|
|
bool isTransient = false;
|
|
|
|
|
2019-02-07 10:42:53 +00:00
|
|
|
bool isVisibleToUserCurrent = false;
|
|
|
|
void updateIsVisibleToUser();
|
2018-03-16 21:46:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CUTTERWIDGET_H
|