95c35f86f327cd16945d41461fe7eb9720fff9cf
[occt.git] / tools / DFBrowser / DFBrowser_DumpView.hxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #ifndef DFBrowser_DumpView_H
17 #define DFBrowser_DumpView_H
18
19 #include <Standard.hxx>
20 #include <Standard_Macro.hxx>
21
22 #include <Standard_WarningsDisable.hxx>
23 #include <QObject>
24 #include <QItemSelection>
25 #include <QPlainTextEdit>
26 #include <Standard_WarningsRestore.hxx>
27
28 class QWidget;
29
30 //! \class DFBrowser_DumpView
31 //! \brief View to display result of Dump() method of a TDF_Attribute
32 class DFBrowser_DumpView : public QObject
33 {
34   Q_OBJECT
35 public:
36
37   //! Constructor
38   DFBrowser_DumpView (QWidget* theParent) : QObject(theParent), myTextEdit( new QPlainTextEdit(theParent) ) {}
39
40   //! Destructor
41   virtual ~DFBrowser_DumpView() Standard_OVERRIDE {}
42
43   //! \return the text edit control
44   QWidget* GetControl() const { return myTextEdit; }
45
46 public slots:
47
48   //! Slots listen selection change and update the current control content by selection
49   //! \param theSelected container of selected items
50   //! \param theDeselected container of items that become deselected
51   Standard_EXPORT void OnTreeViewSelectionChanged (const QItemSelection& theSelected, const QItemSelection& theDeselected);
52
53 private:
54
55   QPlainTextEdit* myTextEdit; //!< information view
56 };
57 #endif