QML gui refact started
This commit is contained in:
parent
febf9cfafb
commit
135b96a280
35 changed files with 1700 additions and 523 deletions
34
client/ui/pages_logic/ServerListLogic.h
Normal file
34
client/ui/pages_logic/ServerListLogic.h
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#ifndef SERVER_LIST_LOGIC_H
|
||||
#define SERVER_LIST_LOGIC_H
|
||||
|
||||
#include "../pages.h"
|
||||
#include "settings.h"
|
||||
|
||||
class UiLogic;
|
||||
|
||||
class ServerListLogic : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ServerListLogic(UiLogic *uiLogic, QObject *parent = nullptr);
|
||||
~ServerListLogic() = default;
|
||||
|
||||
|
||||
signals:
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
private slots:
|
||||
|
||||
|
||||
|
||||
private:
|
||||
Settings m_settings;
|
||||
UiLogic *m_uiLogic;
|
||||
|
||||
|
||||
};
|
||||
#endif // SERVER_LIST_LOGIC_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue