| 116 | } |
| 117 | |
| 118 | void |
| 119 | FACTab::connectAll(void) |
| 120 | { |
| 121 | connect( |
| 122 | this->ui->recordButton, |
| 123 | SIGNAL(clicked(bool)), |
| 124 | this, |
| 125 | SLOT(onRecord(void))); |
| 126 | |
| 127 | connect( |
| 128 | this->ui->unitCheck, |
| 129 | SIGNAL(clicked(bool)), |
| 130 | this, |
| 131 | SLOT(onUnitsChanged(void))); |
| 132 | |
| 133 | connect( |
| 134 | this->ui->detectPeaksCheck, |
| 135 | SIGNAL(clicked(bool)), |
| 136 | this, |
| 137 | SLOT(onChangePeakDetect(void))); |
| 138 | |
| 139 | connect( |
| 140 | this->ui->facSizeCombo, |
| 141 | SIGNAL(activated(int)), |
| 142 | this, |
| 143 | SLOT(onChangeFACSize(void))); |
| 144 | |
| 145 | connect( |
| 146 | this->ui->averagingSlider, |
| 147 | SIGNAL(valueChanged(int)), |
| 148 | this, |
| 149 | SLOT(onAdjustAveraging(void))); |
| 150 | } |
| 151 | |
| 152 | void |
| 153 | FACTab::setThrottleControl(ThrottleControl *ctl) |