X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FLightApp%2FLightApp_OBSelector.h;h=1eef13aaeeb9070d4bd95425009f3b4362f96355;hb=034a705024b224972c148e1e3834c5ee38df184b;hp=e4bc2c8830a30844ae95280d6eb6d7b3aaad4d2e;hpb=232b55569765049c7d1cceb5096a45f8584c9369;p=modules%2Fgui.git diff --git a/src/LightApp/LightApp_OBSelector.h b/src/LightApp/LightApp_OBSelector.h index e4bc2c883..1eef13aae 100644 --- a/src/LightApp/LightApp_OBSelector.h +++ b/src/LightApp/LightApp_OBSelector.h @@ -1,20 +1,27 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// // 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// 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 +// 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/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + +// File : LightApp_OBSelector.h +// Author : // #ifndef LIGHTAPP_OBSELECTOR_H #define LIGHTAPP_OBSELECTOR_H @@ -22,35 +29,43 @@ #include "LightApp.h" #include +#include + +#include -class OB_Browser; +class SUIT_DataBrowser; class LightApp_DataObject; -class LIGHTAPP_EXPORT LightApp_OBSelector : public SUIT_Selector +class LIGHTAPP_EXPORT LightApp_OBSelector : public QObject, public SUIT_Selector { Q_OBJECT public: - LightApp_OBSelector( OB_Browser*, SUIT_SelectionMgr* ); + LightApp_OBSelector( SUIT_DataBrowser*, SUIT_SelectionMgr* ); virtual ~LightApp_OBSelector(); - OB_Browser* browser() const; + SUIT_DataBrowser* browser() const; + + virtual QString type() const; - /*!Return "ObjectBrowser"*/ - virtual QString type() const { return "ObjectBrowser"; } + unsigned long getModifiedTime() const; + void setModified(); private slots: - void onSelectionChanged(); + void onSelectionChanged(); protected: - virtual void getSelection( SUIT_DataOwnerPtrList& ) const; - virtual void setSelection( const SUIT_DataOwnerPtrList& ); + virtual void getSelection( SUIT_DataOwnerPtrList& ) const; + virtual void setSelection( const SUIT_DataOwnerPtrList& ); private: - void fillEntries( QMap& ); + void fillEntries( QMap& ); private: - OB_Browser* myBrowser; + SUIT_DataBrowser* myBrowser; + SUIT_DataOwnerPtrList mySelectedList; + QMap myEntries; + unsigned long myModifiedTime; }; #endif