Example #1
0
void DACCalibration::callActualValueEdit(){
    if (m_objLE_ActualValue->hasFocus()) {
    	if(ui.comboBox->currentText()=="ICM-R")
               openNumKBPanelminmax(1, 'R',2000000, 0);
    	else if(ui.comboBox->currentText()=="ICM-L")
               openNumKBPanelminmax(1, 'L',2000000, 0);
    	else if(ui.comboBox->currentText()=="ICM-C")
               openNumKBPanelminmax(1, 'C',2000000, 0);

            m_nLineEditIndex = 1;
    }
}
Example #2
0
void DDSWidget::callBDEdit() {
	if (m_objLE_BD->hasFocus()) {
		//openNumKBPanel(2);
		openNumKBPanelminmax(2, 65536, 1);
		m_nLineEditIndex = 3;
	}
}
Example #3
0
void DACCalibration::callTestVoltageEdit(){
    if (m_objLE_TestVoltage->hasFocus()) {
            openNumKBPanelminmax(1, 'v',15, -15);
            m_nLineEditIndex = 3;
    }

}
Example #4
0
void DDSWidget::callDPCEdit() {
	if (m_objLE_DPC->hasFocus()) {
		//            openNumKBPanel(2);
		openNumKBPanelminmax(2, 4294967296, 1);
		m_nLineEditIndex = 8;
	}

}
Example #5
0
void DDSWidget::callSTOPDLYEdit() {
	if (m_objLE_STOPDLY->hasFocus()) {
		//openNumKBPanel(2);
		openNumKBPanelminmax(2, 255, 0);
		m_nLineEditIndex = 6;
	}

}
Example #6
0
void DACCalibration::callRxedValueEdit(){
    if (m_objLE_RxedValue->hasFocus()) {
            openNumKBPanelminmax(1, 'A',2000000, 0);
            m_nLineEditIndex = 2;
    }
}
Example #7
0
void DACCalibration::callNoOfPointsEdit(){
    if (m_objLE_NoOfPoints->hasFocus()) {
            openNumKBPanelminmax(1, 'A',10, 0);
            m_nLineEditIndex = 0;
    }
}