]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_MonoColorPrs_i.hh
Salome HOME
5bddbdd44abb150cbc926e87e73da3da60ec2178
[modules/visu.git] / src / VISU_I / VISU_MonoColorPrs_i.hh
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  VISU OBJECT : interactive object for VISU entities implementation
23 //  File   : VISU_MonoColorPrs_i.hxx
24 //  Author : Vitaly Smetannikov
25 //  Module : VISU
26 //
27 #ifndef VISU_MonoColorPrs_i_HeaderFile
28 #define VISU_MonoColorPrs_i_HeaderFile
29
30 #include "VISU_I.hxx"
31 #include "VISU_ScalarMap_i.hh"
32
33 namespace VISU
34 {
35   //----------------------------------------------------------------------------
36   class VISU_I_EXPORT MonoColorPrs_i : public virtual POA_VISU::MonoColorPrs,
37                                        public virtual ScalarMap_i
38   {
39     MonoColorPrs_i(const MonoColorPrs_i&);
40
41   public:
42     //----------------------------------------------------------------------------
43     typedef ScalarMap_i TSuperClass;
44     typedef VISU::MonoColorPrs TInterface;
45
46     explicit MonoColorPrs_i(EPublishInStudyMode thePublishInStudyModep);
47
48     virtual void SameAs(const Prs3d_i* theOrigin);
49
50     virtual ~MonoColorPrs_i();
51
52     virtual CORBA::Boolean IsColored();
53
54     virtual void ShowColored(CORBA::Boolean theColored);
55
56     virtual SALOMEDS::Color GetColor();
57
58     virtual void SetColor(const SALOMEDS::Color& theColor);
59
60   protected:
61     SALOMEDS::Color myColor;
62     bool myIsColored;
63
64   public:
65     virtual Storable* Create(const std::string& theMeshName, 
66                              VISU::Entity theEntity,
67                              const std::string& theFieldName, 
68                              CORBA::Long theTimeStampNumber);
69
70     virtual void ToStream(std::ostringstream& theStr);
71
72     virtual Storable* Restore(SALOMEDS::SObject_ptr theSObject,
73                               const Storable::TRestoringMap& theMap);
74
75     virtual VISU_Actor* CreateActor();
76
77     virtual VISU_Actor* CreateActor(bool toSupressShrinking);
78
79     virtual void UpdateActor(VISU_ActorBase* theActor);
80   };
81 };
82 #endif