1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tools/View/View_Displayer.hxx
nds 14bbbdcbc1 0027398: Integrate Qt Browser Widget to Open CASCADE Technology
The following implementation has been made:
- CMake procedure is extended to compile Qt tools. This is optional and is handled by USE_QT_TOOLS option(OFF by default)
- It is possible to build Qt tools using Qt5 or Qt4, it is settled with USE_QT4 option.
- Sample of DFBrowser tool is available in samples/tools/TInspectorEXE. It is build with tools, executable is placed in binaries. To start the sample, use dfbrowser.bat command.
- DFBrowser tool may be started from DRAW
2017-07-28 15:35:16 +03:00

124 lines
5.8 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 View_Displayer_H
#define View_Displayer_H
#include <AIS_ListOfInteractive.hxx>
#include <AIS_InteractiveContext.hxx>
#include <NCollection_DataMap.hxx>
#include <NCollection_Shared.hxx>
#include <Quantity_Color.hxx>
#include <View_PresentationType.hxx>
class V3d_View;
//! \class View_Displayer
//! \brief It is responsible for communication with AIS Interactive Context to:
//! - display/erase presentations;
//! - change display mode of visualized presentations (Shaded or WireFrame mode)
//!
//! It contains containers of visualized presentations to obtain presentations relating only to this displayer.
//! Displayer is connected to AIS Interactive Context
class View_Displayer
{
public:
//! Constructor
Standard_EXPORT View_Displayer();
//! Destructor
virtual ~View_Displayer() {}
//! Stores the current context where the presentations will be displayed/erased.
//! Erases previuously displayd presentations if there were some displayed
//! \param theContext a context instance
Standard_EXPORT void SetContext (const Handle(AIS_InteractiveContext)& theContext);
//! Stores boolean value if presentations should be keeped. If true, new displayed presentation is added to already
//! displayed ones, otherwise the displayed presentation is shown only.
//! \param theToKeepPresentation boolean state
void KeepPresentations (const bool theToKeepPresentations) { myIsKeepPresentations = theToKeepPresentations; }
//! Stores display mode and changes display mode of displayed presentations
//! \param theDisplayMode a mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
//! \param theType presentation type
//! \param isToUpdateView boolean state if viewer should be updated
Standard_EXPORT void SetDisplayMode (const int theDisplayMode,
const View_PresentationType theType = View_PresentationType_Main,
const bool theToUpdateViewer = true);
//! Displays presentation in context, erase previous presentations if KeepPresentations is false,
//! Color of presentation is from attribute color if exists or the default color
//! Display mode is equal to the view state
//! If KeepPresentations is false, the viewer is fit all
//! Displayed presentation is stored in an internal map of displayed presentations
//! \param thePresentation a presentation, it will be casted to AIS_InteractiveObject
//! \param theType presentation type
//! \param isToUpdateView boolean state if viewer should be updated
Standard_EXPORT void DisplayPresentation (const Handle(Standard_Transient)& thePresentation,
const View_PresentationType theType = View_PresentationType_Main,
const bool theToUpdateViewer = true);
//! Erases all presentations from viewer. Iterates by internal map of displayed presentations and
//! erase these presentations.
//! \param isToUpdateView boolean state if viewer should be updated
Standard_EXPORT void EraseAllPresentations (const bool theToUpdateViewer = true);
//! Erases presentations of the given type
//! \param theType presentation type
//! \param isToUpdateView boolean state if viewer should be updated
Standard_EXPORT void ErasePresentations (const View_PresentationType theType = View_PresentationType_Main,
const bool theToUpdateViewer = true);
//! Calls UpdateCurrentViewer of context
Standard_EXPORT void UpdateViewer();
//! Stores color for type of presentation. During display of presentation of the given type, the color is used
//! \param theColor a presentation color
//! \param theType presentation type
Standard_EXPORT void SetAttributeColor (const Quantity_Color& theColor,
const View_PresentationType theType = View_PresentationType_Main);
//! Returns container of displayed presentations for the given type
//! \param thePresentations a container to be filled
//! \param theType presentation type
Standard_EXPORT void DisplayedPresentations (NCollection_Shared<AIS_ListOfInteractive>& thePresentations,
const View_PresentationType theType = View_PresentationType_Main);
//! Returns all displayed by the trihedron objects
const NCollection_DataMap<View_PresentationType, NCollection_Shared<AIS_ListOfInteractive>>& GetDisplayed() const { return myDisplayed; }
private:
//! Returns the current context
const Handle(AIS_InteractiveContext)& GetContext() const { return myContext; }
//! Returns 3d view
Handle(V3d_View) GetView() const;
private:
Handle(AIS_InteractiveContext) myContext; //!< context, where the displayer works
NCollection_DataMap<View_PresentationType, NCollection_Shared<AIS_ListOfInteractive>> myDisplayed; //!< visualized presentations
NCollection_DataMap<View_PresentationType, Quantity_Color> myColorAttributes; //!< color properties of presentations
bool myIsKeepPresentations; //!< flag if previously shown presentations stays in the context by displaying a new one
int myDisplayMode; //!< display mode: 0 - AIS_WireFrame, 1 - AIS_Shaded
};
#endif