< Home

< Table of Contents

REFERENCE MANUAL

SubwindowControl Class Reference

#include <hps.h>

Inheritance diagram for SubwindowControl:
Control Object

Public Member Functions

Type ObjectType () const
 
SubwindowControloperator= (SubwindowControl &&in_that)
 
SubwindowControloperator= (SubwindowControl const &in_that)
 
SubwindowControlSetBackground (Subwindow::Background in_bg_type, char const *in_definition_name="")
 
SubwindowControlSetBorder (Subwindow::Border in_border_type)
 
SubwindowControlSetRenderingAlgorithm (Subwindow::RenderingAlgorithm in_hsra)
 
SubwindowControlSetSubwindow (Rectangle const &in_window_position, Subwindow::Type in_type=Subwindow::Type::Standard)
 
bool ShowBackground (Subwindow::Background &out_bg_type, UTF8 &out_definition_name) const
 
bool ShowBorder (Subwindow::Border &out_border_type) const
 
bool ShowRenderingAlgorithm (Subwindow::RenderingAlgorithm &out_hsra) const
 
bool ShowSubwindow (Rectangle &out_window_position, Subwindow::Type &out_subwindow_type) const
 
 SubwindowControl (SegmentKey &in_seg)
 
 SubwindowControl (SubwindowControl const &in_that)
 
 SubwindowControl (SubwindowControl &&in_that)
 
SubwindowControlUnsetBackground ()
 
SubwindowControlUnsetBorder ()
 
SubwindowControlUnsetEverything ()
 
SubwindowControlUnsetRenderingAlgorithm ()
 
SubwindowControlUnsetSubwindow ()
 
 ~SubwindowControl ()
 
- Public Member Functions inherited from Object
virtual bool Empty () const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 
bool HasType (Type in_mask) const
 
 Object (Object &&in_that)
 
Objectoperator= (Object const &other_object)
 
Objectoperator= (Object &&in_that)
 
virtual void Reset ()
 
Type Type () const
 

Additional Inherited Members

- Static Public Member Functions inherited from Object
template<typename T >
static intptr_t ClassID ()
 
- Protected Member Functions inherited from Control
 Control (Control &&in_that)
 
Controloperator= (Control &&in_that)
 

Detailed Description

The SubwindowControl class is a smart pointer that is tied to a database object. The SubwindowControl allows you to manipulate the various settings associated with subwindows, such as border, background, and priority. As the main Visualize window is also an implicit subwindow, this control also allows you to set the rendering algorithm. The rendering algorithm should only have a single setting for each window or subwindow. Setting disparate rendering algorithms in multiple places in your scene can lead to unexpected results.

Default values for the various fields of SubwindowControl can be found here.

Constructor & Destructor Documentation

SubwindowControl::SubwindowControl ( SegmentKey in_seg)
explicit

Initializes a control tied to the segment in_seg.

SubwindowControl::SubwindowControl ( SubwindowControl const &  in_that)

Initializes a control tied to the same object as in_that.

SubwindowControl::SubwindowControl ( SubwindowControl &&  in_that)

The move constructor creates a SubwindowControl by transferring the underlying impl of the rvalue reference to this SubwindowControl thereby avoiding a copy and allocation.

Parameters
in_thatAn rvalue reference to a SubwindowControl to take the impl from.
SubwindowControl::~SubwindowControl ( )

Releases a reference to the database object this control is tied to.

Member Function Documentation

Type SubwindowControl::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from Control.

SubwindowControl& SubwindowControl::operator= ( SubwindowControl &&  in_that)

The move assignment operator transfers the underlying impl of the rvalue reference to this SubwindowControl thereby avoiding a copy.

Parameters
in_thatAn rvalue reference to a SubwindowControl to take the impl from.
Returns
A reference to this SubwindowControl.
SubwindowControl& SubwindowControl::operator= ( SubwindowControl const &  in_that)

Share the smart-pointer.

SubwindowControl& SubwindowControl::SetBackground ( Subwindow::Background  in_bg_type,
char const *  in_definition_name = "" 
)

Controls the type of background to be used for subwindows originating from this segment. This has no effect when applied to segments without a subwindow present.

Parameters
in_bg_typeThe type of background to be used for subwindows originating from this segment.
in_definition_namethe name of a definition to be used in the background. Only relevant if in_bg_type is Image or Cubemap.
Returns
A reference to this object.
SubwindowControl& SubwindowControl::SetBorder ( Subwindow::Border  in_border_type)

Controls the type of border, if any, that should be drawn for subwindows originating from this segment. This has no effect when applied to segments without a subwindow present.

Parameters
in_border_typeThe type of border, if any, that should be drawn for subwindows originating from this segment.
Returns
A reference to this object.
SubwindowControl& SubwindowControl::SetRenderingAlgorithm ( Subwindow::RenderingAlgorithm  in_hsra)

Determines the algorithm used to remove objects (or parts of objects) that are hidden from view by other objects. This has no effect when applied to segments without a subwindow present.

Parameters
in_hsraThe algorithm used to identify and remove hidden surfaces.
Returns
A reference to this object.
See also
Rendering algorithm default value
SubwindowControl& SubwindowControl::SetSubwindow ( Rectangle const &  in_window_position,
Subwindow::Type  in_type = Subwindow::Type::Standard 
)

Defines a portion of the containing window to act as a subwindow. Window segments have an implicit subwindow of -1 to 1 in both x and y directions that cannot be changed. Other segments can be constrained to some portion of that space. Most other subwindow-related settings are only relevant if they are applied on a segment that also contains a subwindow.

Parameters
in_subwindow_positionThe portion of the containing window that should be reserved for a subwindow. The subwindow is defined in the context of a rectangle extending out a single unit in each direction from the origin. For example, a subwindow rectangle defined as Rectangle(0, 1, -1, 0) would occupy the lower right quarter of the containing window.
in_subwindow_typeThe type of subwindow to create.
Returns
A reference to this object.
See also
Subwindow default value
bool SubwindowControl::ShowBackground ( Subwindow::Background out_bg_type,
UTF8 out_definition_name 
) const

Shows the window background setting

Parameters
out_bg_typeThe type of background to be used for subwindows originating from this segment.
out_definition_namethe name of a definition to be used in the background.
Returns
true if the setting is valid, false otherwise.
bool SubwindowControl::ShowBorder ( Subwindow::Border out_border_type) const

Shows the subwindow border setting

Parameters
out_border_typeThe type of border, if any, that should be drawn for subwindows originating from this segment.
Returns
true if the setting is valid, false otherwise.
bool SubwindowControl::ShowRenderingAlgorithm ( Subwindow::RenderingAlgorithm out_hsra) const

Shows the rendering algorithm setting.

Parameters
out_hsraThe algorithm used to identify and remove hidden surfaces.
Returns
true if the setting is valid, false otherwise.
bool SubwindowControl::ShowSubwindow ( Rectangle out_window_position,
Subwindow::Type out_subwindow_type 
) const

Shows the subwindow setting.

Parameters
out_subwindow_positionThe portion of the containing window that should be reserved for a subwindow.
out_subwindow_typeThe type of subwindow to create.
Returns
true if the setting is valid, false otherwise.
SubwindowControl& SubwindowControl::UnsetBackground ( )

Removes a subwindow background setting.

Returns
A reference to this object.
SubwindowControl& SubwindowControl::UnsetBorder ( )

Removes a subwindow border setting.

Returns
A reference to this object.
SubwindowControl& SubwindowControl::UnsetEverything ( )

Removes all settings from this object.

Returns
A reference to this object.
SubwindowControl& SubwindowControl::UnsetRenderingAlgorithm ( )

Removes a rendering algorithm setting.

Returns
A reference to this object.
SubwindowControl& SubwindowControl::UnsetSubwindow ( )

Removes a subwindow setting.

Returns
A reference to this object.

The documentation for this class was generated from the following file: