smesh/src/SMESHGUI/SMESHGUI_Dialog.h

27 lines
493 B
C
Raw Normal View History

2005-07-04 04:20:37 +00:00
#ifndef SMESHGUI_DIALOG_H
#define SMESHGUI_DIALOG_H
#include <SalomeApp_Dialog.h>
class SMESHGUI;
class SMESHGUI_Dialog : public SalomeApp_Dialog
{
Q_OBJECT
public:
SMESHGUI_Dialog( SMESHGUI*, const bool = false, const bool = false, const int = OK | Cancel | Apply );
virtual ~SMESHGUI_Dialog();
virtual void show();
//! set all content to enable (parameter is true) or disable state
void setContentActive( const bool ) const;
private:
SMESHGUI* mySMESHGUI;
2005-07-04 04:20:37 +00:00
};
#endif