filter bank HPF Ui
This commit is contained in:
parent
8716004c5e
commit
11bd76a458
1 changed files with 8 additions and 0 deletions
|
@ -36,6 +36,14 @@ FilterBankWidget::FilterBankWidget(QWidget *parent)
|
||||||
"font-size: 8px;}");
|
"font-size: 8px;}");
|
||||||
connect(m_bypass, SIGNAL(stateChanged(int)), this, SLOT(bypassChanged(int)));
|
connect(m_bypass, SIGNAL(stateChanged(int)), this, SLOT(bypassChanged(int)));
|
||||||
master->addWidget(fb[0]);
|
master->addWidget(fb[0]);
|
||||||
|
fb[0]->setFocusPolicy(Qt::NoFocus);
|
||||||
|
fb[0]->setButtonSymbols(QAbstractSpinBox::NoButtons);
|
||||||
|
fb[0]->setValue(-1);
|
||||||
|
fb[0]->setDecimals(1);
|
||||||
|
fb[0]->setAlignment(Qt::AlignHCenter);
|
||||||
|
fb[0]->setContentsMargins(0, 0, 0, 0);
|
||||||
|
fb[0]->setMaximumWidth(66);
|
||||||
|
fb[0]->setMinimumWidth(25);
|
||||||
layout->addLayout(master);
|
layout->addLayout(master);
|
||||||
for (int i = 1; i < 13;) {
|
for (int i = 1; i < 13;) {
|
||||||
QVBoxLayout *filterLayout= new QVBoxLayout;
|
QVBoxLayout *filterLayout= new QVBoxLayout;
|
||||||
|
|
Loading…
Add table
Reference in a new issue