Add admin panel
This commit is contained in:
parent
2c72beab6a
commit
9f2eb3c573
6 changed files with 276 additions and 7 deletions
|
|
@ -1,7 +1,12 @@
|
|||
#ifndef AUTHWINDOW_H
|
||||
#define AUTHWINDOW_H
|
||||
|
||||
#include <system/apparatus.h>
|
||||
|
||||
#include "adminpanel.h"
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QMessageBox>
|
||||
|
||||
namespace Ui {
|
||||
class AuthWindow;
|
||||
|
|
@ -10,11 +15,16 @@ class AuthWindow;
|
|||
class AuthWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
bool firstRun;
|
||||
|
||||
public:
|
||||
explicit AuthWindow(QWidget *parent = nullptr);
|
||||
explicit AuthWindow(QWidget *parent = nullptr, bool fr = false);
|
||||
~AuthWindow();
|
||||
|
||||
|
||||
private slots:
|
||||
void on_auth_requested();
|
||||
|
||||
private:
|
||||
Ui::AuthWindow *ui;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue