mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-08 18:07:27 +05:00
Implementation of the "20494: EDF 1123 KERNEL/GUI : Improvment of 'About' dialog box" issue.
This commit is contained in:
parent
9116958a2b
commit
9d3b3bf258
@ -522,6 +522,7 @@ AC_OUTPUT([ \
|
|||||||
src/Tools/MeshCut/Makefile \
|
src/Tools/MeshCut/Makefile \
|
||||||
resources/Makefile \
|
resources/Makefile \
|
||||||
resources/SMESHCatalog.xml \
|
resources/SMESHCatalog.xml \
|
||||||
|
resources/SalomeApp.xml \
|
||||||
idl/Makefile \
|
idl/Makefile \
|
||||||
Makefile
|
Makefile
|
||||||
])
|
])
|
||||||
|
@ -148,7 +148,7 @@ dist_salomeres_DATA = \
|
|||||||
mesh_merge_elements.png \
|
mesh_merge_elements.png \
|
||||||
select1.png \
|
select1.png \
|
||||||
StdMeshers.xml \
|
StdMeshers.xml \
|
||||||
SalomeApp.xml \
|
$(top_builddir)/resources/SalomeApp.xml \
|
||||||
mesh_pattern.png \
|
mesh_pattern.png \
|
||||||
pattern_sample_2d.png \
|
pattern_sample_2d.png \
|
||||||
pattern_sample_3D.png \
|
pattern_sample_3D.png \
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
<!-- Major module parameters -->
|
<!-- Major module parameters -->
|
||||||
<parameter name="name" value="Mesh"/>
|
<parameter name="name" value="Mesh"/>
|
||||||
<parameter name="icon" value="ModuleMesh.png"/>
|
<parameter name="icon" value="ModuleMesh.png"/>
|
||||||
|
<parameter name="SMESH_VERSION" value="@VERSION@"/>
|
||||||
<!-- Other module preferences -->
|
<!-- Other module preferences -->
|
||||||
<parameter name="node_color" value="255, 0, 0"/>
|
<parameter name="node_color" value="255, 0, 0"/>
|
||||||
<parameter name="fill_color" value="0, 170, 255"/>
|
<parameter name="fill_color" value="0, 170, 255"/>
|
@ -260,6 +260,7 @@ libSMESH_la_CPPFLAGS = \
|
|||||||
-I$(srcdir)/../SMESH_I \
|
-I$(srcdir)/../SMESH_I \
|
||||||
-I$(srcdir)/../Controls \
|
-I$(srcdir)/../Controls \
|
||||||
-I$(srcdir)/../SMESHClient \
|
-I$(srcdir)/../SMESHClient \
|
||||||
|
-I$(top_builddir) \
|
||||||
-I$(top_builddir)/idl
|
-I$(top_builddir)/idl
|
||||||
|
|
||||||
libSMESH_la_LDFLAGS = \
|
libSMESH_la_LDFLAGS = \
|
||||||
|
@ -85,6 +85,8 @@
|
|||||||
#include "SMESHGUI_VTKUtils.h"
|
#include "SMESHGUI_VTKUtils.h"
|
||||||
#include "SMESHGUI_HypothesesUtils.h"
|
#include "SMESHGUI_HypothesesUtils.h"
|
||||||
|
|
||||||
|
#include <SMESH_version.h>
|
||||||
|
|
||||||
#include <SMESH_Client.hxx>
|
#include <SMESH_Client.hxx>
|
||||||
#include <SMESH_Actor.h>
|
#include <SMESH_Actor.h>
|
||||||
#include <SMESH_ScalarBarActor.h>
|
#include <SMESH_ScalarBarActor.h>
|
||||||
@ -1589,6 +1591,10 @@ extern "C" {
|
|||||||
{
|
{
|
||||||
return new SMESHGUI();
|
return new SMESHGUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SMESHGUI_EXPORT char* getModuleVersion() {
|
||||||
|
return SMESH_VERSION_STR;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
|
SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user