1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tools/DFBrowser/DFBrowser_TreeModel.hxx
nds 7e1c1e4869 0030268: Inspectors - improvements in VInspector plugin
- Convert package creation. It is used to prepare some auxiliary presentations/methods to prepare variables for inspector based on occt classes.
- ViewControl package improvement:
  Classes for property view, table, table model are implemented to visualize view of properties.
  This view is filled by selection in tree if the selected object has implemented DumpJson functionality.
- TreeModel package improvements:
  Method InitColumn is implemented in TreeModel_TreeModel to fill default columns in base model. The default columns are:
    Name, Visibility, Rows. Additional columns should be added in successors.
  Container of root items is moved into the base class
- View package imrovements:
  Store preferences: display mode, fit all checked state and type of external context
  View_DisplayPreview is added to process preview for selected in tree view objects
  hide actions Clear, Multi, Single by default (as selection in tree view or Visibility state of item define which presentations should be displayed or erased)
- ShapeView plugin improvements:
  Property View content based on DumpJson (columns in tree view for properties are removed),
  Properties for TopoDS_Shape are displayed
  Explode shape action in tree view to see content of shape by selected shape type. Type of displayed shapes is only preview, it is not used in export action.
  Export shape into BREP. The previous implementation about BREP files in some directory and default view is removed.
- VInspector plugin imrovements:
  Property View content based on DumpJson (columns in tree view for properties are removed),
  Properties for AIS_InteractiveContext and AIS_InteractiveObject are displayed
  obsolete classes to provide properties are removed.
- DFBrowser plugin improvements:
  Property View content based on DumpJson is not used yet. But there is the USE_DUMPJSON macro. It's switch off by default.
  If switch ON, it creates a Property View filled with DumpJson. It's a way of DFBrowser moving on this property view.
  Init uses static variable CDF_Session::CurrentSession()->CurrentApplication to fill plugin if application in plugin is not set but OCAF application exists

- OCC_VERSION_HEX variable used for previous OCCT versions support (before 6.9.0 or 7.2.0) is removed
2020-02-12 18:00:36 +03:00

115 lines
4.7 KiB
C++

// Created on: 2017-06-16
// Created by: Natalia ERMOLAEVA
// Copyright (c) 2017 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef DFBrowser_TreeModel_H
#define DFBrowser_TreeModel_H
#include <inspector/DFBrowser_ItemBase.hxx>
#include <inspector/TreeModel_ModelBase.hxx>
#include <NCollection_List.hxx>
#include <Standard.hxx>
#include <TDF_Label.hxx>
#include <TDocStd_Application.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QByteArray>
#include <QHash>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class DFBrowser_TreeModel;
//! \class DFBrowser_TreeModel
//! Tree model that has items described TDocStd_Application. The structure of items is the following:
//! - <DFBrowser_ItemApplication>: for TDocStd_Application
//! - <DFBrowser_ItemDocument>: for TDocStd_Document
//!- <DFBrowser_Item>: for either TDF_Label or TDF_Attribute
//! It is possible to visualize some items as highlighted.
class DFBrowser_TreeModel : public TreeModel_ModelBase
{
Q_OBJECT
public:
//! Constructor
Standard_EXPORT DFBrowser_TreeModel (QObject* theParent);
//! Destructor
virtual ~DFBrowser_TreeModel() {}
//! Creates model columns and root items.
Standard_EXPORT virtual void InitColumns() Standard_OVERRIDE;
//! Fills the root item by the application
Standard_EXPORT void Init (const Handle(TDocStd_Application)& theApplication);
//! Fills root item by the module
Standard_EXPORT void SetModule (DFBrowser_Module* theModule);
//! Returns an OCAF application or NULL
//! \return an application instance
Standard_EXPORT Handle(TDocStd_Application) GetTDocStdApplication() const;
//! Returns true if the tree view model contains highlighted items. This highlight is set manually.
bool HasHighlighted() { return !myHighlightedIndices.isEmpty(); }
//! Sets items of the indices highlighted in the model.
//! \param theIndices a list of tree model indices
void SetHighlighted (const QModelIndexList& theIndices = QModelIndexList()) { myHighlightedIndices = theIndices; }
//! Returns tree model index of the label item. It creates container of the label fathers and
//! starting from the rools label it descends by the found labels till the parameter label.
//! \param theLabel an OCAF label
//! \return model index if the value is found or Null model index
Standard_EXPORT QModelIndex FindIndex (const TDF_Label& theLabel) const;
//! Returns tree model index by list of label entries and (possible) attribute name.
//! \param theLabelEntries a container of label entries starting from root till searched label
//! \param theValue a label entry or attribute name
//! \return model index if the value is found or Null model index
Standard_EXPORT QModelIndex FindIndexByPath (const QStringList& theLabelEntries, const QString& theValue) const;
//! Returns tree model index of the attribute item. It gets the attributes label, find index of the label
//! and after find under this item attribute child item.
//! \param theAttribute an OCAF attribute
//! \return model index if the value is found or Null model index
Standard_EXPORT QModelIndex FindIndexByAttribute (Handle(TDF_Attribute) theAttribute) const;
//! Returns tree model indices for the labels.
Standard_EXPORT void ConvertToIndices (const NCollection_List<TDF_Label>& theReferences, QModelIndexList& theIndices);
//! Returns tree model indices of references
Standard_EXPORT void ConvertToIndices (const NCollection_List<Handle(TDF_Attribute)>& theReferences,
QModelIndexList& theIndices);
//! Returns the data stored under the given role for the current item
//! \param theIndex the item model index
//! \param theRole the item model role
Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex,
int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
protected:
//! Creates root item
//! \param theColumnId index of a column
Standard_EXPORT virtual TreeModel_ItemBasePtr createRootItem (const int theColumnId) Standard_OVERRIDE;
private:
QModelIndexList myHighlightedIndices; //!< tree model indices that should be visualized as highlighted
};
#endif