Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/geom.git] / src / DisplayGUI / DisplayGUI.h
index 9e31f223c91686a9df8331ce7c60c4d12dc36c0f..d9e089e2ab16bc8fee358a551a1f5a15bcbe3f97 100644 (file)
@@ -1,60 +1,48 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+//  Copyright (C) 2007-2008  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
+//
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : DisplayGUI.h
+// Author : Damien COQUERET, Open CASCADE S.A.S.
 //
-//  File   : DisplayGUI.h
-//  Author : Damien COQUERET
-//  Module : GEOM
-
 #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 +57,16 @@ 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 );
+  void SetDisplayMode( const int, SUIT_ViewWindow* = 0 );
   // Get display mode of the viewer (current viewer if <viewWindow> - 0 )
-  int  GetDisplayMode( SUIT_ViewWindow* viewWindow = 0 );
+  int  GetDisplayMode( SUIT_ViewWindow* = 0 );
   // Invert display mode ( shadin <-> wireframe ) for the viewer 
   // (current viewer if <viewWindow> = 0 )
-  void InvertDisplayMode( SUIT_ViewWindow* viewWindow = 0 );
+  void InvertDisplayMode( SUIT_ViewWindow* = 0 );
 
   // 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