00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, 00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 00005 // 00006 // This library is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU Lesser General Public 00008 // License as published by the Free Software Foundation; either 00009 // version 2.1 of the License. 00010 // 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 // Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public 00017 // License along with this library; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 // 00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00021 // 00022 00023 #ifndef LIGHTAPP_OCCSELECTOR_H 00024 #define LIGHTAPP_OCCSELECTOR_H 00025 00026 #include "LightApp.h" 00027 00028 #include <SUIT_Selector.h> 00029 #include <SUIT_DataOwner.h> 00030 00031 #include <QObject> 00032 00033 #ifndef DISABLE_OCCVIEWER 00034 #include <OCCViewer_ViewModel.h> 00035 00036 class Handle_AIS_InteractiveObject; 00037 #endif 00038 00043 class LIGHTAPP_EXPORT LightApp_OCCSelector : public QObject, public SUIT_Selector 00044 { 00045 Q_OBJECT 00046 00047 public: 00048 #ifndef DISABLE_OCCVIEWER 00049 LightApp_OCCSelector( OCCViewer_Viewer*, SUIT_SelectionMgr* ); 00050 #else 00051 LightApp_OCCSelector( SUIT_SelectionMgr* ); 00052 #endif 00053 virtual ~LightApp_OCCSelector(); 00054 00055 #ifndef DISABLE_OCCVIEWER 00056 OCCViewer_Viewer* viewer() const; 00057 00058 virtual QString type() const { return OCCViewer_Viewer::Type(); } 00059 #endif 00060 00061 private slots: 00062 virtual void onSelectionChanged(); 00063 virtual void onDeselection(); 00064 00065 protected: 00066 virtual void getSelection( SUIT_DataOwnerPtrList& ) const; 00067 virtual void setSelection( const SUIT_DataOwnerPtrList& ); 00068 00069 #ifndef DISABLE_OCCVIEWER 00070 virtual QString entry( const Handle_AIS_InteractiveObject& ) const; 00071 #endif 00072 00073 SUIT_DataOwnerPtrList mySelectedExternals; 00074 00075 private: 00076 #ifndef DISABLE_OCCVIEWER 00077 OCCViewer_Viewer* myViewer; 00078 #endif 00079 }; 00080 00081 #endif