Esempio n. 1
0
void CInjectorPageDlg::OnChangeDataInjCfg()
{
 UpdateData();
 m_params.inj_config = _GetInjCfgComboBoxSelection(); //update inj_config, because it will be used in _FillSqrNumComboBox()

 //SqrNum combobox depends on injection config and cylinder number,
 //Also we have to preserve selection
 int sel = _GetSqrNumComboBoxSelection();
 _FillSqrNumComboBox();
 _SetSqrNumComboBoxSelection(sel);

 OnChangeNotify(); //notify event receiver about change in view content(see class ParamPageEvents)
}
Esempio n. 2
0
void CCarburPageDlg::OnChangeData()
{
 UpdateData();
 OnChangeNotify(); //notify event receiver about change of view content(see class ParamPageEvents)
}
Esempio n. 3
0
void CInjectorPageDlg::OnInjUseTimingMap()
{
 UpdateData();
 OnChangeNotify(); //notify event receiver about change in view content(see class ParamPageEvents)
 UpdateDialogControls(this,TRUE);
}
Esempio n. 4
0
void CCKPSPageDlg::OnClickedPdNegFrontRadio()
{
 m_ckps_posfront_radio.SetCheck(0);
 UpdateData();
 OnChangeNotify();
}
Esempio n. 5
0
void CCKPSPageDlg::OnChangePdIgnitionCogsEdit()
{
 UpdateData();	
 OnChangeNotify();
}
Esempio n. 6
0
void CCKPSPageDlg::OnSelchangePdEngineCylCombo()
{
 UpdateData();
 OnChangeNotify(); //notify event receiver about change in view content(see class ParamPageEvents) 
}