UltraScan III
us_advanced_fem.h
Go to the documentation of this file.
1 #ifndef US_ADVANCED_H
3 #define US_ADVANCED_H
4 
5 #include <QtGui>
6 
7 #include "us_extern.h"
8 #include "us_widgets_dialog.h"
9 #include "us_model.h"
10 #include "us_plot.h"
11 #include "us_help.h"
12 #include <qwt_plot.h>
13 
15 
17 {
18  Q_OBJECT
19 
20  public:
25  US_AdvancedFem( US_Model*, QMap< QString, QString>&,
26  QWidget* p = 0 );
27 
28  private:
30  QMap< QString, QString >& parmap;
31 
32  QGridLayout* mainLayout;
33 
34  QWidget* parentw;
35 
36  QwtCounter* ct_simpoints;
37  QwtCounter* ct_bldvolume;
38  QwtCounter* ct_parameter;
39 
40  QComboBox* cb_mesh;
41  QComboBox* cb_grid;
42 
43  protected:
45 
46  private slots:
47 
48  void done( void );
49  void help ( void )
50  { showHelp.show_help( "fe_match_adv.html" ); };
51 };
52 #endif
53