X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMGUI%2FGEOMGUI.cxx;h=7eafabe345cd807f46644792d6fc53fcd8232d55;hb=8b645f521e38dedf374122e23f28450e05399405;hp=8159278750c777d6cd36bc98a9f26b4d5378485a;hpb=d3dd282390888d7dc091ba2c2ffe7923bd7458e6;p=modules%2Fgeom.git diff --git a/src/GEOMGUI/GEOMGUI.cxx b/src/GEOMGUI/GEOMGUI.cxx index 815927875..7eafabe34 100644 --- a/src/GEOMGUI/GEOMGUI.cxx +++ b/src/GEOMGUI/GEOMGUI.cxx @@ -17,7 +17,7 @@ // 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -28,17 +28,18 @@ #include "GEOMGUI.h" -#include "QAD_Desktop.h" -#include "QAD_StudyFrame.h" -#include "QAD_Application.h" -#include +#include "SUIT_Desktop.h" +#include "SUIT_ViewWindow.h" + +#include "GeometryGUI.h" //================================================================================= // class : GEOMGUI::GEOMGUI // purpose : Constructor //================================================================================= -GEOMGUI::GEOMGUI( QObject* parent ) : - QObject ( parent ) +GEOMGUI::GEOMGUI( GeometryGUI* parent ) : +QObject ( parent ), +myGeometryGUI( parent ) { } @@ -54,7 +55,7 @@ GEOMGUI::~GEOMGUI() // class : GEOMGUI::OnGUIEvent // purpose : Main/popup menu events processing //================================================================================= -bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, QAD_Desktop* /*parent*/ ) +bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, SUIT_Desktop* /*parent*/ ) { return TRUE; } @@ -64,7 +65,7 @@ bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, QAD_Desktop* /*parent*/ ) // purpose : Mouse press event processing. Should return FALSE to let the event // be processed further. //================================================================================= -bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ ) +bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ ) { return FALSE; } @@ -73,7 +74,7 @@ bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_St // class : GEOMGUI::OnMouseMove // purpose : Mouse move event processing //================================================================================= -bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ ) +bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ ) { return TRUE; } @@ -82,7 +83,7 @@ bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_Stu // class : GEOMGUI::OnKeyPress // purpose : Key press event processing //================================================================================= -bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ ) +bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ ) { return TRUE; } @@ -91,25 +92,24 @@ bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyF // class : GEOMGUI::SetSettings // purpose : Called when GEOM component is activated //================================================================================= -bool GEOMGUI::SetSettings( QAD_Desktop* /*parent*/ ) +void GEOMGUI::activate( SUIT_Desktop* /*parent*/ ) { - return TRUE; } //================================================================================= // class : GEOMGUI::Deactivate // purpose : Called when GEOM component is deactivated //================================================================================= -void GEOMGUI::Deactivate() +void GEOMGUI::deactivate() { } //================================================================================= -// class : GEOMGUI::ActiveStudyChanged -// purpose : Called when active study changed +// class : GEOMGUI::Deactivate +// purpose : Called when GEOM component is deactivated //================================================================================= -bool GEOMGUI::ActiveStudyChanged( QAD_Desktop* /*parent*/ ) +GeometryGUI* GEOMGUI::getGeometryGUI() { - return TRUE; + return myGeometryGUI; }