]> SALOME platform Git repositories - modules/gui.git/blobdiff - src/SALOME_SWIG/SALOMEGUI_Swig.hxx
Salome HOME
several methods of SALOMEGUI_Swig such a FitAll do not work in a Python Gui embedded...
[modules/gui.git] / src / SALOME_SWIG / SALOMEGUI_Swig.hxx
index 456211227b3359593c5b8fecbd1917f524b4d8b5..6b537c8c993d36ee9c9441d80f5dbcb673947504 100644 (file)
@@ -1,69 +1,76 @@
-//  SALOME SALOMEGUI : implementation of desktop and GUI kernel
+// Copyright (C) 2007-2016  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, or (at your option) any later version.
 //
+// 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   : SALOMEGUI_Swig.hxx
-//  Author : Vadim SANDLER
-//  Module : SALOME
-//  $Header$
 
+//  SALOME SALOMEGUI : implementation of desktop and GUI kernel
+// File   : SALOMEGUI_Swig.hxx
+// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
+//
 #ifndef SALOMEGUI_SWIG_HXX
 #define SALOMEGUI_SWIG_HXX
 
 class SALOMEGUI_Swig
 {
 public:
-  /* construction/destruction */
   SALOMEGUI_Swig();
   ~SALOMEGUI_Swig();
 
-  /* check GUI */
   bool             hasDesktop();
 
-  /* update object browser*/
-  void             updateObjBrowser( bool updateSelection );
+  void             updateObjBrowser( bool );
 
-  /* get active study */
   int              getActiveStudyId();
   const char*      getActiveStudyName();
 
-  /* selection processing */
+  const char*      getComponentName( const char* );
+  const char*      getComponentUserName( const char* );
+
   int              SelectedCount();
-  const char*      getSelected(int i);
-  void             AddIObject( const char *Entry );
-  void             RemoveIObject( const char *Entry );
+  const char*      getSelected( int i );
+  void             AddIObject( const char );
+  void             RemoveIObject( const char );
   void             ClearIObjects();
 
-  /* display/erase */          
-  void             Display( const char *Entry );
-  void             DisplayOnly( const char *Entry );
-  void             Erase( const char *Entry );
+  void             Display( const char* );
+  void             DisplayOnly( const char* );
+  void             Erase( const char* );
   void             DisplayAll();
   void             EraseAll();
-  bool             IsInCurrentView( const char *Entry );
+  bool             IsInCurrentView( const char* );
+  void             UpdateView();
+
+  void             FitAll();
+  void             ResetView();
+  void             ViewTop();
+  void             ViewBottom();
+  void             ViewLeft();
+  void             ViewRight();
+  void             ViewFront();
+  void             ViewBack();
 
-  /* get component name/username */
-  const char*      getComponentName( const char* ComponentUserName );
-  const char*      getComponentUserName( const char* ComponentName );
+  const char* getViewParameters();
+  void setCameraPosition( double x, double y, double z );
+  void setCameraFocalPoint( double x, double y, double z );
+  void setCameraViewUp( double x, double y, double z );
+  void setViewScale( double parallelScale,double x, double y, double z );
 };
 
 #endif // SALOMEGUI_SWIG_HXX