mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- 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
141 lines
6.4 KiB
C++
141 lines
6.4 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 VInspector_CallBack_H
|
|
#define VInspector_CallBack_H
|
|
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <Standard.hxx>
|
|
#include <inspector/VInspectorAPI_CallBack.hxx>
|
|
#include <inspector/VInspector_CallBackMode.hxx>
|
|
#include <inspector/VInspector_ViewModelHistory.hxx>
|
|
#include <inspector/VInspector_Tools.hxx>
|
|
|
|
class AIS_InteractiveObject;
|
|
class SelectMgr_EntityOwner;
|
|
|
|
//! \class VInspector_CallBack
|
|
//! Updates inspector state on actions in context
|
|
class VInspector_CallBack : public VInspectorAPI_CallBack
|
|
{
|
|
public:
|
|
|
|
//! Constructor
|
|
VInspector_CallBack() : VInspectorAPI_CallBack() {}
|
|
|
|
//! Destructor
|
|
virtual ~VInspector_CallBack() {}
|
|
|
|
//! Appends displayed presentation into history model
|
|
//! \param thePrs the presentation
|
|
virtual void Display (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Display, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends redisplayed presentation into history model
|
|
//! \param thePrs the presentation
|
|
virtual void Redisplay (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Redisplay, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends removed presentation into history model
|
|
//! \param thePrs the presentation
|
|
virtual void Remove (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Remove, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends loaded presentation into history model
|
|
//! \param thePrs the presentation
|
|
virtual void Load (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Load, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends information about modes activation
|
|
//! \param thePrs the presentation
|
|
//! \param theModes the selection modes
|
|
virtual void ActivatedModes (Handle(AIS_InteractiveObject) thePrs, TColStd_ListOfInteger& theModes) Standard_OVERRIDE
|
|
{ (void)thePrs; (void)theModes; }
|
|
|
|
//! Appends information about mode activation
|
|
//! \param thePrs the presentation
|
|
//! \param theModes the selection mode
|
|
Standard_EXPORT virtual void Activate (Handle(AIS_InteractiveObject) thePrs,
|
|
const Standard_Integer theMode) Standard_OVERRIDE;
|
|
|
|
//! Appends information about modes deactivation
|
|
//! \param thePrs the presentation
|
|
virtual void Deactivate (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Deactivate, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends information about modes deactivation
|
|
//! \param thePrs the presentation
|
|
//! \param theMode the selection mode
|
|
virtual void Deactivate (Handle(AIS_InteractiveObject) thePrs, const Standard_Integer theMode) Standard_OVERRIDE
|
|
{ (void)theMode;
|
|
if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_Deactivate, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends information about selection change
|
|
//! \param theShape the selected shape
|
|
Standard_EXPORT virtual void AddOrRemoveSelected (const TopoDS_Shape& theShape) Standard_OVERRIDE;
|
|
|
|
//! Appends information about selection change
|
|
//! \param thePrs the selected presentation
|
|
Standard_EXPORT virtual void AddOrRemoveSelected (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE;
|
|
|
|
//! Appends information about selection change
|
|
//! \param theOwner the selected owner
|
|
Standard_EXPORT virtual void AddOrRemoveSelected (Handle(SelectMgr_EntityOwner) theOwner) Standard_OVERRIDE;
|
|
|
|
//! Appends information about selection clear
|
|
Standard_EXPORT virtual void ClearSelected() Standard_OVERRIDE;
|
|
|
|
//! Appends information about selection clear
|
|
//! \param thePrs the selected presentation
|
|
virtual void ClearSelected (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_ClearSelected, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends information about moving to point
|
|
//! \param theXPix a pixels on horizontal
|
|
//! \param theYPix a pixels on vertical
|
|
Standard_EXPORT virtual void MoveTo (const Standard_Integer theXPix, const Standard_Integer theYPix) Standard_OVERRIDE;
|
|
|
|
//! Appends information about setting selection
|
|
//! \param thePrs the selected presentation
|
|
virtual void SetSelected (Handle(AIS_InteractiveObject) thePrs) Standard_OVERRIDE
|
|
{ if (myHistoryModel != 0) myHistoryModel->AddElement (VInspector_CallBackMode_SetSelected, VInspector_Tools::GetInfo (thePrs)); }
|
|
|
|
//! Appends information about select
|
|
Standard_EXPORT virtual void Select() Standard_OVERRIDE;
|
|
|
|
//! Appends information about shift select
|
|
Standard_EXPORT virtual void ShiftSelect() Standard_OVERRIDE;
|
|
|
|
//! Sets history model, it will be filled by actions in context
|
|
//! \param theHistoryModel the view model
|
|
void SetHistoryModel (VInspector_ViewModelHistory* theHistoryModel) { myHistoryModel = theHistoryModel; }
|
|
|
|
//! Sets context, where actions happen
|
|
//! \param theContext a context instance
|
|
void SetContext (const Handle(AIS_InteractiveContext)& theContext) { myContext = theContext; }
|
|
DEFINE_STANDARD_RTTIEXT(VInspector_CallBack, VInspectorAPI_CallBack)
|
|
|
|
//! Returns string information of call back mode
|
|
//! \param theMode type of AIS action
|
|
//! \return information text
|
|
static QString GetInfo (const VInspector_CallBackMode& theMode);
|
|
|
|
private:
|
|
VInspector_ViewModelHistory* myHistoryModel; //!< the current history model, fulfilled by context actions
|
|
Handle(AIS_InteractiveContext) myContext; //!< the listened context
|
|
};
|
|
|
|
#endif
|