]> SALOME platform Git repositories - modules/geom.git/blob - src/DisplayGUI/DisplayGUI.h
Salome HOME
bf2b57ac1519423e4faf99244a7ad1ed4625015c
[modules/geom.git] / src / DisplayGUI / DisplayGUI.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : DisplayGUI.h
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DISPLAYGUI_H
30 #define DISPLAYGUI_H
31
32 #include "GEOMGUI.h"
33 #include "GEOMBase.h"
34
35 //=================================================================================
36 // class    : GEOMBase_Display
37 // purpose  :
38 //=================================================================================
39 class QAD_ViewFrame;
40 class DisplayGUI : public GEOMGUI
41 {
42 protected:
43   DisplayGUI(); // hide constructor to avoid direct creation
44
45 public :
46   ~DisplayGUI();
47
48   // Get the only DisplayGUI object
49   static DisplayGUI* GetDisplayGUI();
50
51   // Dispatch menu command
52   bool OnGUIEvent(int theCommandID, QAD_Desktop* parent);
53
54   // Display all GEOM objects
55   void DisplayAll();
56   // Erase all GEOM objects
57   void EraseAll();
58   // Display selected GEOM objects
59   void Display();
60   // Display selected GEOM objects and erase other
61   void DisplayOnly();
62   // Erase selected GEOM objects
63   void Erase();
64
65   // DISPLAY MODE methods : 0 - wireframe, 1 - shading
66   // Set display mode for the viewer (current viewer if <viewFrame> - 0 )
67   void SetDisplayMode( const int mode, QAD_ViewFrame* viewFrame = 0 );
68   // Get display mode of the viewer (current viewer if <viewFrame> - 0 )
69   int  GetDisplayMode( QAD_ViewFrame* viewFrame = 0 );
70   // Invert display mode ( shadin <-> wireframe ) for the viewer 
71   // (current viewer if <viewFrame> = 0 )
72   void InvertDisplayMode( QAD_ViewFrame* viewFrame = 0 );
73
74   // Set display mode for selected objects in the viewer given
75   // (current viewer if <viewFrame> = 0 )
76   void ChangeDisplayMode( const int mode, QAD_ViewFrame* viewFrame = 0 );
77
78 private:
79   static DisplayGUI* myGUIObject;        // the only DisplayGUI object
80 };
81
82 #endif