48 lines
1023 B
C++
48 lines
1023 B
C++
/***************************************************************************
|
|
|
|
source::worx raDIYo
|
|
Copyright © 2020-2022 c.holzheuer
|
|
chris@sourceworx.org
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef SWSETUPCONTROL_H
|
|
#define SWSETUPCONTROL_H
|
|
|
|
#include <swbasecontrol.h>
|
|
#include <ui_swsetupcontrol.h>
|
|
|
|
|
|
/**
|
|
* @brief Control, das die Setup-Seite darstellt.
|
|
*/
|
|
|
|
class SWSetupControl : public SWBaseControl, private Ui_SWSetup
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SWSetupControl( QWidget* parent, QSettings* settings );
|
|
virtual ~SWSetupControl() = default;
|
|
|
|
public slots:
|
|
|
|
void onShow() override;
|
|
|
|
|
|
protected slots:
|
|
|
|
void onSongsClicked();
|
|
void onSenderClicked();
|
|
};
|
|
|
|
#endif // SWSETUPCONTROL_H
|