raDIYo 0.4
swdialdialog.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
15#ifndef SWDIALDIALOG_H
16#define SWDIALDIALOG_H
17
18#include <QDialog>
19#include <ui_swdialdialog.h>
20
21namespace Ui {
22class SWDialDialog;
23}
24
25class SWDialDialog : public QDialog, private Ui_SWDialDialog
26{
27
28 Q_OBJECT
29
30public:
31
32 explicit SWDialDialog( QWidget* parent = nullptr );
33 virtual ~SWDialDialog();
34
35 SWRotaryWidget& leftDial();
36 SWRotaryWidget& rightDial();
37
38};
39
40#endif // SWDIALDIALOG_H