![]() |
MAK RTIspy API Documentation for HLA 1516
|
Base class for all classes which perform management activities for the Assistant. More...
Inheritance diagram for DtAssistantMgr:
Collaboration diagram for DtAssistantMgr:Public Slots | |
| void | displayWarningDialogs () |
| Displays all warning dialogs. | |
Signals | |
| void | warningDialogDisplayed () |
| Emitted when a warning dialog is displayed. | |
| void | warningDialogDismissed () |
| Emitted when a warning dialog is dismissed. | |
| void | popupRequested (const MAKRti::DtString &text, int sourceCompId, const MAKRti::DtString &advancedText) |
| Emitted when a popup dialog should be displayed. | |
| void | popupRequested (const MAKRti::DtString &text, const MAKRti::DtString &source, const MAKRti::DtString &advancedText) |
| Emitted when a popup dialog should be displayed. | |
| void | notificationRequested (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, int sourceCompId, bool logOnly) |
| Emitted when a notification should be displayed. | |
| void | notificationRequested (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, const MAKRti::DtString &source, bool logOnly) |
| Emitted when a notification should be displayed. | |
Public Member Functions | |
| DtAssistantMgr (DtBoost::shared_ptr< DtRtiAssistantServer > server, DtBoost::shared_ptr< DtRtiAssistantPeer > peer, DtAssistantSignalRouter &signalRouter) | |
| Constructor. | |
| virtual | ~DtAssistantMgr () |
| Destructor. | |
| virtual void | initialize () |
| Initializes this manager just prior to beginning assistant processing. | |
| virtual void | tick () |
| Performs tasks that need to be completed periodically. | |
| virtual void | startShutdown () |
| Performs any necessary processing at the start of shutdown. | |
| virtual bool | dialogsVisible () const |
| Determines if there are any visible dialogs for which this manager is responsible. | |
| virtual void | configWidget (DtAssistantConfigWidget **widget, QIcon &icon, QString &name, DtPreferencesPage &pageId) |
| Retrieves a widget which will be placed in the configuration dialog for configuring user preferences. | |
| virtual void | updateConfigWidget () |
| Forces the configuration widget to be updated. | |
| virtual void | processConfigWidgetAccept () |
| Process the changes that were accepted in the configuration widget. | |
Protected Member Functions | |
| void | startDialog (QDialog *dlg, bool inTaskbar, bool warningDialog) |
| Sets up the given widget as a dialog. | |
| void | finishDialog (QDialog *dlg) |
| Should be called prior to deleting any dialog started with startDialog. | |
| void | showDialog (QDialog *dlg) |
| Shows the dialog. | |
| void | startMainWindow (QMainWindow *dlg) |
| Sets up a main window dialog. | |
| void | finishMainWindow (QMainWindow *dlg) |
| Should be called prior to deleting any dialog started with startMainWindow. | |
| void | showMainWindow (QMainWindow *dlg) |
| Shows the dialog. | |
| void | showPopup (const MAKRti::DtString &text, int sourceCompId=-1, const MAKRti::DtString &advancedText=MAKRti::DtString::nullString()) |
| Displays a popup message with the given text, advanced text, and name of the given source component. | |
| void | showPopup (const MAKRti::DtString &text, const MAKRti::DtString &source, const MAKRti::DtString &advancedText=MAKRti::DtString::nullString()) |
| Displays a popup message with the given text, advanced text, and source name. | |
| void | displayNotification (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, int sourceCompId=-1) |
| Displays and logs a notification from the given component. | |
| void | displayNotification (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, const MAKRti::DtString &source) |
| Displays and logs notification with the given component name. | |
| void | logNotification (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, int sourceCompId=-1) |
| Logs a notification from the given component, does not display. | |
| void | logNotification (const MAKRti::DtString &message, MAKRti::DtNotifyLevelType notifyLevel, const MAKRti::DtString &source) |
| Logs a notification with the given component name, does not display. | |
Protected Attributes | |
| DtBoost::shared_ptr < DtRtiAssistantServer > | myServer |
| The Assistant server from which new messages will arrive from local RTI components. | |
| DtBoost::shared_ptr < DtRtiAssistantPeer > | myPeer |
| The Assistant peer which communicates with other Assistants. | |
| std::set< QDialog * > | myUnparentedDialogs |
| All unparented dialogs that are created by the GUI should be added to this set. | |
| std::set< QMainWindow * > | myMainWindows |
| All main windows that are created by the GUI should be added to this set. | |
| std::set< QDialog * > | myWarningDialogs |
| Set of the popup dialogs, either parented or unparented, which, when active, should cause a warning icon to be displayed. | |
Static Protected Attributes | |
| static QIcon | theRtiIcon |
| The icons used by the RTI Assistant. | |
| static QIcon | theSmallRtiIcon |
| static QIcon | theWebIcon |
| static QIcon | theNotifyRtiIcon |
| static QIcon | theWarningRtiIcon |
| static QIcon | thePreferencesIcon |
| static QIcon | theAboutIcon |
| static QIcon | theHelpIcon |
| static bool | theIconsAreLoaded = false |
| Whether or not the icons have yet been loaded. | |
Private Member Functions | |
| DtAssistantMgr (DtAssistantMgr const &) | |
| Copy Constructor not implemented – Copy Not Allowed! | |
| DtAssistantMgr & | operator= (DtAssistantMgr const &) |
| Assignment not implemented – Assignment Not Allowed! | |
Base class for all classes which perform management activities for the Assistant.
Derived from the QObject class in order to receive Qt signals.
| DtAssistantMgr::DtAssistantMgr | ( | DtBoost::shared_ptr< DtRtiAssistantServer > | server, |
| DtBoost::shared_ptr< DtRtiAssistantPeer > | peer, | ||
| DtAssistantSignalRouter & | signalRouter | ||
| ) |
Constructor.
References displayWarningDialogs(), DtDisplayActiveWarningDialogsSig, DtLocalCompNotificationSig, DtLocalCompPopupSig, DtNotificationSig, DtPopupSig, DtWarningDialogDismissedSig, DtWarningDialogDisplayedSig, DtIconAndTextureManager::getIcon(), DtIconAndTextureManager::getInstance(), notificationRequested(), popupRequested(), DtAssistantSignalRouter::registerSignal(), DtAssistantSignalRouter::registerSlot(), theAboutIcon, theHelpIcon, theIconsAreLoaded, theNotifyRtiIcon, thePreferencesIcon, theRtiIcon, theSmallRtiIcon, theWarningRtiIcon, theWebIcon, warningDialogDismissed(), and warningDialogDisplayed().
|
virtual |
Destructor.
References myUnparentedDialogs.
|
private |
Copy Constructor not implemented – Copy Not Allowed!
|
inlinevirtual |
Retrieves a widget which will be placed in the configuration dialog for configuring user preferences.
Reimplemented in DtAssistantConnQueryMgr, and DtAssistantLicenseQueryMgr.
|
virtual |
Determines if there are any visible dialogs for which this manager is responsible.
If possible, derived manager classes should call startDialog on all dialogs. Otherwise it should should override this method to take those into account as well.
Reimplemented in DtAssistantFederationsViewMgr.
References myMainWindows, and myUnparentedDialogs.
|
protected |
Displays and logs a notification from the given component.
A source of -1 is the Assistant.
References notificationRequested().
Referenced by DtAssistantPopupMsgMgr::addPopupMsgToQueue(), DtAssistantPopupMsgMgr::popup(), DtAssistantComponentMgr::processSocketRemoval(), and DtAssistantFederationsInfoMgr::tick().
|
protected |
Displays and logs notification with the given component name.
References notificationRequested().
|
slot |
Displays all warning dialogs.
References myWarningDialogs, and showDialog().
Referenced by DtAssistantMgr().
|
protected |
Should be called prior to deleting any dialog started with startDialog.
References myUnparentedDialogs.
Referenced by DtAssistantLogFileMgr::disableComponentLog(), DtAssistantLogFileMgr::enableComponentLog(), DtAssistantFederationsViewMgr::processAwaitingForwardersMsg(), DtAssistantFederationsViewMgr::processFederationRemoved(), DtAssistantFederationsViewMgr::processForwarderRemoved(), DtAssistantFederationsViewMgr::~DtAssistantFederationsViewMgr(), and DtAssistantPopupMsgMgr::~DtAssistantPopupMsgMgr().
|
protected |
Should be called prior to deleting any dialog started with startMainWindow.
References myMainWindows.
Referenced by DtAssistantFederateViewMgr::federateStatDlgClosing(), DtAssistantFomViewMgr::fomStatDlgClosing(), DtAssistantFederateViewMgr::~DtAssistantFederateViewMgr(), DtAssistantFederationsViewMgr::~DtAssistantFederationsViewMgr(), and DtAssistantFomViewMgr::~DtAssistantFomViewMgr().
|
inlinevirtual |
Initializes this manager just prior to beginning assistant processing.
Reimplemented in DtAssistantPreferencesInfoMgr, and DtAssistantPreferencesViewMgr.
|
protected |
Logs a notification from the given component, does not display.
A source of -1 is the Assistant.
References notificationRequested().
|
protected |
Logs a notification with the given component name, does not display.
References notificationRequested().
|
signal |
Emitted when a notification should be displayed.
Referenced by displayNotification(), DtAssistantMgr(), and logNotification().
|
signal |
Emitted when a notification should be displayed.
|
private |
Assignment not implemented – Assignment Not Allowed!
|
signal |
Emitted when a popup dialog should be displayed.
Referenced by DtAssistantMgr(), and showPopup().
|
signal |
Emitted when a popup dialog should be displayed.
|
inlinevirtual |
Process the changes that were accepted in the configuration widget.
Reimplemented in DtAssistantConnQueryMgr.
|
protected |
Shows the dialog.
Should be used instead of the show method for any dialogs started with startDialog.
References myWarningDialogs, and warningDialogDisplayed().
Referenced by displayWarningDialogs(), DtAssistantPopupMsgMgr::popup(), DtAssistantFederationsViewMgr::processAwaitingForwardersMsg(), DtAssistantConnQueryMgr::processConnQueryMsg(), DtAssistantLicenseQueryMgr::processLicQueryMsg(), DtAssistantLicenseQueryMgr::processLicQueryResults(), DtAssistantTrayIconMgr::showAboutDialog(), DtAssistantLogFileMgr::showComponentConsole(), DtAssistantPreferencesViewMgr::showConfigDialog(), DtAssistantFederationsViewMgr::showFederateRidParams(), DtAssistantLatencyTestMgr::showLrcLatencyTestDialog(), DtAssistantPreferencesViewMgr::showMsgStats(), DtAssistantTrayIconMgr::showNotifyConsole(), DtAssistantFederationsViewMgr::showRidDialog(), DtAssistantLatencyTestMgr::showRtiexecLatencyTestDialog(), and DtAssistantFederationsViewMgr::showSyncPtDialog().
|
protected |
Shows the dialog.
Should be used instead of the show method for any dialogs started with startDialog.
Referenced by DtAssistantFederateViewMgr::showFederateStatsDialog(), DtAssistantFederationsViewMgr::showFederationsView(), and DtAssistantFomViewMgr::showFomDialog().
|
protected |
Displays a popup message with the given text, advanced text, and name of the given source component.
A source of -1 is the Assistant.
References popupRequested().
Referenced by DtAssistantFederationsInfoMgr::processRemoteRtiexecPopupMsg().
|
protected |
Displays a popup message with the given text, advanced text, and source name.
References popupRequested().
|
protected |
Sets up the given widget as a dialog.
This method should be called for all dialogs created by this class in order to make sure they are initialized and kept track of correctly. Can specify whether the dialog will have a task bar entry and whether it will result in a warning icon in the tray when displayed.
References connect(), myUnparentedDialogs, myWarningDialogs, theRtiIcon, and warningDialogDismissed().
Referenced by DtAssistantFederationsViewMgr::createRidDialog(), DtAssistantConnQueryMgr::DtAssistantConnQueryMgr(), DtAssistantLatencyTestMgr::DtAssistantLatencyTestMgr(), DtAssistantLicenseQueryMgr::DtAssistantLicenseQueryMgr(), DtAssistantLogFileMgr::DtAssistantLogFileMgr(), DtAssistantPopupMsgMgr::DtAssistantPopupMsgMgr(), DtAssistantPreferencesViewMgr::DtAssistantPreferencesViewMgr(), DtAssistantTrayIconMgr::DtAssistantTrayIconMgr(), DtAssistantLogFileMgr::enableComponentLog(), DtAssistantFederationsViewMgr::processAwaitingForwardersMsg(), DtAssistantFederationsViewMgr::processFederationUpdate(), and DtAssistantPreferencesViewMgr::showAssistantLog().
|
protected |
Sets up a main window dialog.
This method should be called for all main windows created by this class in order to make sure they are initialized and kept track of correctly. All main windows will appear in the task bar and will not be considered warning dialogs.
References myMainWindows, and theRtiIcon.
Referenced by DtAssistantFederationsViewMgr::DtAssistantFederationsViewMgr(), DtAssistantFederateViewMgr::showFederateStatsDialog(), and DtAssistantFomViewMgr::showFomDialog().
|
inlinevirtual |
Performs any necessary processing at the start of shutdown.
Reimplemented in DtAssistantFederationsViewMgr, DtAssistantPreferencesInfoMgr, DtAssistantTrayIconMgr, DtAssistantConnectionInfoMgr, DtAssistantFederateViewMgr, and DtAssistantFomViewMgr.
|
inlinevirtual |
Performs tasks that need to be completed periodically.
Reimplemented in DtAssistantFederationsInfoMgr, DtAssistantFederationsViewMgr, DtAssistantPreferencesViewMgr, DtAssistantConnQueryMgr, DtAssistantConnectionInfoMgr, DtAssistantNetworkCompInfoMgr, DtAssistantLicenseQueryMgr, and DtAssistantPopupMsgMgr.
|
inlinevirtual |
Forces the configuration widget to be updated.
Reimplemented in DtAssistantConnQueryMgr, and DtAssistantLicenseQueryMgr.
|
signal |
Emitted when a warning dialog is dismissed.
Referenced by DtAssistantMgr(), and startDialog().
|
signal |
Emitted when a warning dialog is displayed.
Referenced by DtAssistantMgr(), and showDialog().
|
protected |
All main windows that are created by the GUI should be added to this set.
Referenced by dialogsVisible(), finishMainWindow(), and startMainWindow().
|
protected |
The Assistant peer which communicates with other Assistants.
Referenced by DtAssistantFederationsViewMgr::destroyFederation(), DtAssistantConnectionInfoMgr::DtAssistantConnectionInfoMgr(), DtAssistantConnQueryMgr::DtAssistantConnQueryMgr(), DtAssistantFederationsInfoMgr::DtAssistantFederationsInfoMgr(), DtAssistantFederationsViewMgr::DtAssistantFederationsViewMgr(), DtAssistantFomViewMgr::DtAssistantFomViewMgr(), DtAssistantLatencyTestMgr::DtAssistantLatencyTestMgr(), DtAssistantLicenseQueryMgr::DtAssistantLicenseQueryMgr(), DtAssistantNetworkCompInfoMgr::DtAssistantNetworkCompInfoMgr(), DtAssistantTrayIconMgr::DtAssistantTrayIconMgr(), DtAssistantNetStatsObservationMgr::federateDisconnected(), DtAssistantFederateViewMgr::federateStatDlgClosing(), DtAssistantFomViewMgr::fomStatDlgClosing(), DtAssistantFederationsInfoMgr::forwardMsgFromLocalRtiexec(), DtAssistantNetStatsObservationMgr::forwardNetStatsUpdateToRemoteAstnt(), DtAssistantLatencyTestMgr::getRtiexecConn(), DtAssistantFomViewMgr::handleNetStatsInitStateReq(), DtAssistantConnectionInfoMgr::heartbeatAssistant(), DtAssistantConnectionInfoMgr::heartbeatLightweightConnections(), DtAssistantFomViewMgr::lrcNetStatsUpdateIntervalUpdated(), DtAssistantFederateViewMgr::lrcNetStatsUpdateIntervalUpdated(), DtAssistantFederationsViewMgr::processExecObserveRspMsg(), DtAssistantFederationsInfoMgr::processExecObserveRspMsg(), DtAssistantFederationsInfoMgr::processFederateRequestMsg(), DtAssistantFederationsInfoMgr::processFederateResponseMsg(), DtAssistantFederationsInfoMgr::processFederationStateMsg(), DtAssistantNetworkCompInfoMgr::processForwarderObserveMsg(), DtAssistantNetworkCompInfoMgr::processForwarderStateMsgForConnection(), DtAssistantConnectionInfoMgr::processInfoMsg(), DtAssistantLatencyTestMgr::processLatencyTestResults(), DtAssistantConnectionInfoMgr::processLightweightInfoMsg(), DtAssistantConnectionInfoMgr::processLocalRtiComponentConnected(), DtAssistantFederateViewMgr::processNetStatsObserveReqMsg(), DtAssistantFederateViewMgr::processNetStatsObserveRspMsg(), DtAssistantTrayIconMgr::processNotifyObserveMsg(), DtAssistantFederationsInfoMgr::processObserveMsg(), DtAssistantFomViewMgr::processPeerNetStatsAttrParamStringUpdateMsg(), DtAssistantFederateViewMgr::processPeerNetStatsFedAmbUpdateMsg(), DtAssistantFomViewMgr::processPeerNetStatsFomAttrParamUpdateMsg(), DtAssistantFomViewMgr::processPeerNetStatsFomTreeUpdateMsg(), DtAssistantFomViewMgr::processPeerNetStatsInitStateRequestMsg(), DtAssistantFederateViewMgr::processPeerNetStatsInteractionsUpdateMsg(), DtAssistantFederateViewMgr::processPeerNetStatsMsgUpdateMsg(), DtAssistantFederateViewMgr::processPeerNetStatsObjectsUpdateMsg(), DtAssistantFomViewMgr::processPeerNetStatsObserveReqMsg(), DtAssistantFomViewMgr::processPeerNetStatsObserveRspMsg(), DtAssistantFederateViewMgr::processPeerNetStatsRtiAmbUpdateMsg(), DtAssistantFederateViewMgr::processPeerNetStatsStringReqMsg(), DtAssistantFederateViewMgr::processPeerNetStatsStringUpdateMsg(), DtAssistantFederationsInfoMgr::processRemoteRtiexecPopupMsg(), DtAssistantConnectionInfoMgr::processRemovalMsg(), DtAssistantFederationsViewMgr::processRidParamMsg(), DtAssistantFederationsViewMgr::processRtiexecNotifyMsg(), DtAssistantFomViewMgr::processServerNetStatsAttrParamStringUpdateMsg(), DtAssistantFomViewMgr::processServerNetStatsFomAttrParamUpdateMsg(), DtAssistantFomViewMgr::processServerNetStatsFomTreeUpdateMsg(), DtAssistantFederationsInfoMgr::processSyncPtStateMsg(), DtAssistantLatencyTestMgr::processTestCommand(), DtAssistantFederationsInfoMgr::removeFederationsForRtiexec(), DtAssistantFederationsInfoMgr::requestFederateLoc(), DtAssistantFederateViewMgr::requestNetStatsStringUpdate(), DtAssistantFederationsViewMgr::resignFederate(), DtAssistantFederationsInfoMgr::sendAllFederationInfo(), DtAssistantNetworkCompInfoMgr::sendAllForwarderInfo(), DtAssistantFederateViewMgr::sendFederateObservationRequest(), DtAssistantFomViewMgr::sendFomObservationRequest(), DtAssistantLatencyTestMgr::sendLatencyTestCommand(), DtAssistantFederationsViewMgr::sendLogRequest(), DtAssistantNetStatsObservationMgr::sendNetStatsInitStateReq(), DtAssistantNetStatsObservationMgr::sendNetStatsObserveRsp(), DtAssistantFederationsViewMgr::sendNetworkTestingDisableMsg(), DtAssistantFederationsViewMgr::sendNetworkTestingEnableMsg(), DtAssistantTrayIconMgr::sendNotifyObserveMsg(), DtAssistantFederationsInfoMgr::sendObserveFederationsMsg(), DtAssistantNetworkCompInfoMgr::sendObserveForwarderMsg(), DtAssistantFederationsViewMgr::sendPendingRidRequest(), DtAssistantPreferencesViewMgr::showConfigDialog(), DtAssistantFederationsViewMgr::showForwarderRidParams(), DtAssistantPreferencesViewMgr::showMsgStats(), DtAssistantFederationsViewMgr::showRtiexecRidParams(), DtAssistantFederationsViewMgr::shutdownRtiexec(), DtAssistantFederationsViewMgr::shutdownRtiForwarder(), DtAssistantFederationsInfoMgr::startRtiexec(), DtAssistantFederationsInfoMgr::viewFederationsForConnection(), DtAssistantNetworkCompInfoMgr::viewNetworkComponentsForConnection(), DtAssistantConnectionInfoMgr::~DtAssistantConnectionInfoMgr(), DtAssistantFederationsInfoMgr::~DtAssistantFederationsInfoMgr(), DtAssistantFederationsViewMgr::~DtAssistantFederationsViewMgr(), DtAssistantLatencyTestMgr::~DtAssistantLatencyTestMgr(), DtAssistantLicenseQueryMgr::~DtAssistantLicenseQueryMgr(), and DtAssistantNetworkCompInfoMgr::~DtAssistantNetworkCompInfoMgr().
|
protected |
The Assistant server from which new messages will arrive from local RTI components.
Referenced by DtAssistantConnQueryMgr::addConnQueryMsgToQueue(), DtAssistantLicenseQueryMgr::addLicQueryMsgToQueue(), DtAssistantNetStatsObservationMgr::addObserver(), DtAssistantPopupMsgMgr::addPopupMsgToQueue(), DtAssistantFederationsViewMgr::destroyFederation(), DtAssistantComponentMgr::DtAssistantComponentMgr(), DtAssistantConnQueryMgr::DtAssistantConnQueryMgr(), DtAssistantFederationsInfoMgr::DtAssistantFederationsInfoMgr(), DtAssistantFederationsViewMgr::DtAssistantFederationsViewMgr(), DtAssistantFomViewMgr::DtAssistantFomViewMgr(), DtAssistantLatencyTestMgr::DtAssistantLatencyTestMgr(), DtAssistantLicenseQueryMgr::DtAssistantLicenseQueryMgr(), DtAssistantNetworkCompInfoMgr::DtAssistantNetworkCompInfoMgr(), DtAssistantPopupMsgMgr::DtAssistantPopupMsgMgr(), DtAssistantTrayIconMgr::DtAssistantTrayIconMgr(), DtAssistantNetworkCompInfoMgr::federateRemovalTimeChanged(), DtAssistantFederationsInfoMgr::forwardMsgFromLocalRtiexec(), DtAssistantFederationsInfoMgr::forwardMsgToLocalRtiexec(), DtAssistantNetStatsObservationMgr::forwardNetStatsUpdateToRemoteAstnt(), DtAssistantLatencyTestMgr::getRtiexecConn(), DtAssistantNetworkCompInfoMgr::handleRtiCommands(), DtAssistantNetworkCompInfoMgr::processAssistantCommandMsg(), DtAssistantFederationsInfoMgr::processAssistantCommandMsg(), DtAssistantFederationsViewMgr::processAwaitingForwardersMsg(), DtAssistantComponentMgr::processCloseConnMsg(), DtAssistantConnQueryMgr::processConnQueryMsg(), DtAssistantConnQueryMgr::processConnQueryResults(), DtAssistantFederationsViewMgr::processDoNotWaitForForwarders(), DtAssistantFederationsInfoMgr::processExecStateMsgForConnection(), DtAssistantFederationsInfoMgr::processFederateStateMsg(), DtAssistantFederationsInfoMgr::processFederationStateMsg(), DtAssistantNetworkCompInfoMgr::processForwarderObserveMsg(), DtAssistantNetworkCompInfoMgr::processForwarderStateMsgForConnection(), DtAssistantLatencyTestMgr::processLatencyTestResults(), DtAssistantLicenseQueryMgr::processLicQueryMsg(), DtAssistantLicenseQueryMgr::processLicQueryResults(), DtAssistantFederationsInfoMgr::processLocalFederateJoined(), DtAssistantComponentMgr::processLrcCompInfoMsg(), DtAssistantComponentMgr::processNewConnMsg(), DtAssistantTrayIconMgr::processNotifyMsg(), DtAssistantFederationsInfoMgr::processObserveMsg(), DtAssistantFederationsViewMgr::processRidParamMsg(), DtAssistantComponentMgr::processRtiexecCompInfoMsg(), DtAssistantFederationsViewMgr::processRtiexecNotifyMsg(), DtAssistantComponentMgr::processRtiForwarderCompInfoMsg(), DtAssistantTrayIconMgr::processShowDialogMsg(), DtAssistantFederationsViewMgr::processShutDownWaitingForwarder(), DtAssistantFederationsInfoMgr::processSignalTickedMsg(), DtAssistantFederationsInfoMgr::processSyncPtStateMsg(), DtAssistantLatencyTestMgr::processTestCommand(), DtAssistantLatencyTestMgr::processTestMgrStatusUpdate(), DtAssistantFederationsInfoMgr::processTimeStateMsg(), DtAssistantFederationsInfoMgr::pruneStaleFederationsAndObservers(), DtAssistantFederationsInfoMgr::pruneTimedOutSingleUpdates(), DtAssistantNetworkCompInfoMgr::pruneTimedOutSingleUpdates(), DtAssistantNetStatsObservationMgr::removeObserver(), DtAssistantNetworkCompInfoMgr::requestSingleUpdateFromConnectedForwarders(), DtAssistantFederationsInfoMgr::requestSingleUpdateFromConnectedRtiexecs(), DtAssistantFederationsViewMgr::resignFederate(), DtAssistantLogFileMgr::sendComponentUpdateNotifyLevel(), DtAssistantLatencyTestMgr::sendLatencyTestCommand(), DtAssistantFederationsViewMgr::sendLogRequest(), DtAssistantFederationsViewMgr::sendNetworkTestingDisableMsg(), DtAssistantFederationsViewMgr::sendNetworkTestingEnableMsg(), DtAssistantFederationsViewMgr::sendPendingRidRequest(), DtAssistantLogFileMgr::showComponentConsole(), DtAssistantPreferencesViewMgr::showConfigDialog(), DtAssistantFederationsViewMgr::showForwarderRidParams(), DtAssistantFederationsViewMgr::showRtiexecRidParams(), DtAssistantFederationsViewMgr::shutdownRtiexec(), DtAssistantFederationsViewMgr::shutdownRtiForwarder(), DtAssistantNetworkCompInfoMgr::tick(), DtAssistantFederationsInfoMgr::tick(), DtAssistantFederationsInfoMgr::updateFederateWarningTickInterval(), DtAssistantFederationsInfoMgr::viewFederationsForConnection(), DtAssistantNetworkCompInfoMgr::viewNetworkComponentsForConnection(), DtAssistantComponentMgr::~DtAssistantComponentMgr(), DtAssistantConnQueryMgr::~DtAssistantConnQueryMgr(), DtAssistantFederateViewMgr::~DtAssistantFederateViewMgr(), DtAssistantFederationsInfoMgr::~DtAssistantFederationsInfoMgr(), DtAssistantFederationsViewMgr::~DtAssistantFederationsViewMgr(), DtAssistantLatencyTestMgr::~DtAssistantLatencyTestMgr(), DtAssistantLicenseQueryMgr::~DtAssistantLicenseQueryMgr(), DtAssistantNetworkCompInfoMgr::~DtAssistantNetworkCompInfoMgr(), DtAssistantPopupMsgMgr::~DtAssistantPopupMsgMgr(), and DtAssistantTrayIconMgr::~DtAssistantTrayIconMgr().
|
protected |
All unparented dialogs that are created by the GUI should be added to this set.
Referenced by dialogsVisible(), finishDialog(), startDialog(), and ~DtAssistantMgr().
|
protected |
Set of the popup dialogs, either parented or unparented, which, when active, should cause a warning icon to be displayed.
Referenced by displayWarningDialogs(), showDialog(), and startDialog().
|
staticprotected |
Referenced by DtAssistantMgr(), and DtAssistantTrayIconMgr::DtAssistantTrayIconMgr().
|
staticprotected |
Referenced by DtAssistantMgr(), and DtAssistantTrayIconMgr::DtAssistantTrayIconMgr().
|
staticprotected |
Whether or not the icons have yet been loaded.
Referenced by DtAssistantMgr().
|
staticprotected |
|
staticprotected |
Referenced by DtAssistantMgr(), and DtAssistantTrayIconMgr::DtAssistantTrayIconMgr().
|
staticprotected |
The icons used by the RTI Assistant.
Referenced by DtAssistantMgr(), startDialog(), and startMainWindow().
|
staticprotected |
|
staticprotected |
Referenced by DtAssistantMgr(), and DtAssistantTrayIconMgr::showWarningIcon().
|
staticprotected |
Referenced by DtAssistantMgr(), and DtAssistantTrayIconMgr::DtAssistantTrayIconMgr().