X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FLightApp%2FLightApp_OCCSelector.h;h=d266c7f5045443dfe3ccd320b41359babfac2ada;hb=1c889394b028b786898a995d38c07c8f3d564837;hp=c358efe8aa48fd387c1442201afb0a880a17783d;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/LightApp/LightApp_OCCSelector.h b/src/LightApp/LightApp_OCCSelector.h index c358efe8a..d266c7f50 100644 --- a/src/LightApp/LightApp_OCCSelector.h +++ b/src/LightApp/LightApp_OCCSelector.h @@ -1,20 +1,23 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// -// 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. +// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE // -// 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 +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// 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 // #ifndef LIGHTAPP_OCCSELECTOR_H #define LIGHTAPP_OCCSELECTOR_H @@ -22,38 +25,56 @@ #include "LightApp.h" #include +#include +#include + +#ifndef DISABLE_OCCVIEWER #include class Handle_AIS_InteractiveObject; +#endif /*! \class LightApp_OCCSelector Custom selector to get/set selection from OCC viewer */ -class LIGHTAPP_EXPORT LightApp_OCCSelector : public SUIT_Selector +class LIGHTAPP_EXPORT LightApp_OCCSelector : public QObject, public SUIT_Selector { Q_OBJECT public: +#ifndef DISABLE_OCCVIEWER LightApp_OCCSelector( OCCViewer_Viewer*, SUIT_SelectionMgr* ); +#else + LightApp_OCCSelector( SUIT_SelectionMgr* ); +#endif virtual ~LightApp_OCCSelector(); +#ifndef DISABLE_OCCVIEWER OCCViewer_Viewer* viewer() const; virtual QString type() const { return OCCViewer_Viewer::Type(); } +#endif private slots: virtual void onSelectionChanged(); + virtual void onDeselection(); protected: virtual void getSelection( SUIT_DataOwnerPtrList& ) const; virtual void setSelection( const SUIT_DataOwnerPtrList& ); +#ifndef DISABLE_OCCVIEWER QString entry( const Handle_AIS_InteractiveObject& ) const; +#endif + + SUIT_DataOwnerPtrList mySelectedExternals; private: - OCCViewer_Viewer* myViewer; +#ifndef DISABLE_OCCVIEWER + OCCViewer_Viewer* myViewer; +#endif }; #endif