Salome HOME
refs #550: fix crash when myObject is NULL
[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*, QWidget* = 0 );
37   ~HYDROGUI_DataBrowser();
38
39   HYDROGUI_Module*         module() const;
40
41   /*!
42     Find a data object by the specified entry.
43     \param theEntry - Entry of the object.
44     \return data object.
45   */
46   virtual SUIT_DataObject* findObject( const QString& ) const;
47
48   void                     setReadOnly( const bool theIsReadOnly ); 
49
50 signals:
51   void             dropped( const QList<SUIT_DataObject*>& theList, 
52                             SUIT_DataObject* theTargetParent,
53                             int theTargetRow, Qt::DropAction theDropAction );
54   void             dataChanged();
55   void             newRegion();
56
57 protected:
58   virtual void createPopupMenu( QMenu* );
59
60 private:
61   HYDROGUI_Module* myModule;
62 };
63
64 #endif