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.
nmWATI/Include/mGui/mGuiTree/iDockWellExplorer.h

32 lines
586 B
C

#pragma once
#include "mModuleDefines.h"
#include "iDockBaseWx.h"
class TreeWxBase;
class TreeWxItemBase;
class M_GUI_TREE_EXPORT iDockWellExplorer : public iDockBaseWx
{
Q_OBJECT
public:
explicit iDockWellExplorer(const QString& sTitle, QWidget *parent = 0);
~iDockWellExplorer();
TreeWxBase* getMainTreeWx();
void setDTM(DockTreeMode o);
DockTreeMode getDTM();
protected:
virtual QWidget* buildCentrlWx(int nIndex);
private:
TreeWxBase* m_pMainTreeWx; //主项目树
// 区分是数据还是Job还是结果
DockTreeMode m_oDtm;
};