MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / connectAll

Method connectAll

Components/FrequencyCorrectionDialog.cpp:823–861  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

821}
822
823void
824FrequencyCorrectionDialog::connectAll(void)
825{
826 connect(
827 this->ui->correctionTypeCombo,
828 SIGNAL(activated(int)),
829 this,
830 SLOT(onSwitchCorrectionType(void)));
831
832 connect(
833 this->ui->satCombo,
834 SIGNAL(activated(int)),
835 this,
836 SLOT(onSwitchSatellite(void)));
837
838 connect(
839 this->ui->satRadio,
840 SIGNAL(toggled(bool)),
841 this,
842 SLOT(onToggleOrbitType(void)));
843
844 connect(
845 this->ui->tleRadio,
846 SIGNAL(toggled(bool)),
847 this,
848 SLOT(onToggleOrbitType(void)));
849
850 connect(
851 this->ui->tleEdit,
852 SIGNAL(textChanged(void)),
853 this,
854 SLOT(onTLEEdit(void)));
855
856 connect(
857 &this->timer,
858 SIGNAL(timeout(void)),
859 this,
860 SLOT(onTick(void)));
861}
862
863FrequencyCorrectionDialog::FrequencyCorrectionDialog(
864 QWidget *parent,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected