first re-commit.
This commit is contained in:
45
swshutdowncontrol.h
Normal file
45
swshutdowncontrol.h
Normal file
@@ -0,0 +1,45 @@
|
||||
/***************************************************************************
|
||||
|
||||
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
|
Reference in New Issue
Block a user