-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathfactorwidget.h
More file actions
36 lines (26 loc) · 820 Bytes
/
factorwidget.h
File metadata and controls
36 lines (26 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
SPDX-FileCopyrightText: 2021 Rafał Lalik <rafallalik@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef FACTORWIDGET_H
#define FACTORWIDGET_H
#include "krdccore_export.h"
#include <QWidgetAction>
class MainWindow;
/**
* Widget Action to display slider in the action toolbar. Each time action is
* add, the new QSlider widget is created via @ref createWidget() method.
*/
class KRDCCORE_EXPORT FactorWidget : public QWidgetAction
{
Q_OBJECT
public:
FactorWidget(QWidget *parent = nullptr);
FactorWidget(const QString &text, MainWindow *receiver, QObject *parent = nullptr);
~FactorWidget() override;
protected:
virtual QWidget *createWidget(QWidget *parent) override;
virtual void deleteWidget(QWidget *widget) override;
MainWindow *m_receiver;
};
#endif