forked from KDE/krdc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfactorwidget.h
More file actions
40 lines (30 loc) · 872 Bytes
/
factorwidget.h
File metadata and controls
40 lines (30 loc) · 872 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
37
38
39
40
/*
SPDX-FileCopyrightText: 2021 Rafał Lalik <rafallalik@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef FACTORWIDGET_H
#define FACTORWIDGET_H
#ifndef QTONLY
#include "krdccore_export.h"
#else
#define KRDCCORE_EXPORT
#endif
#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