2021-09-07 11:48:25 +03:00
|
|
|
#ifndef NEW_SERVER_PROTOCOLS_LOGIC_H
|
|
|
|
|
#define NEW_SERVER_PROTOCOLS_LOGIC_H
|
|
|
|
|
|
2021-09-07 21:01:56 +03:00
|
|
|
#include "PageLogicBase.h"
|
2022-08-25 17:35:28 +03:00
|
|
|
#include "containers/containers_defs.h"
|
2021-09-07 11:48:25 +03:00
|
|
|
|
|
|
|
|
class UiLogic;
|
|
|
|
|
|
2021-09-07 21:01:56 +03:00
|
|
|
class NewServerProtocolsLogic : public PageLogicBase
|
2021-09-07 11:48:25 +03:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
2021-09-07 22:11:43 +03:00
|
|
|
AUTO_PROPERTY(double, progressBarConnectionMinimum)
|
|
|
|
|
AUTO_PROPERTY(double, progressBarConnectionMaximum)
|
2021-09-07 18:06:05 +03:00
|
|
|
|
2021-09-07 22:11:43 +03:00
|
|
|
public:
|
2021-09-22 14:49:08 +03:00
|
|
|
Q_INVOKABLE void onUpdatePage() override;
|
2021-09-20 21:51:28 +03:00
|
|
|
Q_INVOKABLE void onPushButtonConfigureClicked(DockerContainer c, int port, TransportProto tp);
|
2021-09-07 11:48:25 +03:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit NewServerProtocolsLogic(UiLogic *uiLogic, QObject *parent = nullptr);
|
|
|
|
|
~NewServerProtocolsLogic() = default;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
#endif // NEW_SERVER_PROTOCOLS_LOGIC_H
|