You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
870 B
C
47 lines
870 B
C
2 weeks ago
|
#ifndef CFDMainTreeWidget_h
|
||
|
#define CFDMainTreeWidget_h
|
||
|
|
||
|
#include <QtCore/QtGlobal>
|
||
|
#include <QDebug>
|
||
|
#include <GUIFrame/MainTreeWidget.h>
|
||
|
#include <CFDStructMainAPI.h>
|
||
|
|
||
|
class QTabWidget;
|
||
|
|
||
|
namespace GUI
|
||
|
{
|
||
|
|
||
|
class MainWindow;
|
||
|
class CFDTreeWidget;
|
||
|
class PropertyWidget;
|
||
|
|
||
|
|
||
|
class CFDStructMAINAPI CFDMainTreeWidget : public MainTreeWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CFDMainTreeWidget(MainWindow* parent, PropertyWidget* prowidget);
|
||
|
|
||
|
|
||
|
private:
|
||
|
void init();
|
||
|
|
||
|
void addTreePreprocessing(QTabWidget* tabWidget);
|
||
|
|
||
|
void addTreeSolutionAnalysis(QTabWidget* tabWidget);
|
||
|
|
||
|
void addTreePostprocessing(QTabWidget* tabWidget);
|
||
|
|
||
|
|
||
|
TreeWidget* _treePreprocessing;
|
||
|
CFDTreeWidget* _treeSolutionAnalysis;
|
||
|
CFDTreeWidget* _treePostprocessing;
|
||
|
PropertyWidget* m_PropertyWidget;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|