diff --git a/UVOSicon.bmp b/UVOSicon.bmp new file mode 100644 index 0000000..9565919 Binary files /dev/null and b/UVOSicon.bmp differ diff --git a/alarmsettingsdialog.cpp b/alarmsettingsdialog.cpp new file mode 100644 index 0000000..c5ede00 --- /dev/null +++ b/alarmsettingsdialog.cpp @@ -0,0 +1,14 @@ +#include "alarmsettingsdialog.h" +#include "ui_alarmsettingsdialog.h" + +AlarmSettingsDialog::AlarmSettingsDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::AlarmSettingsDialog) +{ + ui->setupUi(this); +} + +AlarmSettingsDialog::~AlarmSettingsDialog() +{ + delete ui; +} diff --git a/alarmsettingsdialog.h b/alarmsettingsdialog.h new file mode 100644 index 0000000..1970816 --- /dev/null +++ b/alarmsettingsdialog.h @@ -0,0 +1,22 @@ +#ifndef ALARMSETTINGSDIALOG_H +#define ALARMSETTINGSDIALOG_H + +#include + +namespace Ui { +class AlarmSettingsDialog; +} + +class AlarmSettingsDialog : public QDialog +{ + Q_OBJECT + +public: + explicit AlarmSettingsDialog(QWidget *parent = 0); + ~AlarmSettingsDialog(); + +private: + Ui::AlarmSettingsDialog *ui; +}; + +#endif // ALARMSETTINGSDIALOG_H diff --git a/alarmsettingsdialog.ui b/alarmsettingsdialog.ui new file mode 100644 index 0000000..f721017 --- /dev/null +++ b/alarmsettingsdialog.ui @@ -0,0 +1,71 @@ + + + + + AlarmSettingsDialog + + + + 0 + 0 + 400 + 300 + + + + Dialog + + + + + 30 + 240 + 341 + 32 + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + buttonBox + accepted() + AlarmSettingsDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + AlarmSettingsDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/power.cpp b/power.cpp new file mode 100644 index 0000000..43bd7d3 --- /dev/null +++ b/power.cpp @@ -0,0 +1,6 @@ +#include "power.h" + +Power::Power(QObject *parent) : QObject(parent) +{ + +} diff --git a/power.h b/power.h new file mode 100644 index 0000000..3e20c8b --- /dev/null +++ b/power.h @@ -0,0 +1,17 @@ +#ifndef POWER_H +#define POWER_H + +#include + +class Power : public QObject +{ + Q_OBJECT +public: + explicit Power(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // POWER_H \ No newline at end of file diff --git a/resources.qrc b/resources.qrc new file mode 100644 index 0000000..90f4a83 --- /dev/null +++ b/resources.qrc @@ -0,0 +1,2 @@ + +