]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_ObjectsBrowser.h
Salome HOME
169615c3d88c2e4ff3fa9cca619c1686c4346238
[modules/shaper.git] / src / XGUI / XGUI_ObjectsBrowser.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #ifndef XGUI_ObjectsBrowser_H
4 #define XGUI_ObjectsBrowser_H
5
6 #include "XGUI.h"
7 #include <ModuleBase_Definitions.h>
8 #include <ModelAPI_Object.h>
9 #include <ModelAPI_ResultPart.h>
10 #include <ModelAPI_Events.h>
11
12 #include <QWidget>
13 #include <QTreeView>
14
15 class ModuleBase_IDocumentDataModel;
16 class QLineEdit;
17
18 /**
19 * \ingroup GUI
20 * Implementation of Data Tree object for Object Browser
21 */
22 class XGUI_DataTree : public QTreeView
23 {
24 Q_OBJECT
25  public:
26    /// Constructor
27    /// \param theParent a parent widget
28   XGUI_DataTree(QWidget* theParent);
29
30   virtual ~XGUI_DataTree();
31
32   /// Returns current data model
33   ModuleBase_IDocumentDataModel* dataModel() const;
34
35 signals:
36   //! Emited on context menu request
37   void contextMenuRequested(QContextMenuEvent* theEvent);
38
39 public slots:
40   /// Clear content of data tree
41   virtual void clear();
42
43  protected slots:
44   /// Commit modified data (used for renaming of objects)
45   virtual void commitData(QWidget* theEditor);
46
47  protected:
48    /// Redefinition of virtual method
49   virtual void contextMenuEvent(QContextMenuEvent* theEvent);
50
51    /// Redefinition of virtual method
52   virtual void resizeEvent(QResizeEvent* theEvent);
53
54 };
55
56 /**\class XGUI_ObjectsBrowser
57  * \ingroup GUI
58  * \brief Object browser window object. Represents data tree of current data structure
59  */
60 class XGUI_EXPORT XGUI_ObjectsBrowser : public QWidget
61 {
62 Q_OBJECT
63  public:
64    /// Constructor
65    /// \param theParent a parent widget
66   XGUI_ObjectsBrowser(QWidget* theParent);
67   virtual ~XGUI_ObjectsBrowser();
68
69   //! Returns Model which provides access to data objects
70   ModuleBase_IDocumentDataModel* dataModel() const
71   {
72     return myDocModel;
73   }
74
75   //! Returns list of currently selected objects
76   QObjectPtrList selectedObjects() const
77   {
78     return mySelectedData;
79   }
80
81   /// Set selected list of objects
82   /// \param theObjects list of objects to select
83   void setObjectsSelected(const QObjectPtrList& theObjects);
84
85   //! Returns currently selected indexes
86   QModelIndexList selectedIndexes() const
87   {
88     return myTreeView->selectionModel()->selectedIndexes();
89   }
90
91   //! Returns TreeView widget
92   XGUI_DataTree* treeView() const
93   {
94     return myTreeView;
95   }
96
97   /// Returns active doc label object
98   QLineEdit* activeDocLabel() const { return myActiveDocLbl; }
99
100   /// Rebuild data tree
101   void rebuildDataTree();
102
103   /// Resets the object browser into initial state
104   void clearContent();
105
106   /// Set Data Model for the Object Browser
107   void setDataModel(ModuleBase_IDocumentDataModel* theModel);
108
109 signals:
110   //! Emited when selection is changed
111   void selectionChanged();
112
113   //! Emited on context menu request
114   void contextMenuRequested(QContextMenuEvent* theEvent);
115
116  protected:
117    /// Redefinition of virtual method
118   virtual bool eventFilter(QObject* obj, QEvent* theEvent);
119
120  private slots:
121   /// Show context menu
122   /// \param theEvent a context menu event
123   void onContextMenuRequested(QContextMenuEvent* theEvent);
124
125   /// Show context menu on upper label
126   /// \param thePnt a position of context menu
127   void onLabelContextMenuRequested(const QPoint& thePnt);
128
129   //! Called on Edit command request
130   void onEditItem();
131
132   //! Called when selection in Data Tree is changed
133   void onSelectionChanged(const QItemSelection& theSelected, const QItemSelection& theDeselected);
134
135  private:
136   void closeDocNameEditing(bool toSave);
137
138   //! Internal model
139   ModuleBase_IDocumentDataModel* myDocModel;
140
141   QLineEdit* myActiveDocLbl;
142   XGUI_DataTree* myTreeView;
143
144   QObjectPtrList mySelectedData;
145 };
146
147 #endif