Files
amnezia-client/client/ui/pages_logic/NewServerProtocolsLogic.h
T

25 lines
629 B
C++
Raw Normal View History

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"
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:
Q_INVOKABLE void updatePage() 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