Salome HOME
Bug IPAL22924 - TC6.5.0: The View->Display mode menu doesn't work
[modules/geom.git] / src / DisplayGUI / DisplayGUI.h
index 9e31f223c91686a9df8331ce7c60c4d12dc36c0f..a52fe0352947c196689d17c2648c686501f86dc5 100644 (file)
@@ -1,60 +1,49 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-//  File   : DisplayGUI.h
-//  Author : Damien COQUERET
-//  Module : GEOM
 
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : DisplayGUI.h
+// Author : Damien COQUERET, Open CASCADE S.A.S.
+//
 #ifndef DISPLAYGUI_H
 #define DISPLAYGUI_H
 
 #include "GEOMGUI.h"
-#include "GEOMBase.h"
-
-#ifdef WNT
-# if defined DISPLAYGUI_EXPORTS
-#  define GEOM_DISPLAYGUI_EXPORT __declspec( dllexport )
-# else
-#  define GEOM_DISPLAYGUI_EXPORT __declspec( dllimport )
-# endif
-#else
-# define GEOM_DISPLAYGUI_EXPORT
-#endif
 
 //=================================================================================
-// class    : GEOMBase_Display
+// class    : DisplayGUI
 // purpose  :
 //=================================================================================
-//class QAD_ViewFrame;
+
 class SUIT_ViewWindow;
-class GEOM_DISPLAYGUI_EXPORT DisplayGUI : public GEOMGUI
+
+class DisplayGUI : public GEOMGUI
 {
 public:
-  DisplayGUI( GeometryGUI* parent );
+  DisplayGUI( GeometryGUI* );
   ~DisplayGUI();
 
   // Dispatch menu command
-  bool OnGUIEvent(int theCommandID, SUIT_Desktop* parent);
+  bool OnGUIEvent( int, SUIT_Desktop* );
 
   // Display all GEOM objects
   void DisplayAll();
@@ -69,16 +58,18 @@ public:
 
   // DISPLAY MODE methods : 0 - wireframe, 1 - shading
   // Set display mode for the viewer (current viewer if <viewWindow> - 0 )
-  void SetDisplayMode( const int mode, SUIT_ViewWindow* viewWindow = 0 );
-  // Get display mode of the viewer (current viewer if <viewWindow> - 0 )
-  int  GetDisplayMode( SUIT_ViewWindow* viewWindow = 0 );
-  // Invert display mode ( shadin <-> wireframe ) for the viewer 
-  // (current viewer if <viewWindow> = 0 )
-  void InvertDisplayMode( SUIT_ViewWindow* viewWindow = 0 );
+  void SetDisplayMode( const int, SUIT_ViewWindow* = 0 );
+
+  // VECTOR MODE methods
+  // Set vectror mode for the viewer
+  void SetVectorMode( const bool, SUIT_ViewWindow* = 0 );
+  // Get vector mode of the viewer
+  int  GetVectorMode( SUIT_ViewWindow* = 0 );
+  // Invert vector mode ( shadin <-> wireframe ) for the viewer 
 
   // Set display mode for selected objects in the viewer given
   // (current viewer if <viewWindow> = 0 )
-  void ChangeDisplayMode( const int mode, SUIT_ViewWindow* viewWindo = 0 );
+  void ChangeDisplayMode( const int, SUIT_ViewWindow* = 0 );
 };
 
-#endif
+#endif // DISPLAYGUI_H