| 188 | } |
| 189 | |
| 190 | void |
| 191 | PanoramicDialog::connectAll(void) |
| 192 | { |
| 193 | connect( |
| 194 | this->ui->deviceCombo, |
| 195 | SIGNAL(activated(int)), |
| 196 | this, |
| 197 | SLOT(onDeviceChanged(void))); |
| 198 | |
| 199 | connect( |
| 200 | this->ui->lnbDoubleSpinBox, |
| 201 | SIGNAL(valueChanged(double)), |
| 202 | this, |
| 203 | SLOT(onLnbOffsetChanged(void))); |
| 204 | |
| 205 | connect( |
| 206 | this->ui->sampleRateSpin, |
| 207 | SIGNAL(valueChanged(double)), |
| 208 | this, |
| 209 | SLOT(onSampleRateSpinChanged(void))); |
| 210 | |
| 211 | connect( |
| 212 | this->ui->fullRangeCheck, |
| 213 | SIGNAL(stateChanged(int)), |
| 214 | this, |
| 215 | SLOT(onFullRangeChanged(void))); |
| 216 | |
| 217 | connect( |
| 218 | this->ui->rangeStartSpin, |
| 219 | SIGNAL(valueChanged(double)), |
| 220 | this, |
| 221 | SLOT(onFreqRangeChanged(void))); |
| 222 | |
| 223 | connect( |
| 224 | this->ui->rangeEndSpin, |
| 225 | SIGNAL(valueChanged(double)), |
| 226 | this, |
| 227 | SLOT(onFreqRangeChanged(void))); |
| 228 | |
| 229 | connect( |
| 230 | this->ui->scanButton, |
| 231 | SIGNAL(clicked(bool)), |
| 232 | this, |
| 233 | SLOT(onToggleScan(void))); |
| 234 | |
| 235 | connect( |
| 236 | this->ui->resetButton, |
| 237 | SIGNAL(clicked(bool)), |
| 238 | this, |
| 239 | SIGNAL(reset(void))); |
| 240 | |
| 241 | connect( |
| 242 | this->ui->waterfall, |
| 243 | SIGNAL(newFilterFreq(int, int)), |
| 244 | this, |
| 245 | SLOT(onNewBandwidth(int, int))); |
| 246 | |
| 247 | connect( |