X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_EditMeshDlg.h;h=71a11b74342c28a6e46259c0bbd938e9879ec64b;hp=839b3fd7c4665f3d4a8174ef1032ea5dfa6ffdd3;hb=9d11375af40826e967ab2c3bcb77d1f9d439c90c;hpb=2754c581d371f9bf52b3c538a7bde55f10f6523c diff --git a/src/SMESHGUI/SMESHGUI_EditMeshDlg.h b/src/SMESHGUI/SMESHGUI_EditMeshDlg.h index 839b3fd7c..71a11b743 100644 --- a/src/SMESHGUI/SMESHGUI_EditMeshDlg.h +++ b/src/SMESHGUI/SMESHGUI_EditMeshDlg.h @@ -15,12 +15,14 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef DIALOGBOX_GETMESH_H #define DIALOGBOX_GETMESH_H +#include "SMESH_SMESHGUI.hxx" + #include "LightApp_SelectionMgr.h" #include "SUIT_SelectionFilter.h" @@ -46,7 +48,7 @@ class SMESHGUI; // class : SMESHGUI_EditMeshDlg // purpose : //================================================================================= -class SMESHGUI_EditMeshDlg : public QDialog +class SMESHGUI_EXPORT SMESHGUI_EditMeshDlg : public QDialog { Q_OBJECT; @@ -62,6 +64,7 @@ class SMESHGUI_EditMeshDlg : public QDialog void closeEvent (QCloseEvent*); void enterEvent (QEvent*); /* mouse enter the QWidget */ void hideEvent (QHideEvent*); /* ESC key */ + void keyPressEvent(QKeyEvent*); private: SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */ @@ -80,6 +83,7 @@ class SMESHGUI_EditMeshDlg : public QDialog QPushButton* buttonOk; QPushButton* buttonCancel; QPushButton* buttonApply; + QPushButton* buttonHelp; QGroupBox* GroupMesh; QLabel* TextLabelMesh; @@ -92,10 +96,13 @@ class SMESHGUI_EditMeshDlg : public QDialog QGridLayout* GroupButtonsLayout; QGridLayout* GroupMeshLayout; + QString myHelpFileName; + private slots: void ClickOnOk(); void ClickOnCancel(); void ClickOnApply(); + void ClickOnHelp(); void SelectionIntoArgument(); void DeactivateActiveDialog(); void ActivateThisDialog();