| 127 | } |
| 128 | |
| 129 | void |
| 130 | MainSpectrum::connectGLWf(void) |
| 131 | { |
| 132 | connect( |
| 133 | this->glWf, |
| 134 | SIGNAL(newFilterFreq(int, int)), |
| 135 | this, |
| 136 | SLOT(onWfBandwidthChanged(int, int))); |
| 137 | |
| 138 | connect( |
| 139 | this->glWf, |
| 140 | SIGNAL(newDemodFreq(qint64, qint64)), |
| 141 | this, |
| 142 | SLOT(onWfLoChanged(void))); |
| 143 | |
| 144 | connect( |
| 145 | this->glWf, |
| 146 | SIGNAL(pandapterRangeChanged(float, float)), |
| 147 | this, |
| 148 | SLOT(onRangeChanged(float, float))); |
| 149 | |
| 150 | connect( |
| 151 | this->glWf, |
| 152 | SIGNAL(newCenterFreq(qint64)), |
| 153 | this, |
| 154 | SLOT(onNewCenterFreq(qint64))); |
| 155 | |
| 156 | connect( |
| 157 | this->glWf, |
| 158 | SIGNAL(newZoomLevel(float)), |
| 159 | this, |
| 160 | SLOT(onNewZoomLevel(float))); |
| 161 | |
| 162 | connect( |
| 163 | this->glWf, |
| 164 | SIGNAL(newModulation(QString)), |
| 165 | this, |
| 166 | SLOT(onNewModulation(QString))); |
| 167 | } |
| 168 | |
| 169 | void |
| 170 | MainSpectrum::connectAll(void) |