| 87 | } |
| 88 | |
| 89 | void |
| 90 | MainSpectrum::connectWf(void) |
| 91 | { |
| 92 | connect( |
| 93 | this->wf, |
| 94 | SIGNAL(newFilterFreq(int, int)), |
| 95 | this, |
| 96 | SLOT(onWfBandwidthChanged(int, int))); |
| 97 | |
| 98 | connect( |
| 99 | this->wf, |
| 100 | SIGNAL(newDemodFreq(qint64, qint64)), |
| 101 | this, |
| 102 | SLOT(onWfLoChanged(void))); |
| 103 | |
| 104 | connect( |
| 105 | this->wf, |
| 106 | SIGNAL(pandapterRangeChanged(float, float)), |
| 107 | this, |
| 108 | SLOT(onRangeChanged(float, float))); |
| 109 | |
| 110 | connect( |
| 111 | this->wf, |
| 112 | SIGNAL(newCenterFreq(qint64)), |
| 113 | this, |
| 114 | SLOT(onNewCenterFreq(qint64))); |
| 115 | |
| 116 | connect( |
| 117 | this->wf, |
| 118 | SIGNAL(newZoomLevel(float)), |
| 119 | this, |
| 120 | SLOT(onNewZoomLevel(float))); |
| 121 | |
| 122 | connect( |
| 123 | this->wf, |
| 124 | SIGNAL(newModulation(QString)), |
| 125 | this, |
| 126 | SLOT(onNewModulation(QString))); |
| 127 | } |
| 128 | |
| 129 | void |
| 130 | MainSpectrum::connectGLWf(void) |