30 lines
410 B
C++
30 lines
410 B
C++
#ifndef CONMENU_H
|
|
#define CONMENU_H
|
|
|
|
#include "pcore.h"
|
|
#include <QDialog>
|
|
|
|
|
|
class QBoxLayout;
|
|
class QHBoxLayout;
|
|
class login;
|
|
|
|
class conmenu : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
conmenu();
|
|
~conmenu();
|
|
private:
|
|
login *logcore;
|
|
protected:
|
|
PCore *core;
|
|
QHBoxLayout *cont;
|
|
QPushButton *sBut(QBoxLayout *bb, const QString &name);
|
|
private slots:
|
|
void sets();
|
|
};
|
|
|
|
#endif // CONMENU_H
|