Implementation of the "20494: EDF 1123 KERNEL/GUI : Improvment of 'About' dialog box" issue.

This commit is contained in:
rnv 2011-09-13 09:03:12 +00:00
parent 9116958a2b
commit 9d3b3bf258
5 changed files with 10 additions and 1 deletions

View File

@ -522,6 +522,7 @@ AC_OUTPUT([ \
src/Tools/MeshCut/Makefile \
resources/Makefile \
resources/SMESHCatalog.xml \
resources/SalomeApp.xml \
idl/Makefile \
Makefile
])

View File

@ -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 \

View File

@ -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"/>

View File

@ -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 = \

View File

@ -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();