mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
16 lines
477 B
C++
16 lines
477 B
C++
#include "ServerConfiguringProgressLogic.h"
|
|
|
|
ServerConfiguringProgressLogic::ServerConfiguringProgressLogic(UiLogic *logic, QObject *parent):
|
|
PageLogicBase(logic, parent),
|
|
m_progressBarValue{0},
|
|
m_labelWaitInfoVisible{true},
|
|
m_labelWaitInfoText{tr("Please wait, configuring process may take up to 5 minutes")},
|
|
m_progressBarVisible{true},
|
|
m_progressBarMaximium{100},
|
|
m_progressBarTextVisible{true},
|
|
m_progressBarText{tr("Configuring...")}
|
|
{
|
|
|
|
}
|
|
|