2003-05-12 21:24:23 +06:00
|
|
|
// File : GeometryGUI_Swig.hxx
|
|
|
|
// Created : Tue Mar 26 15:08:38 2002
|
|
|
|
// Author : Nicolas REJNERI, Paul RASCLE
|
|
|
|
// Project : SALOME
|
|
|
|
// Module : GEOM
|
|
|
|
// Copyright : Open CASCADE, EDF 2002
|
|
|
|
// $Header$
|
|
|
|
|
|
|
|
#ifndef _GeometryGUI_SWIG_HXX_
|
|
|
|
#define _GeometryGUI_SWIG_HXX_
|
|
|
|
|
|
|
|
// IDL Headers
|
|
|
|
#include <SALOMEconfig.h>
|
|
|
|
#include CORBA_SERVER_HEADER(GEOM_Gen)
|
|
|
|
#include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
|
|
|
|
|
|
|
|
class GEOM_Client;
|
|
|
|
|
2003-05-19 13:18:06 +06:00
|
|
|
class GEOM_Swig
|
2003-05-12 21:24:23 +06:00
|
|
|
{
|
|
|
|
public:
|
2003-05-19 13:18:06 +06:00
|
|
|
GEOM_Swig();
|
|
|
|
~GEOM_Swig();
|
2003-05-12 21:24:23 +06:00
|
|
|
|
|
|
|
void createAndDisplayGO(const char* Entry);
|
|
|
|
void setDisplayMode(const char* Entry, int mode);
|
|
|
|
void setColor(const char* Entry, int red, int green, int blue);
|
|
|
|
void setTransparency(const char* Entry, float transp);
|
|
|
|
|
|
|
|
int getIndexTopology(const char *SubEntry, const char *Entry);
|
|
|
|
const char* getShapeTypeString(const char *Entry);
|
|
|
|
const char* getShapeTypeIcon(const char *Ior);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|