00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 void TGo4MarkerSettings::init()
00030 {
00031
00032 DrawLabelButton->setChecked(TGo4Condition::fgbLABELDRAW);
00033 DrawIntButton->setChecked(TGo4Condition::fgbINTDRAW);
00034 DrawLimButton->setChecked(TGo4Condition::fgbLIMITSDRAW);
00035 DrawCountsButton->setChecked(TGo4Condition::fgbCMAXDRAW);
00036 DrawYrmsButton->setChecked(TGo4Condition::fgbYRMSDRAW);
00037 DrawXrmsButton->setChecked(TGo4Condition::fgbXRMSDRAW);
00038 DrawXmaxButton->setChecked(TGo4Condition::fgbXMAXDRAW);
00039 DrawYmaxButton->setChecked(TGo4Condition::fgbYMAXDRAW);
00040 DrawXmeanButton->setChecked(TGo4Condition::fgbXMEANDRAW);
00041 DrawYmeanButton->setChecked(TGo4Condition::fgbYMEANDRAW);
00042
00043
00044 DrawPLabelButton->setChecked(TGo4Marker::fgbHASLABEL);
00045 DrawPConnectorButton->setChecked(TGo4Marker::fgbHASCONNECTOR);
00046 DrawPXButton->setChecked(TGo4Marker::fgbXDRAW);
00047 DrawPYButton->setChecked(TGo4Marker::fgbYDRAW);
00048 DrawPXbinButton->setChecked(TGo4Marker::fgbXBINDRAW);
00049 DrawPYbinButton->setChecked(TGo4Marker::fgbYBINDRAW);
00050 DrawPCountsButton->setChecked(TGo4Marker::fgbCONTDRAW);
00051
00052
00053
00054
00055
00056 }
00057
00058
00059 void TGo4MarkerSettings::setFlags()
00060 {
00061 TGo4Condition::fgbLABELDRAW=DrawLabelButton->isChecked();
00062 TGo4Condition::fgbINTDRAW=DrawIntButton->isChecked();
00063 TGo4Condition::fgbLIMITSDRAW=DrawLimButton->isChecked();
00064 TGo4Condition::fgbCMAXDRAW=DrawCountsButton->isChecked();
00065 TGo4Condition::fgbYRMSDRAW=DrawYrmsButton->isChecked();
00066 TGo4Condition::fgbXRMSDRAW=DrawXrmsButton->isChecked();
00067 TGo4Condition::fgbXMAXDRAW=DrawXmaxButton->isChecked();
00068 TGo4Condition::fgbYMAXDRAW=DrawYmaxButton->isChecked();
00069 TGo4Condition::fgbXMEANDRAW=DrawXmeanButton->isChecked();
00070 TGo4Condition::fgbYMEANDRAW=DrawYmeanButton->isChecked();
00071
00072 TGo4Marker::fgbHASLABEL=DrawPLabelButton->isChecked();
00073 TGo4Marker::fgbHASCONNECTOR=DrawPConnectorButton->isChecked();
00074 TGo4Marker::fgbXDRAW=DrawPXButton->isChecked();
00075 TGo4Marker::fgbYDRAW=DrawPYButton->isChecked();
00076 TGo4Marker::fgbXBINDRAW=DrawPXbinButton->isChecked();
00077 TGo4Marker::fgbYBINDRAW=DrawPYbinButton->isChecked();
00078 TGo4Marker::fgbCONTDRAW=DrawPCountsButton->isChecked();
00079 }
00080
00081