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
159 lines
7.4 KiB
C++
159 lines
7.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 TInspectorAPI_PluginParameters_H
|
|
#define TInspectorAPI_PluginParameters_H
|
|
|
|
#include <NCollection_DataMap.hxx>
|
|
#include <NCollection_List.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
|
|
|
|
//! The container of parameters for all possible plugins. It stores list of parameters for each plugin, even
|
|
//! it was not be loaded yet. There is a map of plugin name into plugin parameters.
|
|
//! The parameters may be:
|
|
//! - child of Standard_Transient
|
|
//! - file name to be opened by the plugin
|
|
class TInspectorAPI_PluginParameters : public Standard_Transient
|
|
{
|
|
public:
|
|
|
|
//! Constructs the container.
|
|
Standard_EXPORT TInspectorAPI_PluginParameters() {}
|
|
|
|
//! Destructor
|
|
Standard_EXPORT virtual ~TInspectorAPI_PluginParameters() {}
|
|
|
|
//! Stores the parameters for plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \param theParameters a list of parameters
|
|
//! \param theToActivatePlugin a state whether the plugin should be immediately activated, to be used in a heir
|
|
Standard_EXPORT virtual void SetParameters (const TCollection_AsciiString& thePluginName,
|
|
const NCollection_List<Handle(Standard_Transient)>& theParameters,
|
|
const Standard_Boolean& theToActivatePlugin = Standard_False);
|
|
|
|
//! Adds a file name for the plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \param theFileName a name
|
|
Standard_EXPORT void AddFileName (const TCollection_AsciiString& thePluginName,
|
|
const TCollection_AsciiString& theFileName);
|
|
|
|
//! Sets file names for the plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \param theFileNames container of names
|
|
Standard_EXPORT void SetFileNames (const TCollection_AsciiString& thePluginName,
|
|
const NCollection_List<TCollection_AsciiString>& theFileNames);
|
|
|
|
//! Sets a name of item to be selected in the plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \param theItemNames a container of names to be selected
|
|
Standard_EXPORT void SetSelectedNames (const TCollection_AsciiString& thePluginName,
|
|
const NCollection_List<TCollection_AsciiString>& theItemNames);
|
|
|
|
//! Sets objects to be selected in the plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \param theObjects an objects
|
|
Standard_EXPORT void SetSelected (const TCollection_AsciiString& thePluginName,
|
|
const NCollection_List<Handle(Standard_Transient)>& theObjects);
|
|
|
|
//! Returns true if there are parameters set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return boolean result
|
|
Standard_EXPORT bool FindParameters (const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns parameters set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return container of objects
|
|
Standard_EXPORT const NCollection_List<Handle(Standard_Transient)>& Parameters (const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns true if there are file names set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return boolean result
|
|
Standard_EXPORT bool FindFileNames (const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns file names set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return container of names
|
|
Standard_EXPORT const NCollection_List<TCollection_AsciiString>& FileNames (const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns true if there are file names set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return boolean result
|
|
Standard_EXPORT bool FindSelectedNames (const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns name to be selected in the plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return container of names
|
|
Standard_EXPORT const NCollection_List<TCollection_AsciiString>& GetSelectedNames (
|
|
const TCollection_AsciiString& thePluginName);
|
|
|
|
//! Returns objects set for the given plugin
|
|
//! \param thePluginName a plugin name
|
|
//! \return container of objects
|
|
Standard_EXPORT Standard_Boolean GetSelectedObjects (const TCollection_AsciiString& thePluginName,
|
|
NCollection_List<Handle(Standard_Transient)>& theObjects);
|
|
|
|
//! Sets path to a directory for temporary plugin files
|
|
//! \param thePath a path
|
|
virtual void SetTemporaryDirectory (const TCollection_AsciiString& thePath) { myTemporaryDirectory = thePath; }
|
|
|
|
//! Returns path to a directory for temporary plugin files
|
|
//! \return path
|
|
TCollection_AsciiString GetTemporaryDirectory() const { return myTemporaryDirectory; }
|
|
|
|
//! Returns plugin preferences
|
|
//! \param thePluginName a plugin name
|
|
Standard_EXPORT virtual void GetPreferences (const TCollection_AsciiString& thePluginName,
|
|
TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
|
|
|
//! Stores plugin preferences
|
|
//! \param thePluginName a plugin name
|
|
//! \theItem container of plugin preferences values in form: <name, value>
|
|
Standard_EXPORT virtual void SetPreferences (const TCollection_AsciiString& thePluginName,
|
|
const TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
|
|
|
//! Stores plugin preferences into a preferences file
|
|
Standard_EXPORT virtual void StorePreferences() = 0;
|
|
|
|
//! Converts a Shape parameters excepting TShape into a string value
|
|
//! \param theShape processed shape
|
|
//! \return string instance
|
|
Standard_EXPORT static TCollection_AsciiString ParametersToString (const TopoDS_Shape& theShape);
|
|
|
|
//! Converts a Shape parameters exceptin TShape into a string value
|
|
//! \param theValue parameters string value (without TShape information)
|
|
//! \param theShape processed shape
|
|
Standard_EXPORT static void ParametersToShape (const TCollection_AsciiString& theValue, TopoDS_Shape& theShape);
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT (TInspectorAPI_PluginParameters, Standard_Transient)
|
|
private:
|
|
//! container of parameters
|
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)> > myParameters;
|
|
//! container of names
|
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString> > myFileNames;
|
|
//! container of select item names
|
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString> > mySelectedItemNames;
|
|
//! container of select objects
|
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)> > mySelectedObjects;
|
|
//! temporary directory for saving plugin preferences
|
|
TCollection_AsciiString myTemporaryDirectory;
|
|
};
|
|
|
|
#endif
|