Ref T438, allow to collapse "Message to" button area and disable icons

This commit is contained in:
Klaus Basan
2018-11-23 19:57:33 +01:00
parent 62860eb30b
commit 3edbd09732
5 changed files with 53 additions and 6 deletions

View File

@@ -39,6 +39,9 @@ namespace BlackGui
//! Max.number
void setMaxNumber(int number) { m_maxNumber = number; }
//! With icons
void setWithIcons(bool withIcons) { m_withIcons = withIcons; }
//! Max.number
int getMaxNumber() const { return m_maxNumber; }
@@ -66,6 +69,7 @@ namespace BlackGui
void onButtonClicked();
QScopedPointer<Ui::CAtcButtonComponent> ui;
bool m_withIcons = true;
bool m_ignoreNonAtc = true;
bool m_backgroundUpdates = true;
int m_maxNumber = 8;