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