![]() |
VR-Forces 5.0.2 Developer's Guide
|
The logic for the widget. This class does not have knowledge about how the widget was implemented, but communicates with the widget through an interface. The interface allows the widget or logic to be independently re-factored without affecting the other. This class extends the already existing logic class makVrv::DtLoaderSettingsWidget which manages user input for Flip DDS commands. This extended logic gives the user the ability to enable/disable the Flip DDS checkbox in the original dialog.

Public Member Functions | |
| DerivedDialogLogic (makVrv::DtDe &de, makVrv::DtPersistenceControlsInterface &persistenceControls, makVrv::DtLoaderSettingsInterface &settingsIFace, ExtraDialogInterface &extraIFace) | |
| virtual | ~DerivedDialogLogic () |
| void | slot_enableFlagSet (bool value) |
Public Member Functions inherited from makVrv::DtLoaderSettingsLogic | |
| DtLoaderSettingsLogic (DtDe &de, DtPersistenceControlsInterface &persistenceControls, DtLoaderSettingsInterface &widget) | |
| virtual | ~DtLoaderSettingsLogic () |
Protected Attributes | |
| ExtraDialogInterface & | myInterface |
Protected Attributes inherited from makVrv::DtLoaderSettingsLogic | |
| DtLoaderSettingsInterface & | myWidget |
| DtPersistenceControlsInterface & | myPersistenceControls |
| DtDe & | myDe |
Protected Attributes inherited from makVrv::DtSignalConnectionManager | |
| Connections | myConnections |
| bool | myConnectionsBlocked |
| bool | myIndiviualConnectionedBlocked |
| std::vector < boost::signalslib::shared_connection_block * > | mySharedConnectionsBlockManager |
Additional Inherited Members | |
Protected Types inherited from makVrv::DtSignalConnectionManager | |
| typedef std::vector < boost::signalslib::connection > | Connections |
Protected Member Functions inherited from makVrv::DtLoaderSettingsLogic | |
| void | sendSettingsToGui () |
| void | slot_ddsFlipSet (bool flip) |
| void | on_import () |
| void | on_export () |
| void | on_importFilePathChosen (const std::string &filePath) |
| void | on_exportFilePathChosen (const std::string &filePath) |
| virtual void | settingsRestored (const DtSettingsBackup *) |
Protected Member Functions inherited from makVrv::DtSignalConnectionManager | |
| DtSignalConnectionManager () | |
| virtual | ~DtSignalConnectionManager () |
| void | manageConnection (const boost::signalslib::connection &conn) |
| DtSignalConnectionManager & | operator+= (const boost::signalslib::connection &conn) |
| bool | blockConnections (bool blocked) |
| int | numberOfConnections () const |
| void | disconnectSignals () |
| bool | connectionsBlocked () const |
| DerivedDialogLogic::DerivedDialogLogic | ( | makVrv::DtDe & | de, |
| makVrv::DtPersistenceControlsInterface & | persistenceControls, | ||
| makVrv::DtLoaderSettingsInterface & | settingsIFace, | ||
| ExtraDialogInterface & | extraIFace | ||
| ) |
CTOR. At construction time, this logic is connected to the boost::signals of the widget-interface to receive updates when the widget changes. A reference to the widget-interface is saved to call back to the widget.
|
virtual |
CTOR. Disconnect from the boost::signals of the widget-interface.
| void DerivedDialogLogic::slot_enableFlagSet | ( | bool | value | ) |
Catches a signal from the widget-interface. When called this slot commands the widget, through the interface, to enable or disable the checkbox.
|
protected |