]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_ObjectsBrowser.h
Salome HOME
Merge branch 'Dev_1.2.0' of newgeom:newgeom into Dev_1.2.0
[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   /// Set selected list of objects
79   /// \param theObjects list of objects to select
80   void setObjectsSelected(const QObjectPtrList& theObjects);
81
82   //! Returns currently selected indexes
83   QModelIndexList selectedIndexes() const
84   {
85     return myTreeView->selectionModel()->selectedIndexes();
86   }
87
88   //! Returns TreeView widget
89   XGUI_DataTree* treeView() const
90   {
91     return myTreeView;
92   }
93
94   /// Returns active doc label object
95   QLineEdit* activeDocLabel() const { return myActiveDocLbl; }
96
97   /// Rebuild data tree
98   void rebuildDataTree();
99
100   /// Resets the object browser into initial state
101   void clearContent();
102
103   /// Set Data Model for the Object Browser
104   void setDataModel(ModuleBase_IDocumentDataModel* theModel);
105
106 signals:
107   //! Emited when selection is changed
108   void selectionChanged();
109
110   //! Emited on context menu request
111   void contextMenuRequested(QContextMenuEvent* theEvent);
112
113  protected:
114    /// Redefinition of virtual method
115   virtual bool eventFilter(QObject* obj, QEvent* theEvent);
116
117  private slots:
118   /// Show context menu
119   /// \param theEvent a context menu event
120   void onContextMenuRequested(QContextMenuEvent* theEvent);
121
122   /// Show context menu on upper label
123   /// \param thePnt a position of context menu
124   void onLabelContextMenuRequested(const QPoint& thePnt);
125
126   //! Called on Edit command request
127   void onEditItem();
128
129   //! Called when selection in Data Tree is changed
130   void onSelectionChanged(const QItemSelection& theSelected, const QItemSelection& theDeselected);
131
132  private:
133   void closeDocNameEditing(bool toSave);
134
135   //! Internal model
136   ModuleBase_IDocumentDataModel* myDocModel;
137
138   QLineEdit* myActiveDocLbl;
139   XGUI_DataTree* myTreeView;
140 };
141
142 #endif