Add admin panel

This commit is contained in:
Andrew nuark G 2020-12-21 21:24:15 +07:00
parent 2c72beab6a
commit 9f2eb3c573
6 changed files with 276 additions and 7 deletions

View file

@ -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;
};