2010-05-07 19:25:17 +06:00
|
|
|
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// 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.
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// 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
|
|
|
|
//
|
2010-05-07 19:25:17 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
// File : GEOMGUI.cxx
|
|
|
|
// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
|
|
|
#include "GEOMGUI.h"
|
2005-06-02 13:17:09 +06:00
|
|
|
#include "GeometryGUI.h"
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <SUIT_ViewWindow.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::GEOMGUI
|
|
|
|
// purpose : Constructor
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMGUI::GEOMGUI( GeometryGUI* parent ) :
|
|
|
|
QObject ( parent ),
|
|
|
|
myGeometryGUI( parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::GEOMGUI
|
|
|
|
// purpose : Destructor
|
|
|
|
//=================================================================================
|
|
|
|
GEOMGUI::~GEOMGUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::OnGUIEvent
|
|
|
|
// purpose : Main/popup menu events processing
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, SUIT_Desktop* /*parent*/ )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::OnMousePress
|
|
|
|
// purpose : Mouse press event processing. Should return FALSE to let the event
|
|
|
|
// be processed further.
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::OnMouseMove
|
|
|
|
// purpose : Mouse move event processing
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::OnKeyPress
|
|
|
|
// purpose : Key press event processing
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::SetSettings
|
|
|
|
// purpose : Called when GEOM component is activated
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
void GEOMGUI::activate( SUIT_Desktop* /*parent*/ )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : GEOMGUI::Deactivate
|
|
|
|
// purpose : Called when GEOM component is deactivated
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
void GEOMGUI::deactivate()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
// class : GEOMGUI::Deactivate
|
|
|
|
// purpose : Called when GEOM component is deactivated
|
2004-12-01 15:39:14 +05:00
|
|
|
//=================================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
GeometryGUI* GEOMGUI::getGeometryGUI()
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
return myGeometryGUI;
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
|