refactor: ScreenCorners, Use enum instead of cast to int

This commit is contained in:
Tomaz Canabrava
2025-05-08 12:50:04 +02:00
committed by Nick Bolton
parent 49589ae4aa
commit 2b3ecd39c6
2 changed files with 6 additions and 6 deletions

View File

@ -133,9 +133,9 @@ protected:
{
m_Aliases.append(alias);
}
void setSwitchCorner(int c, bool on)
void setSwitchCorner(SwitchCorner c, bool on)
{
m_SwitchCorners[c] = on;
m_SwitchCorners[static_cast<int8_t>(c)] = on;
}
QList<bool> &switchCorners()
{

View File

@ -102,10 +102,10 @@ void ScreenSettingsDialog::accept()
m_pScreen->setModifier(Meta, ui_->m_pComboBoxMeta->currentIndex());
m_pScreen->setModifier(Super, ui_->m_pComboBoxSuper->currentIndex());
m_pScreen->setSwitchCorner(static_cast<int>(TopLeft), ui_->m_pCheckBoxCornerTopLeft->isChecked());
m_pScreen->setSwitchCorner(static_cast<int>(TopRight), ui_->m_pCheckBoxCornerTopRight->isChecked());
m_pScreen->setSwitchCorner(static_cast<int>(BottomLeft), ui_->m_pCheckBoxCornerBottomLeft->isChecked());
m_pScreen->setSwitchCorner(static_cast<int>(BottomRight), ui_->m_pCheckBoxCornerBottomRight->isChecked());
m_pScreen->setSwitchCorner(TopLeft, ui_->m_pCheckBoxCornerTopLeft->isChecked());
m_pScreen->setSwitchCorner(TopRight, ui_->m_pCheckBoxCornerTopRight->isChecked());
m_pScreen->setSwitchCorner(BottomLeft, ui_->m_pCheckBoxCornerBottomLeft->isChecked());
m_pScreen->setSwitchCorner(BottomRight, ui_->m_pCheckBoxCornerBottomRight->isChecked());
m_pScreen->setSwitchCornerSize(ui_->m_pSpinBoxSwitchCornerSize->value());
m_pScreen->setFix(static_cast<int>(CapsLock), ui_->m_pCheckBoxCapsLock->isChecked());