46 lines
1.0 KiB
C++
46 lines
1.0 KiB
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 SWSHUTDOWNCONTROL_H
|
|
#define SWSHUTDOWNCONTROL_H
|
|
|
|
class QSettings;
|
|
|
|
#include <ui_swshutdowncontrol.h>
|
|
#include <swdialcontrol.h>
|
|
|
|
|
|
/**
|
|
* @brief Control, das die Shutdown-Seite darstellt.
|
|
*/
|
|
|
|
class SWShutdownControl : public SWDialControl, private Ui_SWShutdownControl
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SWShutdownControl( QWidget* parent, QSettings* settings );
|
|
virtual ~SWShutdownControl() = default;
|
|
|
|
public slots:
|
|
|
|
void onWidgetClicked( SWDialWidget* ) override;
|
|
|
|
};
|
|
|
|
|
|
#endif // SWSHUTDOWNCONTROL_H
|