mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-02-15 17:53:07 +05:00
Remove GEOMBase dependence.
This commit is contained in:
parent
4a99ec5202
commit
1f621bfae7
@ -7,9 +7,9 @@
|
||||
#include "CurveCreator_NewSectionDlg.h"
|
||||
|
||||
#include <GEOMUtils.hxx>
|
||||
#include <GEOMBase_Helper.h>
|
||||
|
||||
#include <SUIT_Session.h>
|
||||
#include <SUIT_Desktop.h>
|
||||
#include <SUIT_ResourceMgr.h>
|
||||
#include <SUIT_ViewManager.h>
|
||||
|
||||
@ -304,10 +304,13 @@ void CurveCreator_Widget::onNewPoint()
|
||||
myNewPointEditor->setSectionName(aSectName);
|
||||
myNewPointEditor->setDimension(myCurve->getDimension());
|
||||
|
||||
SUIT_ViewWindow* aViewWindow = GEOMBase_Helper::getActiveView();
|
||||
SUIT_ViewManager* aViewManager = aViewWindow->getViewManager();
|
||||
SUIT_ViewWindow* aViewWindow = 0;
|
||||
SUIT_Study* activeStudy = SUIT_Session::session()->activeApplication()->activeStudy();
|
||||
if ( activeStudy )
|
||||
aViewWindow = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
|
||||
if ( aViewWindow == 0 )
|
||||
return;
|
||||
SUIT_ViewManager* aViewManager = aViewWindow->getViewManager();
|
||||
if ( aViewManager->getType() == OCCViewer_Viewer::Type() ) {
|
||||
connect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
|
||||
this, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
|
||||
|
@ -90,7 +90,6 @@ libCurveCreator_la_CPPFLAGS = \
|
||||
$(CORBA_INCLUDES) \
|
||||
-I$(srcdir)/../GEOMGUI \
|
||||
-I$(srcdir)/../GEOMUtils \
|
||||
-I$(srcdir)/../GEOMBase \
|
||||
-I$(top_builddir)/idl
|
||||
|
||||
|
||||
@ -102,5 +101,4 @@ libCurveCreator_la_LDFLAGS = \
|
||||
$(KERNEL_LDFLAGS) \
|
||||
$(GUI_LDFLAGS) -lqtx -lsuit \
|
||||
../GEOMUtils/libGEOM.la \
|
||||
../GEOMUtils/libGEOMUtils.la \
|
||||
../GEOMUtils/libGEOMBase.la
|
||||
../GEOMUtils/libGEOMUtils.la
|
||||
|
Loading…
Reference in New Issue
Block a user