| 96 | } |
| 97 | |
| 98 | void |
| 99 | TimeWindow::connectTransformWidgets(void) |
| 100 | { |
| 101 | connect( |
| 102 | this->ui->lpfApplyButton, |
| 103 | SIGNAL(clicked(void)), |
| 104 | this, |
| 105 | SLOT(onLPF())); |
| 106 | |
| 107 | connect( |
| 108 | this->ui->costasSyncButton, |
| 109 | SIGNAL(clicked(void)), |
| 110 | this, |
| 111 | SLOT(onCostasRecovery())); |
| 112 | |
| 113 | connect( |
| 114 | this->ui->pllSyncButton, |
| 115 | SIGNAL(clicked(void)), |
| 116 | this, |
| 117 | SLOT(onPLLRecovery())); |
| 118 | |
| 119 | connect( |
| 120 | this->ui->cycloButton, |
| 121 | SIGNAL(clicked(void)), |
| 122 | this, |
| 123 | SLOT(onCycloAnalysis())); |
| 124 | |
| 125 | connect( |
| 126 | this->ui->agcButton, |
| 127 | SIGNAL(clicked(void)), |
| 128 | this, |
| 129 | SLOT(onAGC())); |
| 130 | |
| 131 | connect( |
| 132 | this->ui->dcmButton, |
| 133 | SIGNAL(clicked(void)), |
| 134 | this, |
| 135 | SLOT(onDelayedConjugate())); |
| 136 | |
| 137 | connect( |
| 138 | this->ui->quadDemodButton, |
| 139 | SIGNAL(clicked(void)), |
| 140 | this, |
| 141 | SLOT(onQuadDemod())); |
| 142 | |
| 143 | connect( |
| 144 | this->ui->agcRateSpin, |
| 145 | SIGNAL(valueChanged(qreal)), |
| 146 | this, |
| 147 | SLOT(onAGCRateChanged())); |
| 148 | |
| 149 | connect( |
| 150 | this->ui->dcmRateSpin, |
| 151 | SIGNAL(valueChanged(qreal)), |
| 152 | this, |
| 153 | SLOT(onDelayedConjChanged())); |
| 154 | |
| 155 | connect( |