mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-13 02:00:34 +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 \
|
||||
resources/Makefile \
|
||||
resources/SMESHCatalog.xml \
|
||||
resources/SalomeApp.xml \
|
||||
idl/Makefile \
|
||||
Makefile
|
||||
])
|
||||
|
@ -148,7 +148,7 @@ dist_salomeres_DATA = \
|
||||
mesh_merge_elements.png \
|
||||
select1.png \
|
||||
StdMeshers.xml \
|
||||
SalomeApp.xml \
|
||||
$(top_builddir)/resources/SalomeApp.xml \
|
||||
mesh_pattern.png \
|
||||
pattern_sample_2d.png \
|
||||
pattern_sample_3D.png \
|
||||
|
@ -26,6 +26,7 @@
|
||||
<!-- Major module parameters -->
|
||||
<parameter name="name" value="Mesh"/>
|
||||
<parameter name="icon" value="ModuleMesh.png"/>
|
||||
<parameter name="SMESH_VERSION" value="@VERSION@"/>
|
||||
<!-- Other module preferences -->
|
||||
<parameter name="node_color" value="255, 0, 0"/>
|
||||
<parameter name="fill_color" value="0, 170, 255"/>
|
@ -260,6 +260,7 @@ libSMESH_la_CPPFLAGS = \
|
||||
-I$(srcdir)/../SMESH_I \
|
||||
-I$(srcdir)/../Controls \
|
||||
-I$(srcdir)/../SMESHClient \
|
||||
-I$(top_builddir) \
|
||||
-I$(top_builddir)/idl
|
||||
|
||||
libSMESH_la_LDFLAGS = \
|
||||
|
@ -85,6 +85,8 @@
|
||||
#include "SMESHGUI_VTKUtils.h"
|
||||
#include "SMESHGUI_HypothesesUtils.h"
|
||||
|
||||
#include <SMESH_version.h>
|
||||
|
||||
#include <SMESH_Client.hxx>
|
||||
#include <SMESH_Actor.h>
|
||||
#include <SMESH_ScalarBarActor.h>
|
||||
@ -1589,6 +1591,10 @@ extern "C" {
|
||||
{
|
||||
return new SMESHGUI();
|
||||
}
|
||||
|
||||
SMESHGUI_EXPORT char* getModuleVersion() {
|
||||
return SMESH_VERSION_STR;
|
||||
}
|
||||
}
|
||||
|
||||
SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
|
||||
|
Loading…
Reference in New Issue
Block a user