raDIYo 0.4
swrotarywidget.h
1/***************************************************************************
2
3 source::worx raDIYo
4 Copyright © 2020-2022 c.holzheuer
5 c.holzheuer@sourceworx.org
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12***************************************************************************/
13
14#ifndef SWROTARYWIDGET_H
15#define SWROTARYWIDGET_H
16
17#include <QWidget>
18
19#include <ui_swrotarywidget.h>
20
21QT_BEGIN_NAMESPACE
22namespace Ui { class SWRotaryWidget; }
23QT_END_NAMESPACE
24
25
26class SWRotaryWidget : public QWidget, private Ui_SWRotaryWidget
27{
28 Q_OBJECT
29
30public:
31
32 explicit SWRotaryWidget( QWidget *parent = nullptr );
33
34 //??
35 QPushButton* pushButton();
36 QDial* dial();
37
38
39};
40
41#endif // SWROTARYWIDGET_H