feat: add new states

This commit is contained in:
semenov
2025-12-17 16:18:14 +03:00
parent 9e202f8e5d
commit 4e15a439ee
17 changed files with 96 additions and 26625 deletions

View File

@@ -19,14 +19,29 @@ void PostProcessorSystem::initialize(DataParserOutput *dataParserOutput,
}
void PostProcessorSystem::userArchived()
{
emit sigShowError(ErrorsEnum::ARCHIVED);
}
void PostProcessorSystem::wrongLoginOrPass()
{
emit sigShowError(ErrorsEnum::LOGIN_OR_PASS);
}
void PostProcessorSystem::alreadyLogin()
{
emit sigShowError(ErrorsEnum::ALREADYLOGIN);
}
void PostProcessorSystem::socketDisable()
{
emit sigSocketDisabled();
emit sigShowError(ErrorsEnum::DISABLE);
}
void PostProcessorSystem::serverBlocked()
{
emit sigServerBlocked();
emit sigShowError(ErrorsEnum::BLOCKED);
}
void PostProcessorSystem::startCompare()