VR-Forces 4.2 Class Documentation
List of all members | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes
DtUiStringElement Class Reference
Inheritance diagram for DtUiStringElement:
Inheritance graph
[legend]

Public Member Functions

 DtUiStringElement (makVrv::DtDe &)
 Constructor.
virtual ~DtUiStringElement ()
 Destructor.
virtual void setValue (const QString &)
 Sets/gets values.
virtual QString value () const
virtual void elementChanged ()
- Public Member Functions inherited from DtUiElement
 DtUiElement (makVrv::DtDe &)
 Constructor.
virtual ~DtUiElement ()
 Destructor.
virtual bool blockSignals (bool)
virtual void init (QWidget *widget, QWidget *label, DtReaderWriter *originalData, DtReaderWriter *backupData, DtElementChangedCallbackFcn=boost::bind(&DtUiElement::theNullFunction, _1))
virtual void init (QWidget *widget, QWidget *label, const std::vector< DtReaderWriter * > &originalData, const std::vector< DtReaderWriter * > &backupData, DtElementChangedCallbackFcn=boost::bind(&DtUiElement::theNullFunction, _1))
virtual void init (QWidget *widget, QWidget *label, const DtObjectType &, const DtString &platformType, DtElementChangedCallbackFcn=boost::bind(&DtUiElement::theNullFunction, _1))
virtual DtString displayUnits () const
virtual void setDisplayUnits (const DtString &units)
virtual void setLabelText (const QString &)
virtual DtString sourceUnits () const
virtual void setSourceUnits (const DtString &units)
virtual void setFromSystemParameterData (const DtSystemParameterData *data)
 Sets data of this UiElement from the specified system parameter data.
virtual void objectParametersModified ()
 This method is called any time that any of the parameters for the object are modified.
virtual void processUiEvent (const DtUiElementEvent &)
 Process ui event. Default does nothing.
virtual void setModelModified (DtModelSetEntry *)
 Called when the model is modified. Default is no-op.
virtual DtString uniqueName () const
 Returns a unique name for this element.
virtual bool supportsSystems () const
 Returns true if this element supports systes.
virtual const DtStringplatformType () const
 Returns the type of platform this entity represents.
virtual void setPlatformType (const DtString &)
 Sets the type of platform for this entity.
virtual void setObjectTypes (const std::vector< DtObjectType > &)
 Sets the object type this element represents.
virtual void aboutToShow ()
 Called when about to show as part of a properties dialog. Default is no-op.
virtual bool isModified () const
virtual void decorateElement ()
 Sets element decoration depending on the isModified state of the element.
virtual void setFromParameters (DtReaderWriter *parentRw)
 Calls setFromParameters with std::vector of parameter.
virtual bool restoreFromBackup ()
 Restores this element from a backup created with the specified name.
const std::vector< DtObjectType > & objectTypes () const
virtual void sendEvent (const DtUiElementEvent &)
virtual bool allValuesTheSame () const
virtual bool isMixedValue () const
 If widget is line edit and the value is mixedText returns true, else the subclass will need to return this value.

Static Public Member Functions

static DtUiElementCreatorFunction (makVrv::DtDe &)
- Static Public Member Functions inherited from DtUiElement
static void registerUiTypes ()
 Factory methods for creating ui elements.
static DtUiElementcreateUiElement (makVrv::DtDe &, const DtString &type)
static bool hasCreator (const DtString &)
static void theNullFunction (DtUiElement *)
static UiElementFactoryMapelementFactory ()
static QString mixedText ()
static void setMixedText (const QString &)

Protected Types

typedef std::map< DtString,
DtString
DisplayLabelToSourceValueMap

Protected Member Functions

virtual void setFromParameters (const std::vector< DtReaderWriter * > &parentRw)
virtual void createControls (QWidget *widget)
 If any additional controls or initialization needs to be done, it is done here.
virtual DtString sourceValueToDisplayLabel (const DtString &source)
virtual DtString displayLabelToSourceValue (const DtString &display)
- Protected Member Functions inherited from DtUiElement
virtual double sourceToDisplayUnits (double) const
virtual double displayToSourceUnits (double) const
virtual QString units () const
virtual void updateLabelTitle ()
 Updates label title based on valid units.
virtual QString labelTitle () const
 Returns the unmodified label title.

Protected Attributes

bool myIsLineEdit
 True if this string element uses a line edit, false if combo box.
DisplayLabelToSourceValueMap myDisplayToSourceValues
- Protected Attributes inherited from DtUiElement
DtString myDisplayUnits
DtString mySourceUnits
std::vector< DtReaderWriter * > myValues
 Assumes 1 - 1 order that original and backup are same index in lists.
std::vector< DtReaderWriter * > myBackupValues
bool myIsNew
DtElementChangedCallbackFcn myElementChangedCallbackFunction
DtUnit mySource
DtUnit myDestination
makVrv::DtDe & myDe
DtString myPlatformType
std::vector< DtObjectType > myObjectTypes

Additional Inherited Members

- Public Types inherited from DtUiElement
typedef boost::function
< DtUiElement *(makVrv::DtDe &)> 
CreatorFunction
typedef std::map< std::string,
CreatorFunction
UiElementFactoryMap
- Public Slots inherited from DtUiElement
virtual void toggleDisplayed (bool display)
- Signals inherited from DtUiElement
void uiEvent (const DtUiElementEvent &)
- Public Attributes inherited from DtUiElement
QWidgetmyWidget
QWidgetmyLabel
- Protected Slots inherited from DtUiElement
virtual void enableIfChecked ()
 Connected to if the enable_if_checked property is set, and there is a matching check box for the enable_if_checked property.
virtual void disableIfChecked ()
 Connected to if the disable_if_checked property is set, and there is a matching check box for the disable_if_checked property.
- Static Protected Attributes inherited from DtUiElement
static UiElementFactoryMap theFactory

Member Typedef Documentation

Constructor & Destructor Documentation

DtUiStringElement::DtUiStringElement ( makVrv::DtDe &  )

Constructor.

virtual DtUiStringElement::~DtUiStringElement ( )
virtual

Destructor.

Member Function Documentation

static DtUiElement* DtUiStringElement::CreatorFunction ( makVrv::DtDe &  )
static
virtual void DtUiStringElement::setValue ( const QString &  )
virtual

Sets/gets values.

virtual QString DtUiStringElement::value ( ) const
virtual
virtual void DtUiStringElement::elementChanged ( )
virtual

Reimplemented from DtUiElement.

virtual void DtUiStringElement::setFromParameters ( const std::vector< DtReaderWriter * > &  parentRw)
protectedvirtual

Reimplemented from DtUiElement.

virtual void DtUiStringElement::createControls ( QWidget widget)
protectedvirtual

If any additional controls or initialization needs to be done, it is done here.

Reimplemented from DtUiElement.

virtual DtString DtUiStringElement::sourceValueToDisplayLabel ( const DtString source)
protectedvirtual
virtual DtString DtUiStringElement::displayLabelToSourceValue ( const DtString display)
protectedvirtual

Member Data Documentation

bool DtUiStringElement::myIsLineEdit
protected

True if this string element uses a line edit, false if combo box.

DisplayLabelToSourceValueMap DtUiStringElement::myDisplayToSourceValues
protected

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

Document ID: Generated on Sun Nov 24 19:49:21 EST 2013 from SVN revision 133924
Copyright © 2005-2013 VT MÄK. All Rights Reserved (www.mak.com)