diff --git a/resources/SalomeApp.xml.in b/resources/SalomeApp.xml.in
index 392bdc291..c69c4b578 100644
--- a/resources/SalomeApp.xml.in
+++ b/resources/SalomeApp.xml.in
@@ -4,6 +4,7 @@
+
@@ -119,9 +120,9 @@
diff --git a/src/SMESHGUI/SMESHGUI.cxx b/src/SMESHGUI/SMESHGUI.cxx
index 2a6b89a3d..cc66cba2e 100644
--- a/src/SMESHGUI/SMESHGUI.cxx
+++ b/src/SMESHGUI/SMESHGUI.cxx
@@ -113,6 +113,7 @@
#include
#include
#include
+#include
#include
#include
#include
@@ -5105,6 +5106,12 @@ bool SMESHGUI::reusableOperation( const int id )
return ( id == SMESHOp::OpCompute || id == SMESHOp::OpPreCompute || id == SMESHOp::OpEvaluate || id == SMESHOp::OpRecompute ) ? false : SalomeApp_Module::reusableOperation( id );
}
+namespace
+{
+ QString wrap(const QString& text, const QString& tag)
+ { return QString("<%1>%2%3>").arg(tag).arg(text).arg(tag);}
+}
+
bool SMESHGUI::activateModule( SUIT_Study* study )
{
bool res = SalomeApp_Module::activateModule( study );
@@ -5112,6 +5119,49 @@ bool SMESHGUI::activateModule( SUIT_Study* study )
setMenuShown( true );
setToolShown( true );
+ // Fill in Help Panel
+ SalomeApp_Application* app = dynamic_cast( application() );
+ app->infoPanel()->setTitle(tr("INFO_WELCOME_TO_SMESH"));
+
+ int gb = app->infoPanel()->addGroup(tr("INFO_GRP_CREATE_MESH"));
+ QString lab;
+ QStringList items;
+ lab = tr("INFO_DEFINE_ALGOS") + "
";
+ lab = lab + tr("INFO_DEFINE_HYPOS") + "
";
+ lab = lab + tr("INFO_COMPUTE") + "
";
+ lab = lab + tr("INFO_REFINE") + ":";
+ items << wrap(tr("INFO_REFINE_LOCAL_SIZE"), "li")
+ << wrap(tr("INFO_REFINE_SUBMESH"), "li");
+ lab = lab + wrap(items.join(""), "ul");
+ items.clear();
+
+ app->infoPanel()->addLabel(lab, gb);
+
+ gb = app->infoPanel()->addGroup(tr("INFO_GRP_IMPORT_MESH"));
+ items << wrap("UNV", "li")
+ << wrap("MED", "li")
+ << wrap("STL", "li")
+ << wrap("CGNS", "li")
+ << wrap("SAUV", "li")
+ << wrap("GMF", "li");
+ lab = tr("INFO_AVAILABLE_FORMATS") + ":" + wrap(items.join(""), "ul");
+ items.clear();
+
+ app->infoPanel()->addLabel(lab, gb);
+
+ gb = app->infoPanel()->addGroup(tr("INFO_GRP_CHECK_MESH"));
+ lab = tr("INFO_DISPLAY") + "
";
+ items << wrap(tr("INFO_QUALITY_AREA"), "li")
+ << wrap(tr("INFO_QUALITY_VOLUME"), "li")
+ << wrap(tr("INFO_QUALITY_ASPECT_RATION"), "li")
+ << wrap("...", "li");
+ lab = lab + tr("INFO_QUALITY_INFO") + ":" + wrap(items.join(""), "ul");
+ items.clear();
+ lab = lab + tr("INFO_CLIPPING");
+
+ app->infoPanel()->addLabel(lab, gb);
+ // << Help Panel
+
// import Python module that manages SMESH plugins (need to be here because SalomePyQt API uses active module)
PyGILState_STATE gstate = PyGILState_Ensure();
PyObject* pluginsmanager = PyImport_ImportModuleNoBlock((char*)"salome_pluginsmanager");
@@ -5230,6 +5280,7 @@ void SMESHGUI::windows( QMap& aMap ) const
{
aMap.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea );
aMap.insert( SalomeApp_Application::WT_NoteBook, Qt::LeftDockWidgetArea );
+ aMap.insert( SalomeApp_Application::WT_InfoPanel, Qt::RightDockWidgetArea);
#ifndef DISABLE_PYCONSOLE
aMap.insert( SalomeApp_Application::WT_PyConsole, Qt::BottomDockWidgetArea );
#endif
diff --git a/src/SMESHGUI/SMESH_msg_en.ts b/src/SMESHGUI/SMESH_msg_en.ts
index ccad8714f..56715d47a 100644
--- a/src/SMESHGUI/SMESH_msg_en.ts
+++ b/src/SMESHGUI/SMESH_msg_en.ts
@@ -5029,6 +5029,74 @@ Please, create VTK viewer and try again
Sub-shapes preview chunk size
+
+
+ Welcome to Mesh
+
+
+
+ Create mesh
+
+
+
+ Choose algorithms
+
+
+
+ Define hypotheses
+
+
+
+ Compute
+
+
+
+ Add refinements
+
+
+
+ via local sizes with some hypotheses
+
+
+
+ via sub-meshes
+
+
+
+ Import mesh
+
+
+
+ Available formats
+
+
+
+ Check mesh quality
+
+
+
+ Display mesh
+
+
+
+ Display some quality criteria
+
+
+
+ area
+
+
+
+ volume
+
+
+
+ aspect ration
+
+
+
+ Add clipping planes
+
SMESHGUI_GroupDlg
diff --git a/src/SMESHGUI/SMESH_msg_fr.ts b/src/SMESHGUI/SMESH_msg_fr.ts
index e0b412da3..a16b3e56d 100644
--- a/src/SMESHGUI/SMESH_msg_fr.ts
+++ b/src/SMESHGUI/SMESH_msg_fr.ts
@@ -4558,6 +4558,10 @@ Il ne peut pas être supprimé.
Prisme hexagonal
+
+
+ Generate mesh from CAD model or import mesh
+
SMESHGUI_FieldSelectorWdg
@@ -5006,6 +5010,74 @@ Ouvrez une fenêtre VTK et essayez de nouveau
Taille des blocs pour la prévisualisation des sous-shapes
+
+
+ Welcome to Mesh
+
+
+
+ Create mesh
+
+
+
+ Choose algorithms
+
+
+
+ Define hypotheses
+
+
+
+ Compute
+
+
+
+ Add refinements
+
+
+
+ via local sizes with some hypotheses
+
+
+
+ via sub-meshes
+
+
+
+ Import mesh
+
+
+
+ Available formats
+
+
+
+ Check mesh quality
+
+
+
+ Display mesh
+
+
+
+ Display some quality criteria
+
+
+
+ area
+
+
+
+ volume
+
+
+
+ aspect ration
+
+
+
+ Add clipping planes
+
SMESHGUI_GroupDlg
diff --git a/src/SMESHGUI/SMESH_msg_ja.ts b/src/SMESHGUI/SMESH_msg_ja.ts
index ca15aebf9..c1c0ae8c4 100644
--- a/src/SMESHGUI/SMESH_msg_ja.ts
+++ b/src/SMESHGUI/SMESH_msg_ja.ts
@@ -4431,6 +4431,10 @@
六角形プリズム
+
+
+ Generate mesh from CAD model or import mesh
+
SMESHGUI_FieldSelectorWdg
@@ -4827,6 +4831,74 @@
Under-shapes のブロックのサイズ
+
+
+ Welcome to Mesh
+
+
+
+ Create mesh
+
+
+
+ Choose algorithms
+
+
+
+ Define hypotheses
+
+
+
+ Compute
+
+
+
+ Add refinements
+
+
+
+ via local sizes with some hypotheses
+
+
+
+ via sub-meshes
+
+
+
+ Import mesh
+
+
+
+ Available formats
+
+
+
+ Check mesh quality
+
+
+
+ Display mesh
+
+
+
+ Display some quality criteria
+
+
+
+ area
+
+
+
+ volume
+
+
+
+ aspect ration
+
+
+
+ Add clipping planes
+
SMESHGUI_GroupDlg