    	setCaption(tr("Ftan Control Panel"));      *

	fileFilters = tr("Ftan profiles (*.fta)"); *

------------------------------------------------------------------------------
    menuBar()->insertItem(tr("&Profile"), fileMenu); *
    menuBar()->insertItem(tr("&Tools"), toolsMenu);  *
    menuBar()->insertItem(tr("&Settings"), settingsMenu); *
    menuBar()->insertItem(tr("&Help"), helpMenu);  *

   settingsMenu->insertItem(temp, "Orbit :  1",orbitPopupmenu);  *
	new QToolButton( temp, tr("Orbit Ctrl+v"),   *
			     tr("Orbit setting"),  *
------------------------------------------------------------------------------
The QAction class provides an abstract user interface action that can appear both 
in menus and tool bars
    	newAct = new QAction(tr("&New"), tr("Ctrl+N"), this);
    	newAct->setStatusTip(tr("Create a new ftan profile"));

1        "&New"   -   Under cursor   
2        "Ctrl+N" -   Accelerator
3        "Create a new ftan profile" - inside StatusBar
         <Choose suitable plot components>  - possible maximum at used font
------------------------------------------------------------------------------
    newAct = new QAction(tr("&New"), tr("Ctrl+N"), this);  *
    newAct->setStatusTip(tr("Create a new ftan profile")); *

    openAct = new QAction(tr("&Open..."), tr("Ctrl+O"), this);  *
    openAct->setStatusTip(tr("Open an existing ftan profile"));  *

    saveAct = new QAction(tr("&Save"), tr("Ctrl+S"), this);    *
    saveAct->setStatusTip(tr("Save the ftan profile to disk")); *

    saveAsAct = new QAction(tr("Save &As..."), 0, this); *
    saveAsAct->setStatusTip(tr("Save the ftan profile under a new " *
                               "name"));

    zoominAct = new QAction(tr("&ZoomIn"), tr("Ctrl+Z"), this); *
    zoominAct->setStatusTip(tr("Increase font in the application"));  *

    zoomoutAct = new QAction(tr("ZoomO&Ut"), tr("Ctrl+U"), this);   *
    zoomoutAct->setStatusTip(tr("Decrease font in the application"));  *

    exitAct = new QAction(tr("E&xit"), tr("Ctrl+Q"), this);  *
    exitAct->setStatusTip(tr("Exit the application"));  *

    aboutAct = new QAction(tr("&About"), 0, this);  
    aboutAct->setStatusTip(tr("Show the application's About box"));

    aboutQtAct = new QAction(tr("About &Qt"), 0, this);
    aboutQtAct->setStatusTip(tr("Show the Qt library's About box"));

///////////////////////ftanToolBar///////////////////////////////////
    
    startAct = new QAction(tr("&Start"), tr("Ctrl+S"), this);   *
    startAct->setStatusTip(tr("Start selected record processing"));  *

   
    waveAct = new QAction(tr("&Waveforms"), tr("Ctrl+W"), this);  *
    waveAct->setStatusTip(tr("Plot waveforms")); *

    
    
    filterAct = new QAction(tr("Filtering"), tr("Ctrl+T"), this); *
    filterAct->setStatusTip(tr("Filter waveforms")); *

    
    ftaAct = new QAction(tr("&FTAN"), tr("Ctrl+F"), this);  *
    ftaAct->setStatusTip(tr("Start FTAN amalysis"));   *

    velAct = new QAction(tr("&Velocity"), tr("Ctrl+V"), this); *
    velAct->setStatusTip(tr("Plot group velocity curves")); *
    
    ampAct = new QAction(tr("&Amplitude"), tr("Ctrl+A"), this); *
    ampAct->setStatusTip(tr("Plot amplitude spectra"));  *
    
    polarAct = new QAction(tr("&Polarization"), tr("Ctrl+P"), this); *
    polarAct->setStatusTip(tr("Plot polarization measurements")); *

    ovrAct = new QAction(tr("&Overplot"), tr("Ctrl+O"), this);  *
    ovrAct->setStatusTip(tr("Plot cleaned waveforms over row"));  *

    imageAct = new QAction(tr("&Image"), tr("Ctrl+I"), this); *
    imageAct->setStatusTip(tr("Plot FTAN diagrams"));  *

    saveRecAct = new QAction(tr("Save"), tr("Ctrl+v"), this);  *
    saveRecAct->setStatusTip(tr("Save cleaned waveforms"));   *
    
    cleanRecAct = new QAction(tr("Clean"), tr("Ctrl+v"), this); *
    cleanRecAct->setStatusTip(tr("Clean results for selected component")); *
    
    ///////////////////ftanToolBar//////////////////////////////////////// 

    ///////////////////mainSetingsToolBar////////////////////////////////////////     
 
    allParamAct = new QAction(tr("Complete Settings"), 0, this);     *
    allParamAct->setStatusTip(tr("Complete settings adjusment"));    *

    mainParamAct = new QAction(tr("Main Settings"),tr("Ctrl+v"), this);  *
    mainParamAct->setStatusTip(tr("Main settings adjusment"));   *

    pscriptOnOffAct = new QAction(tr("Save Ps Files on/off"), tr("Ctrl+v"), this); *
    pscriptOnOffAct->setStatusTip(tr("Saving results of processing in postscripts")); *
				      Choose suitable plot components
    polarOnOffAct = new QAction(tr("Polarization on/off"), tr("Ctrl+v"), this); *
    polarOnOffAct->setStatusTip(tr("Performence of polarization measurements")); *
				     
    originAct = new QAction(tr("Event Date Time"), tr("Ctrl+v"), this); *
    originAct->setStatusTip(tr("Setting of event date and time")); *

    filterSpecAct = new QAction(tr("Filter specification"), tr("Ctrl+v"), this); *
    filterSpecAct->setStatusTip(tr("Setting of filter characteristics"));  *

    ftaSpecAct = new QAction(tr("FTAN Window"), tr("Ctrl+v"), this); *
    ftaSpecAct->setStatusTip(tr("Setting of FTAN window limits"));  *

    plotCompAct = new QAction(tr("Plot Comps"), tr("Ctrl+v"), this); *
    plotCompAct->setStatusTip(tr("Selection of components to be plotted")); *

    ftaCompAct = new QAction(tr("FTAN Comps"), tr("Ctrl+v"), this); *
    ftaCompAct->setStatusTip(tr("Selection of components to be processed")); *

    modeCompAct = new QAction(tr("Mode"), tr("Ctrl+v"), this); *
    modeCompAct->setStatusTip(tr("Mode setting"));  *  





-----------------------------   Main Settings ------------------

    setCaption( tr( "Main Settings Dialog" ) ); *

    buttonDefault->setText( tr( "&Default" ) ); *
     Set default values for all parameters
    buttonDefault->setAccel( QKeySequence( tr( "Alt+D" ) ) );

    buttonReset->setText( tr( "&Reset" ) );  *
    Reset values of all parameters   *
    buttonReset->setAccel( QKeySequence( tr( "Alt+R" ) ) );

    buttonHelp->setText( tr( "&Help" ) );
    buttonHelp->setAccel( QKeySequence( tr( "F1" ) ) );

    buttonOk->setText( tr( "&OK" ) );
    buttonOk->setAccel( QKeySequence( QString::null ) );

    buttonCancel->setText( tr( "&Cancel" ) );
    buttonCancel->setAccel( QKeySequence( QString::null ) );

    textLabelPs->setText( tr( "&Save Ps Files:" ) ); *
	Saving results of processing in postscripts  *

    comboBoxPs->insertItem( tr( "on" ) );
    comboBoxPs->insertItem( tr( "off" ) );

    toolButtonResPs->setText( QString::null );
 
   textLabelPlotComp->setText( tr( "Plot Comps: " ) ); *
       Selection of components to be plotted    *

    toolButtonPlotZ->setText( tr( "z" ) );
    toolButtonPlotN->setText( tr( "n" ) );
    toolButtonPlotE->setText( tr( "e" ) );
    toolButtonPlotR->setText( tr( "r" ) );
    toolButtonPlotT->setText( tr( "t" ) );

    toolButtonResPlotComp->setText( QString::null );

    groupBoxMeagure->setTitle( tr( "Meazurement specification:" ) );

    textLabelPolar->setText( tr( "Polarization:" ) );  *
         Performence of polarization measurements     *
				     

    comboBoxPolar->clear();
    comboBoxPolar->insertItem( tr( "on" ) ); *
    comboBoxPolar->insertItem( tr( "off" ) );  *

    toolButtonRePolar->setText( QString::null );

    textLabelFtaComp->setText( tr( "FTAN Comps:" ) );  *
            Selection of components to be processed     *

    toolButtonFtaZ->setText( tr( "z" ) );
    toolButtonFtaR->setText( tr( "r" ) );
    toolButtonFtaT->setText( tr( "t" ) );
    
    toolButtonResFtaComp->setText( QString::null );

    groupBoxFilterSpec->setTitle( tr( "Waveform:" ) );   *

    textLabelTo1->setText( tr( "t0&1" ) );
    lineEditTo1->setText( tr( "500.0" ) );
    textLabelTc1->setText( tr( "tc&1" ) );
    lineEditTc1->setText( tr( "500.0" ) );
    textLabelTo2->setText( tr( "tc&2" ) );
    lineEditTo2->setText( tr( "500.0" ) );
    textLabelTc2->setText( tr( "t0&2" ) );
    lineEditTc2->setText( tr( "500.0" ) );

  t01 - short period zero; tc1 - short period corner; *
  tc2 - long period corner; t02 - long period zero   *

    textLabelFilterSpec->setText( tr( "Filter specification:" ) ); *
        Setting of filter characteristics                          *

    toolButtonResFilterSpec->setText( QString::null );

    groupBoxAnalysis->setTitle( tr( "Analysis limits:" ) );  *

    textLabelPeriodMin->setText( tr( "m&in" ) );
    lineEditPeriodMin->setText( tr( "500.0" ) );
    textLabelPeriodMax->setText( tr( "m&ax" ) );
    lineEditPeriodMax->setText( tr( "500.0" ) );

    textLabelPeriod->setText( tr( "Period (sec):" ) );   *
    toolButtonResPeriod->setText( QString::null );
    textLabelGrvMin->setText( tr( "m&in" ) );
    lineEditGrvMin->setText( tr( "500.0" ) );
    textLabelGrvMax->setText( tr( "m&ax" ) );
    lineEditGrvMax->setText( tr( "500.0" ) );

    textLabelGroupVel->setText( tr( "Group Vel (km/sec):" ) );
    toolButtonResGrv->setText( QString::null );

    textLabelOrbit->setText( tr( "O&rbit :" ) );
    comboBoxOrbit->clear();
    comboBoxOrbit->insertItem( tr( "1" ) );
    comboBoxOrbit->insertItem( tr( "2" ) );
    comboBoxOrbit->insertItem( tr( "3" ) );
    comboBoxOrbit->insertItem( tr( "4" ) );
    comboBoxOrbit->insertItem( tr( "5" ) );
    comboBoxOrbit->insertItem( tr( "6" ) );

    toolButtonResOrbit->setText( QString::null );

    textLabelMode->setText( tr( "&Mode:" ) );
    comboBoxMode->clear();
    comboBoxMode->insertItem( tr( "1" ) );
    comboBoxMode->insertItem( tr( "2" ) );
    comboBoxMode->insertItem( tr( "3" ) );
    comboBoxMode->insertItem( tr( "4" ) );
    comboBoxMode->insertItem( tr( "5" ) );
    comboBoxMode->insertItem( tr( "6" ) );

    toolButtonResMode->setText( QString::null );
