PDF
AuboStudio SDK  0.6.3
arcs::aubo_scope::ProgramContributionConfiguration Class Reference

ProgramContributionConfiguration Provides access to configure the properties of an installation node contribution. More...

#include <program_contribution_configuration.h>

Public Member Functions

 ProgramContributionConfiguration (ProgramContributionConfiguration &f)
 ProgramContributionConfiguration (ProgramContributionConfiguration &&f)
virtual ~ProgramContributionConfiguration ()
void setChildrenAllowed (bool childrenAllowed)
 If set to true it is possible for the program node to have child nodes.
void setChildrenAllowedOnly (const std::vector< std::string > &childrenList)
void setUserInsertable (bool userInsertable)
 If set to false this program node will not appear in the Program Tab in AuboScope and can not be inserted in the program tree by the end user.
void setDeprecated (bool deprecated)
 If set to true it is not possible for the end user to create new program nodes of this type.
void setDisplayOrderId (double displayOrderId)
 Set the display order id for this type of program node contribution.
void setAllowBreakpointOnNode (bool isBreakpointAllowed)
void setAllowBreakpointOnChildNodesInSubtree (bool isBreakpointOnChildNodesAllowed)
void setAllowStartFromNode (bool isStartFromNodeAllowed)
void setAllowStartFromChildNodesInSubtree (bool isStartFromChildNodesAllowed)
void setAllowInsertOnlyIntoNodes (const std::vector< std::string > &parentNodeNames)
 Configure parent node of this node.

Private Member Functions

 ProgramContributionConfiguration ()

Private Attributes

void * d_ { nullptr }

Friends

class DataSwitch

Detailed Description

ProgramContributionConfiguration Provides access to configure the properties of an installation node contribution.

Definition at line 26 of file program_contribution_configuration.h.

Constructor & Destructor Documentation

◆ ProgramContributionConfiguration() [1/3]

arcs::aubo_scope::ProgramContributionConfiguration::ProgramContributionConfiguration ( ProgramContributionConfiguration & f)

References ProgramContributionConfiguration().

Referenced by ProgramContributionConfiguration(), and ProgramContributionConfiguration().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ProgramContributionConfiguration() [2/3]

arcs::aubo_scope::ProgramContributionConfiguration::ProgramContributionConfiguration ( ProgramContributionConfiguration && f)

References ProgramContributionConfiguration().

Here is the call graph for this function:

◆ ~ProgramContributionConfiguration()

virtual arcs::aubo_scope::ProgramContributionConfiguration::~ProgramContributionConfiguration ( )
virtual

◆ ProgramContributionConfiguration() [3/3]

arcs::aubo_scope::ProgramContributionConfiguration::ProgramContributionConfiguration ( )
private

Member Function Documentation

◆ setAllowBreakpointOnChildNodesInSubtree()

void arcs::aubo_scope::ProgramContributionConfiguration::setAllowBreakpointOnChildNodesInSubtree ( bool isBreakpointOnChildNodesAllowed)

Configure whether or not the end user is allowed to set a breakpoint on or single step any of the child nodes in the sub-tree under the AuboCap program node. Note that it will only be possible to set a breakpoint on a child node if the child node itself supports breakpoints.

The default value is false.

Parameters
isBreakpointOnChildNodesAllowedtrue if it should be allowed to set a breakpoint on or single step any of the child nodes in the sub-tree under this AuboCap program node. If it should be disallowed, the value must be false.

◆ setAllowBreakpointOnNode()

void arcs::aubo_scope::ProgramContributionConfiguration::setAllowBreakpointOnNode ( bool isBreakpointAllowed)

Configure whether or not the end user is allowed to set a breakpoint on or single step the AuboCap program node.

The default value is true.

Parameters
isBreakpointAllowedtrue if it should be allowed to set a breakpoint on or single step this AuboCap program node. If it should be disallowed, the value must be false.

◆ setAllowInsertOnlyIntoNodes()

void arcs::aubo_scope::ProgramContributionConfiguration::setAllowInsertOnlyIntoNodes ( const std::vector< std::string > & parentNodeNames)

Configure parent node of this node.

End user cannot insert this node to

The default value is "".

Parameters
parentNodeName

◆ setAllowStartFromChildNodesInSubtree()

void arcs::aubo_scope::ProgramContributionConfiguration::setAllowStartFromChildNodesInSubtree ( bool isStartFromChildNodesAllowed)

Configure whether or not the end user can start the program directly from any selected child node in the sub-tree under the AuboCap program node. Note that it will only be possible to start from a selected child node if the child node itself supports starting from the child node.

The default value is false.

Parameters
isStartFromChildNodesAllowedtrue if it should be allowed to start the program directly from any child program node. If it should be disallowed, the value must be false..

◆ setAllowStartFromNode()

void arcs::aubo_scope::ProgramContributionConfiguration::setAllowStartFromNode ( bool isStartFromNodeAllowed)

Configure whether or not the end user can start the program from the AuboCap program node when it is selected in the program tree.

The default value is true.

Parameters
isStartFromNodeAllowedtrue if it should be allowed to start the program directly from this AuboCap program node. If it should be disallowed, the value must be false.

◆ setChildrenAllowed()

void arcs::aubo_scope::ProgramContributionConfiguration::setChildrenAllowed ( bool childrenAllowed)

If set to true it is possible for the program node to have child nodes.

The default value is false.

Parameters
childrenAlloweddetermines whether this node can have child nodes

◆ setChildrenAllowedOnly()

void arcs::aubo_scope::ProgramContributionConfiguration::setChildrenAllowedOnly ( const std::vector< std::string > & childrenList)

◆ setDeprecated()

void arcs::aubo_scope::ProgramContributionConfiguration::setDeprecated ( bool deprecated)

If set to true it is not possible for the end user to create new program nodes of this type.

Loading of existing programs will however still be supported for this program node.

The default value is false.

Parameters
deprecateddetermines whether this node is deprecated

◆ setDisplayOrderId()

void arcs::aubo_scope::ProgramContributionConfiguration::setDisplayOrderId ( double displayOrderId)

Set the display order id for this type of program node contribution.

This makes it possible to specify how all the program node contributions from a AuboCap should be ordered/sorted in AuboScope.

All program node contributions from a AuboCap will be grouped together and sorted (in ascending order) according to their display order id.

The default value is 0.0. If the display order id for all program node contributions in a AuboCap have the default value, the standard built-in sorting in AuboScope will be used.

Parameters
displayOrderIdDetermines the display order of the AuboCap program node type

◆ setUserInsertable()

void arcs::aubo_scope::ProgramContributionConfiguration::setUserInsertable ( bool userInsertable)

If set to false this program node will not appear in the Program Tab in AuboScope and can not be inserted in the program tree by the end user.

It can only be inserted programmatically using the ProgramNodeFactory. This also means, it can not be inserted using copy/paste of that node directly. It can however be inserted by copy/paste of an ancestor of such a node.

The default value is true.

Parameters
userInsertabledetermines whether the end user can insert this node

◆ DataSwitch

friend class DataSwitch
friend

Definition at line 181 of file program_contribution_configuration.h.

References DataSwitch.

Referenced by DataSwitch.

Member Data Documentation

◆ d_

void* arcs::aubo_scope::ProgramContributionConfiguration::d_ { nullptr }
private

Definition at line 182 of file program_contribution_configuration.h.


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