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

This class will override some basic functionality of the observer views logic in order to retrieve current observer views from the scenario. More...

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

Public Member Functions

 DtVrfObserverViewsWidget (makVrv::DtDe &de, QWidget *parent=0, Qt::WindowFlags f=0)
 Constructor of the page.
virtual ~DtVrfObserverViewsWidget ()
 DTOR.
- Public Member Functions inherited from makVrv::DtObserverViewsWidget
virtual ~DtObserverViewsWidget ()
 DTOR.
virtual QIcon icon ()
 Get the icon of the page.
virtual QString title ()
 Get the title of the page.
virtual const std::string & pageClassName () const
 Get the class name of the page.
virtual std::string currentObserverView () const
 Returns the currently selected observer view.
- Public Member Functions inherited from makVrv::DtPage
 DtPage (DtDe &de, QWidget *parent=0, Qt::WindowFlags f=0)
 CTOR for page.
virtual ~DtPage ()
 DTOR for page.
- Public Member Functions inherited from makVrv::DtObserverViewsWidgetInterface
virtual ~DtObserverViewsWidgetInterface ()
 Virtual DTOR.

Public Attributes

QPushButtonmyAutoShowView
- Public Attributes inherited from makVrv::DtObserverViewsWidget
QVBoxLayout * myMainLayout
QHBoxLayout * myButtonLayout
QTreeWidgetmyObserverViews
QPushButtonmyAddView
QPushButtonmyDeleteView
QPushButtonmySaveViews
QPushButtonmySaveSingle
QPushButtonmyLoadViews
QPushButtonmyLoadAndMakeViewsCurrent
QPushButtonmyClearViews
double myLastSelectionChangedSimTime

Protected Slots

virtual void onChangeAutoShowView ()
 Called when the auto view button is pressed. Change the current view.
virtual void onScenarioInformationAboutToBeSaved ()
 Called before the scenario information is saved in order to commit name edits.
- Protected Slots inherited from makVrv::DtObserverViewsWidget
virtual void onAddObserverView ()
 Calls down to logic to capture view and add it back here.
virtual void onClearObserverViews ()
 Calls down to logic to clear out observer views.
virtual void onSaveViews ()
 Puts up dialog to allow user to specify a file to save all current views in and calls down to logic to do the save.
virtual void onSaveSelectedView ()
 Puts up dialog to allow user to specify a file to save the currently selected view in and calls down to logic to do the save.
virtual void onDeleteSelectedView ()
 Calls down to logic to delete currently selected view.
virtual void onLoadViews ()
 Calls down to logic to load file and place view records found in there into the interface.
virtual void onLoadViewsAndMakeCurrent ()
 Calls down to logic to load file and place view records found in there into the interface.

Protected Member Functions

virtual void onViewSelectionChanged ()
 If default observer view (or not) change the autoview button to update.
virtual void onItemPressed ()
 Calls down to logic to set a new observer view.
virtual void observerViewNameChanged ()
 Called when observer view name has changed, changed in record.
virtual void addObserverView (const std::string &)
 Adds a new observer view to the list of current views. If default view set font to bold.
virtual void onSetDefaultObserverView (std::string oldView, std::string newView)
 Sets the new default observer view view.
virtual void updateButtons ()
 Updates the state of the buttons reflective of current selection.
virtual void renameObserverRecord (const std::string &newName, const std::string &oldName)
 Renames the observer record from old name to new name.
- Protected Member Functions inherited from makVrv::DtObserverViewsWidget
 DtObserverViewsWidget (DtDe &de, QWidget *parent=0, Qt::WindowFlags f=0)
 Constructor of the page.
virtual void activate ()
 Called when the page is displayed.
virtual void deactivate ()
 Called when the page is hidden.
void setupUi (QWidget *p)
 Sets up the contents of the widget onto the supplied parent.
virtual void setViewStatesEnabled (bool)
 Tells the interface to enable/disable buttons that manipulate the observer view (add, load, observers view)
virtual void clearObserverViews ()
 Clears out observer views list.
virtual void deleteView (const std::string &)
 Removes the specified view from the observers view list.

Additional Inherited Members

- Protected Attributes inherited from makVrv::DtObserverViewsWidget
std::string myClassName
DtObserverViewsWidgetLogicmyLogic

Detailed Description

This class will override some basic functionality of the observer views logic in order to retrieve current observer views from the scenario.

The widget is present simply to allow for the creation of the new logic

Constructor & Destructor Documentation

makVrf::DtVrfObserverViewsWidget::DtVrfObserverViewsWidget ( makVrv::DtDe de,
QWidget parent = 0,
Qt::WindowFlags  f = 0 
)

Constructor of the page.

virtual makVrf::DtVrfObserverViewsWidget::~DtVrfObserverViewsWidget ( )
virtual

DTOR.

Member Function Documentation

virtual void makVrf::DtVrfObserverViewsWidget::onViewSelectionChanged ( )
protectedvirtual

If default observer view (or not) change the autoview button to update.

Reimplemented from makVrv::DtObserverViewsWidget.

virtual void makVrf::DtVrfObserverViewsWidget::onItemPressed ( )
protectedvirtual

Calls down to logic to set a new observer view.

Also will enable/disable buttons on selection Animates the observer view change if CTRL is pressed.

Reimplemented from makVrv::DtObserverViewsWidget.

virtual void makVrf::DtVrfObserverViewsWidget::observerViewNameChanged ( )
protectedvirtual

Called when observer view name has changed, changed in record.

Reimplemented from makVrv::DtObserverViewsWidget.

virtual void makVrf::DtVrfObserverViewsWidget::addObserverView ( const std::string &  )
protectedvirtual

Adds a new observer view to the list of current views. If default view set font to bold.

Reimplemented from makVrv::DtObserverViewsWidget.

virtual void makVrf::DtVrfObserverViewsWidget::onSetDefaultObserverView ( std::string  oldView,
std::string  newView 
)
protectedvirtual

Sets the new default observer view view.

virtual void makVrf::DtVrfObserverViewsWidget::updateButtons ( )
protectedvirtual

Updates the state of the buttons reflective of current selection.

virtual void makVrf::DtVrfObserverViewsWidget::renameObserverRecord ( const std::string &  newName,
const std::string &  oldName 
)
protectedvirtual

Renames the observer record from old name to new name.

Reimplemented from makVrv::DtObserverViewsWidget.

virtual void makVrf::DtVrfObserverViewsWidget::onChangeAutoShowView ( )
protectedvirtualslot

Called when the auto view button is pressed. Change the current view.

virtual void makVrf::DtVrfObserverViewsWidget::onScenarioInformationAboutToBeSaved ( )
protectedvirtualslot

Called before the scenario information is saved in order to commit name edits.

Member Data Documentation

QPushButton* makVrf::DtVrfObserverViewsWidget::myAutoShowView

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

Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (www.mak.com)