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

This commit is contained in:
rnv 2011-09-13 08:41:17 +00:00
parent 15cea5126f
commit 28c48d7e24
5 changed files with 12 additions and 2 deletions

View File

@ -467,6 +467,7 @@ AC_OUTPUT([ \
src/VTKExport/Makefile \
resources/Makefile \
resources/GEOMCatalog.xml \
resources/SalomeApp.xml \
idl/Makefile \
Makefile \
])

View File

@ -28,7 +28,7 @@ dist_salomeres_DATA = \
GEOM_en.xml \
GEOM_fr.xml \
GEOM.config \
SalomeApp.xml \
$(top_builddir)/resources/SalomeApp.xml \
Plugin \
GEOMDS_Resources \
ImportExport \

View File

@ -27,6 +27,7 @@
<parameter name="name" value="Geometry"/>
<parameter name="icon" value="ModuleGeom.png"/>
<parameter name="documentation" value="geom_help"/>
<parameter name="GEOM_VERSION" value="@VERSION@"/>
</section>
<section name="geom_help" >
<parameter name="sub_menu" value="%1 module"/>

View File

@ -98,12 +98,19 @@
#include <vtkCamera.h>
#include <vtkRenderer.h>
#include <GEOM_version.h>
#include "GEOMImpl_Types.hxx"
extern "C" {
Standard_EXPORT CAM_Module* createModule() {
return new GeometryGUI();
}
Standard_EXPORT char* getModuleVersion() {
return GEOM_VERSION_STR;
}
}
GeometryGUI::StudyTextureMap GeometryGUI::myTextureMap;

View File

@ -75,7 +75,8 @@ libGEOM_la_CPPFLAGS = \
-I$(srcdir)/../GEOMFiltersSelection \
-I$(srcdir)/../GEOMClient \
-I$(srcdir)/../GEOMImpl \
-I$(top_builddir)/idl
-I$(top_builddir)/idl \
-I$(top_builddir)
libGEOM_la_LDFLAGS = \
$(PYTHON_LIBS) \