VR-Forces 4.3 Class Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions
makVrf::DtOffsetLocationEntryWidget Class Reference

A collection of 3 range widgets for x, y and z offsets (in meters). More...

Inheritance diagram for makVrf::DtOffsetLocationEntryWidget:
Inheritance graph
[legend]

Public Member Functions

 DtOffsetLocationEntryWidget (makVrv::DtDe &de, QWidget *parent, const Qt::WindowFlags &flags=0)
virtual ~DtOffsetLocationEntryWidget ()
virtual void setLabel (const std::string &)
 Display label. This will set the label for x, y and z values. Separate labels by semi-colon.
virtual double x () const
 Returns the offset value for x.
virtual double y () const
 Returns the offset value for y.
virtual double z () const
 Returns the offset value for z.
virtual void setX (double)
 Sets the x value.
virtual void setY (double)
 Sets the y value.
virtual void setZ (double)
 Sets the z value.
virtual DtReaderWritercreateBoundVariable (const std::string &variableName)
 Creates the reader/writer variable that will be used as part of the task statement (DtRwOffsetVector)
virtual void setupFromBoundVariable (const DtReaderWriter *variableName)
 Sets up the widget from the given reader/writer variables (DtRwOffsetVector)
virtual
DtTaskSetVariableWidgetExtensionInterface
parameterContents (QWidget *parent, const Qt::WindowFlags &flags=0) const
 Return extension that allows entry of default and range values in meters.
virtual void setTopLabelIsCheckable (bool b)
 Sets whether or not the top label is checkable.
virtual void setRange (double bottom, double top)
virtual void setDefaultValue (const std::string &)
 Default value to set in control. Separate by semi-colon to set values for x, y and z.
virtual void setVariableData (const std::string &)
 Variable data that can be used by this control to initialize values (i.e.
- Public Member Functions inherited from makVrf::DtTaskSetVariableWidget
 DtTaskSetVariableWidget (makVrv::DtDe &de, QWidget *parent, const Qt::WindowFlags &flags=0)
virtual ~DtTaskSetVariableWidget ()
virtual void setToolTip (const QString &)
 Sets the tool tip.
virtual void setupFrom (const std::vector< makVrv::DtSimEntry * > &data)
 Sets up widget with currently selected item. No-op.
virtual void setTopLineVisible (bool)
 Hides top line.
virtual bool topLineVisible () const
virtual void createTopLine ()
 Creates top line.
virtual void setIndent (int)
 Sets the indent level for the contents of this widget, except for the title line.
virtual bool isValid () const
 Indicates the current selection is valid.
virtual void setTopLabelChecked (bool)
 Sets the top label to be checked/unchecked and calls topLabelChecked if the check box is visible.
virtual bool topLabelChecked () const
virtual bool topLabelIsCheckable () const
virtual void getDefaultSpecificTitles (QString &defaultTitle, QString &specificTitle) const
virtual void setDefaultSpecificTitles (const QString &defaultTitle, const QString &specificTitle)
virtual void setupDefaultSpecificFromVariableData (const DtString &var)
 Format is allowdefault=[defaultTitle],[specificTitle].
- Public Member Functions inherited from makVrf::DtTaskSetVariableWidgetInterface
 DtTaskSetVariableWidgetInterface ()
virtual ~DtTaskSetVariableWidgetInterface ()
virtual bool guiElementOnly () const
 Returns true if this is a GUI element only. Default is false.

Static Public Member Functions

static makVrv::DtUnicode codeVariableType ()

Public Attributes

QGridLayout * myGridLayout
DtRangeEntryWidgetmyX
DtRangeEntryWidgetmyY
DtRangeEntryWidgetmyZ
- Public Attributes inherited from makVrf::DtTaskSetVariableWidget
boost::signal< void(bool)> signal_topLevelCheckStateChanged
QVBoxLayout * myVariableWidgetLayout
QHBoxLayout * mySpacedLayout
QVBoxLayout * myVariableContentLayout
 When creating subclasses of this item, use the variable content layout to add your content.
QWidgetmyTopLine
QLabelmyTopLabel
QWidgetmyChoiceCanvas
QRadioButton * myUseDefault
QRadioButton * myUseSpecific
QSpacerItem * myTopSeparator
QHBoxLayout * myTopLineLayout
QSpacerItem * mySpacerItem

Protected Member Functions

virtual void topLabelCheckStateChanged ()

Additional Inherited Members

- Signals inherited from makVrf::DtTaskSetVariableWidget
void validityUpdated ()
 Signal which can be emitted to indicate the validity of the current widget selection has changed.
- Protected Slots inherited from makVrf::DtTaskSetVariableWidget
- Protected Attributes inherited from makVrf::DtTaskSetVariableWidget
makVrv::DtDemyDe
makVrv::DtSignalConnectionManager myConnections
bool myTopLabelIsCheckable

Detailed Description

A collection of 3 range widgets for x, y and z offsets (in meters).

It is up to the user of this widget to determine what x, y and z actually mean. Different than a location entry widget as this will not be effected by coordinate system selection

Constructor & Destructor Documentation

makVrf::DtOffsetLocationEntryWidget::DtOffsetLocationEntryWidget ( makVrv::DtDe de,
QWidget parent,
const Qt::WindowFlags &  flags = 0 
)
virtual makVrf::DtOffsetLocationEntryWidget::~DtOffsetLocationEntryWidget ( )
virtual

Member Function Documentation

virtual void makVrf::DtOffsetLocationEntryWidget::setLabel ( const std::string &  )
virtual

Display label. This will set the label for x, y and z values. Separate labels by semi-colon.

Reimplemented from makVrf::DtTaskSetVariableWidget.

virtual void makVrf::DtOffsetLocationEntryWidget::setRange ( double  bottom,
double  top 
)
virtual

These methods must be implemented in order to be considered a DtTaskSetVariable that can be used as part of a scripted task. Same range is set for x, y and z

Implements makVrf::DtTaskSetVariableWidgetInterface.

virtual void makVrf::DtOffsetLocationEntryWidget::setDefaultValue ( const std::string &  )
virtual

Default value to set in control. Separate by semi-colon to set values for x, y and z.

Implements makVrf::DtTaskSetVariableWidgetInterface.

virtual void makVrf::DtOffsetLocationEntryWidget::setVariableData ( const std::string &  )
virtual

Variable data that can be used by this control to initialize values (i.e.

filtered list box, combo box). Items should be separated by a semi-colon. Unused for this class

Implements makVrf::DtTaskSetVariableWidgetInterface.

virtual double makVrf::DtOffsetLocationEntryWidget::x ( ) const
virtual

Returns the offset value for x.

virtual double makVrf::DtOffsetLocationEntryWidget::y ( ) const
virtual

Returns the offset value for y.

virtual double makVrf::DtOffsetLocationEntryWidget::z ( ) const
virtual

Returns the offset value for z.

virtual void makVrf::DtOffsetLocationEntryWidget::setX ( double  )
virtual

Sets the x value.

virtual void makVrf::DtOffsetLocationEntryWidget::setY ( double  )
virtual

Sets the y value.

virtual void makVrf::DtOffsetLocationEntryWidget::setZ ( double  )
virtual

Sets the z value.

virtual DtReaderWriter* makVrf::DtOffsetLocationEntryWidget::createBoundVariable ( const std::string &  variableName)
virtual

Creates the reader/writer variable that will be used as part of the task statement (DtRwOffsetVector)

Implements makVrf::DtTaskSetVariableWidgetInterface.

virtual void makVrf::DtOffsetLocationEntryWidget::setupFromBoundVariable ( const DtReaderWriter variableName)
virtual

Sets up the widget from the given reader/writer variables (DtRwOffsetVector)

Implements makVrf::DtTaskSetVariableWidgetInterface.

virtual DtTaskSetVariableWidgetExtensionInterface* makVrf::DtOffsetLocationEntryWidget::parameterContents ( QWidget parent,
const Qt::WindowFlags &  flags = 0 
) const
virtual

Return extension that allows entry of default and range values in meters.

Will also change according to coordinate settings

Reimplemented from makVrf::DtTaskSetVariableWidgetInterface.

static makVrv::DtUnicode makVrf::DtOffsetLocationEntryWidget::codeVariableType ( )
inlinestatic
virtual void makVrf::DtOffsetLocationEntryWidget::setTopLabelIsCheckable ( bool  )
virtual

Sets whether or not the top label is checkable.

If it is will hide the top label label and show the check box. If the check box is shown calls topLabelChecked

Reimplemented from makVrf::DtTaskSetVariableWidget.

virtual void makVrf::DtOffsetLocationEntryWidget::topLabelCheckStateChanged ( )
protectedvirtual

Reimplemented from makVrf::DtTaskSetVariableWidget.

Member Data Documentation

QGridLayout* makVrf::DtOffsetLocationEntryWidget::myGridLayout
DtRangeEntryWidget* makVrf::DtOffsetLocationEntryWidget::myX
DtRangeEntryWidget* makVrf::DtOffsetLocationEntryWidget::myY
DtRangeEntryWidget* makVrf::DtOffsetLocationEntryWidget::myZ

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

Document ID: Generated on Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (www.mak.com)