Salome HOME
LOT 15
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataBrowser.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19
20 #ifndef HYDROGUI_DATABROWSER_H
21 #define HYDROGUI_DATABROWSER_H
22
23 #include <SUIT_DataBrowser.h>
24 #include <SUIT_TreeModel.h>
25
26 class HYDROGUI_Module;
27
28 /**\class HYDROGUI_DataBrowser
29  *\brief The data model browser widget implementation
30  */
31 class HYDROGUI_DataBrowser : public SUIT_DataBrowser, public SUIT_DataSearcher
32 {
33   Q_OBJECT
34
35 public:
36   HYDROGUI_DataBrowser( HYDROGUI_Module* theModule, SUIT_DataObject*,
37                         QWidget* = 0, bool theLandCover = false );
38   ~HYDROGUI_DataBrowser();
39
40   HYDROGUI_Module*         module() const;
41
42   /*!
43     Find a data object by the specified entry.
44     \param theEntry - Entry of the object.
45     \return data object.
46   */
47   virtual SUIT_DataObject* findObject( const QString& ) const;
48
49   void                     setReadOnly( const bool theIsReadOnly ); 
50
51 signals:
52   void             dropped( const QList<SUIT_DataObject*>& theList, 
53                             SUIT_DataObject* theTargetParent,
54                             int theTargetRow, Qt::DropAction theDropAction );
55   void             dataChanged();
56   void             newRegion();
57
58 protected:
59   virtual void createPopupMenu( QMenu* );
60
61 private:
62   HYDROGUI_Module* myModule;
63 };
64
65 #endif