mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 19:25:49 +08:00
refactor: Remove option to disable autologoff
Auto logoff was always enabled in normal builds anyway, even when the
user tried to disable it (see 8eff8cd).
This commit is contained in:
@@ -85,13 +85,6 @@ namespace BlackGui::Components
|
||||
// override details/voice
|
||||
ui->comp_NetworkDetails->setAlwaysAllowOverride(true);
|
||||
|
||||
// auto logoff
|
||||
// we decided to make it difficult for users to disable it
|
||||
if (!CBuildConfig::isLocalDeveloperDebugBuild())
|
||||
{
|
||||
ui->cb_AutoLogoff->setChecked(true);
|
||||
}
|
||||
|
||||
// Stored data
|
||||
this->loadRememberedUserData();
|
||||
|
||||
@@ -105,17 +98,11 @@ namespace BlackGui::Components
|
||||
|
||||
// inital setup, if data already available
|
||||
ui->form_Pilot->validate();
|
||||
ui->cb_AutoLogoff->setChecked(m_networkSetup.useAutoLogoff());
|
||||
}
|
||||
|
||||
CLoginAdvComponent::~CLoginAdvComponent()
|
||||
{}
|
||||
|
||||
void CLoginAdvComponent::setAutoLogoff(bool autoLogoff)
|
||||
{
|
||||
ui->cb_AutoLogoff->setChecked(autoLogoff);
|
||||
}
|
||||
|
||||
void CLoginAdvComponent::loginCancelled()
|
||||
{
|
||||
this->closeOverlay();
|
||||
@@ -129,7 +116,6 @@ namespace BlackGui::Components
|
||||
|
||||
const bool isConnected = sGui && sGui->getIContextNetwork()->isConnected();
|
||||
const bool vatsimLogin = ui->comp_NetworkDetails->isVatsimServerSelected();
|
||||
m_networkSetup.setAutoLogoff(ui->cb_AutoLogoff->isChecked());
|
||||
|
||||
ui->form_Pilot->setVatsimValidation(vatsimLogin);
|
||||
|
||||
@@ -323,7 +309,6 @@ namespace BlackGui::Components
|
||||
|
||||
void CLoginAdvComponent::autoLogoffDetection()
|
||||
{
|
||||
if (!ui->cb_AutoLogoff->isChecked()) { return; }
|
||||
if (!this->hasValidContexts()) { return; }
|
||||
if (!sGui->getIContextNetwork()->isConnected()) { return; } // nothing to logoff
|
||||
|
||||
@@ -337,7 +322,6 @@ namespace BlackGui::Components
|
||||
void CLoginAdvComponent::autoLogoffFrameRate(bool fatal)
|
||||
{
|
||||
//! \fixme code duplication with function above
|
||||
if (!ui->cb_AutoLogoff->isChecked()) { return; }
|
||||
if (!this->hasValidContexts()) { return; }
|
||||
if (!sGui->getIContextNetwork()->isConnected()) { return; }
|
||||
|
||||
|
||||
@@ -60,9 +60,6 @@ namespace BlackGui::Components
|
||||
//! Automatically popup
|
||||
void setAutoPopupWizad(bool autoPopup);
|
||||
|
||||
//! Set auto logoff
|
||||
void setAutoLogoff(bool autoLogoff);
|
||||
|
||||
//! Login requested
|
||||
void toggleNetworkConnection();
|
||||
|
||||
|
||||
@@ -223,16 +223,6 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="cb_AutoLogoff">
|
||||
<property name="toolTip">
|
||||
<string>automatically logoff when simulator changes or appears crashed</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>auto logoff</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -266,7 +256,6 @@
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
<tabstop>form_Pilot</tabstop>
|
||||
<tabstop>cb_AutoLogoff</tabstop>
|
||||
<tabstop>pb_Connect</tabstop>
|
||||
<tabstop>pb_Cancel</tabstop>
|
||||
</tabstops>
|
||||
|
||||
@@ -161,7 +161,6 @@ namespace BlackGui::Components
|
||||
// inital setup, if data already available
|
||||
this->validateAircraftValues();
|
||||
ui->form_Pilot->validate();
|
||||
ui->cb_AutoLogoff->setChecked(m_networkSetup.useAutoLogoff());
|
||||
this->onWebServiceDataRead(CEntityFlags::VatsimDataFile, CEntityFlags::ReadFinished, -1, {});
|
||||
this->reloadOtherServersSetup();
|
||||
|
||||
@@ -202,12 +201,6 @@ namespace BlackGui::Components
|
||||
this->updateUiConnectState();
|
||||
this->blinkConnectButton();
|
||||
}
|
||||
|
||||
// we decided to make it difficult for users to disable it
|
||||
if (!CBuildConfig::isLocalDeveloperDebugBuild())
|
||||
{
|
||||
ui->cb_AutoLogoff->setChecked(true);
|
||||
}
|
||||
}
|
||||
|
||||
void CLoginComponent::setLogoffCountdown(int timeoutSeconds)
|
||||
@@ -235,7 +228,6 @@ namespace BlackGui::Components
|
||||
|
||||
m_networkConnected = sGui && sGui->getIContextNetwork()->isConnected();
|
||||
const bool vatsimLogin = this->isVatsimNetworkTabSelected();
|
||||
m_networkSetup.setAutoLogoff(ui->cb_AutoLogoff->isChecked());
|
||||
|
||||
ui->form_Pilot->setVatsimValidation(vatsimLogin);
|
||||
this->updateUiConnectState();
|
||||
@@ -691,7 +683,6 @@ namespace BlackGui::Components
|
||||
|
||||
void CLoginComponent::autoLogoffDetection()
|
||||
{
|
||||
if (!ui->cb_AutoLogoff->isChecked()) { return; }
|
||||
if (!this->hasValidContexts()) { return; }
|
||||
if (!sGui->getIContextNetwork()->isConnected()) { return; } // nothing to logoff
|
||||
|
||||
@@ -707,7 +698,6 @@ namespace BlackGui::Components
|
||||
void CLoginComponent::autoLogoffFrameRate(bool fatal)
|
||||
{
|
||||
//! \fixme code duplication with function above
|
||||
if (!ui->cb_AutoLogoff->isChecked()) { return; }
|
||||
if (!this->hasValidContexts()) { return; }
|
||||
if (!sGui->getIContextNetwork()->isConnected()) { return; }
|
||||
|
||||
|
||||
@@ -871,16 +871,6 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="cb_AutoLogoff">
|
||||
<property name="toolTip">
|
||||
<string>automatically logoff when simulator changes or appears crashed</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>auto logoff</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -965,7 +955,6 @@
|
||||
<tabstop>le_LoginAsAircaft</tabstop>
|
||||
<tabstop>le_LoginSince</tabstop>
|
||||
<tabstop>tb_Timeout</tabstop>
|
||||
<tabstop>cb_AutoLogoff</tabstop>
|
||||
<tabstop>pb_Ok</tabstop>
|
||||
<tabstop>pb_Cancel</tabstop>
|
||||
<tabstop>comp_OtherServers</tabstop>
|
||||
|
||||
@@ -35,12 +35,6 @@ namespace BlackGui::Components
|
||||
CLoginDialog::~CLoginDialog()
|
||||
{}
|
||||
|
||||
void CLoginDialog::setAutoLogoff(bool logoff)
|
||||
{
|
||||
ui->comp_LoginComponent->setAutoLogoff(logoff);
|
||||
ui->comp_LoginOverviewComponent->setAutoLogoff(logoff);
|
||||
}
|
||||
|
||||
void CLoginDialog::show()
|
||||
{
|
||||
this->init();
|
||||
|
||||
@@ -30,9 +30,6 @@ namespace BlackGui::Components
|
||||
//! Destructor
|
||||
virtual ~CLoginDialog() override;
|
||||
|
||||
//! Set auto logoff
|
||||
void setAutoLogoff(bool logoff);
|
||||
|
||||
//! Init and show
|
||||
void show();
|
||||
|
||||
|
||||
@@ -84,26 +84,13 @@ namespace BlackGui::Components
|
||||
ui->form_Pilot->setReadOnly(true);
|
||||
ui->form_Server->setReadOnly(true);
|
||||
|
||||
// auto logoff
|
||||
// we decided to make it difficult for users to disable it
|
||||
if (!CBuildConfig::isLocalDeveloperDebugBuild())
|
||||
{
|
||||
ui->cb_AutoLogoff->setChecked(true);
|
||||
}
|
||||
|
||||
// inital setup, if data already available
|
||||
ui->form_Pilot->validate();
|
||||
ui->cb_AutoLogoff->setChecked(m_networkSetup.useAutoLogoff());
|
||||
}
|
||||
|
||||
CLoginOverviewComponent::~CLoginOverviewComponent()
|
||||
{}
|
||||
|
||||
void CLoginOverviewComponent::setAutoLogoff(bool autoLogoff)
|
||||
{
|
||||
ui->cb_AutoLogoff->setChecked(autoLogoff);
|
||||
}
|
||||
|
||||
void CLoginOverviewComponent::cancel()
|
||||
{
|
||||
this->closeOverlay();
|
||||
@@ -116,7 +103,6 @@ namespace BlackGui::Components
|
||||
if (!sGui->getIContextNetwork() || !sGui->getIContextAudio()) { return; }
|
||||
|
||||
const bool isConnected = sGui && sGui->getIContextNetwork()->isConnected();
|
||||
m_networkSetup.setAutoLogoff(ui->cb_AutoLogoff->isChecked());
|
||||
|
||||
CStatusMessage msg;
|
||||
if (!isConnected)
|
||||
|
||||
@@ -55,9 +55,6 @@ namespace BlackGui::Components
|
||||
//! Destructor
|
||||
virtual ~CLoginOverviewComponent() override;
|
||||
|
||||
//! Set auto logoff
|
||||
void setAutoLogoff(bool autoLogoff);
|
||||
|
||||
//! Login requested
|
||||
void toggleNetworkConnection();
|
||||
|
||||
|
||||
@@ -272,16 +272,6 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="cb_AutoLogoff">
|
||||
<property name="toolTip">
|
||||
<string>automatically logoff when simulator changes or appears crashed</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>auto logoff</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -317,7 +307,6 @@
|
||||
<tabstop>le_LoginMode</tabstop>
|
||||
<tabstop>le_PartnerCallsign</tabstop>
|
||||
<tabstop>gb_OwnAircraft</tabstop>
|
||||
<tabstop>cb_AutoLogoff</tabstop>
|
||||
<tabstop>pb_Disconnect</tabstop>
|
||||
<tabstop>pb_Cancel</tabstop>
|
||||
</tabstops>
|
||||
|
||||
Reference in New Issue
Block a user