raDIYo 0.4
swsetupcontrol.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 SWSETUPCONTROL_H
16#define SWSETUPCONTROL_H
17
18#include <swabstractcontrol.h>
19#include <ui_swsetupcontrol.h>
20#include <QWidget>
21
22QT_BEGIN_NAMESPACE
23namespace Ui { class SWSetupControl; }
24QT_END_NAMESPACE
25
26
27class SWSetupControl : public SWAbstractControl, private Ui_SWSetupControl
28{
29
30 Q_OBJECT
31
32public:
33
34 explicit SWSetupControl( SWRaDIYoMainWidget* parent );
35 virtual ~SWSetupControl();
36
37public slots:
38
39 void onDialClicked() override;
40 void onDialValueChanged( int value ) override;
41
42protected slots:
43
44 void onSongsClicked();
45 void onSenderClicked();
46};
47
48#endif // SWSETUPCONTROL_H