feat: fix entryWidget button behaviour

This commit is contained in:
semenov
2025-08-15 14:19:33 +03:00
parent 0c805708ef
commit 87db4d0ef4
26 changed files with 5292 additions and 5219 deletions

View File

@@ -15,7 +15,7 @@ void EntryWidget::initialize()
ui->settingsWidget->hide();
}
void EntryWidget::connectionEmptyState()
void EntryWidget::disconnectState()
{
show();
ui->offlineWidget->show();
@@ -44,7 +44,7 @@ ClientAutorization* EntryWidget::getAuthData()
return data;
}
void EntryWidget::loginIsActive(bool flag)
void EntryWidget::showLoginWidget(bool flag)
{
if(flag)
{
@@ -91,6 +91,11 @@ void EntryWidget::isActive(bool flag)
else ui->settingsWidget->hide();
}
bool EntryWidget::getLoginWidgetIsHidden()
{
return ui->loginWidget->isHidden();
}
EntryWidget::~EntryWidget()
{