Changeset 84098 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 30, 2020 10:38:09 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137687
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r83963 r84098 610 610 error(pParent, MessageType_Error, 611 611 tr("Failed to acquire machine parameter."), UIErrorString::formatErrorInfo(comMachine)); 612 }613 614 void UIMessageCenter::cannotAcquireCloudInstanceList(const QString &strErrorDetails, QWidget *pParent /* = 0 */) const615 {616 error(pParent, MessageType_Error,617 tr("Failed to acquire cloud intance list."), strErrorDetails);618 612 } 619 613 … … 1893 1887 } 1894 1888 1889 void UIMessageCenter::cannotAcquireCloudMachineParameter(const QString &strErrorDetails, QWidget *pParent /* = 0 */) const 1890 { 1891 error(pParent, MessageType_Error, 1892 tr("Failed to acquire cloud machine parameter."), 1893 strErrorDetails); 1894 } 1895 1895 1896 bool UIMessageCenter::confirmCloudProfileRemoval(const QString &strName, QWidget *pParent /* = 0 */) const 1896 1897 { -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h
r83963 r84098 265 265 void cannotAcquireVirtualBoxParameter(const CVirtualBox &comVBox, QWidget *pParent = 0) const; 266 266 void cannotAcquireMachineParameter(const CMachine &comMachine, QWidget *pParent = 0) const; 267 268 /* API: Global cloud warnings: */269 void cannotAcquireCloudInstanceList(const QString &strErrorDetails, QWidget *pParent = 0) const;270 267 271 268 /* API: Selector warnings: */ … … 403 400 void cannotAcquireCloudMachineParameter(const CCloudMachine &comMachine, QWidget *pParent = 0) const; 404 401 void cannotAcquireCloudMachineParameter(const CProgress &comProgress, QWidget *pParent = 0) const; 402 void cannotAcquireCloudMachineParameter(const QString &strErrorDetails, QWidget *pParent = 0) const; 405 403 bool confirmCloudProfileRemoval(const QString &strName, QWidget *pParent = 0) const; 406 404 bool confirmCloudProfilesImport(QWidget *pParent = 0) const; -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UITaskCloudGetSettingsForm.cpp
r84020 r84098 16 16 */ 17 17 18 /* Qt includes: */ 19 #include <QWidget> 20 18 21 /* GUI includes: */ 19 22 #include "UICommon.h" 20 23 #include "UICloudNetworkingStuff.h" 24 #include "UIMessageCenter.h" 21 25 #include "UITaskCloudGetSettingsForm.h" 22 26 #include "UIThreadPool.h" … … 61 65 *********************************************************************************************************************************/ 62 66 63 UIReceiverCloudGetSettingsForm::UIReceiverCloudGetSettingsForm(Q Object *pParent)67 UIReceiverCloudGetSettingsForm::UIReceiverCloudGetSettingsForm(QWidget *pParent) 64 68 : QObject(pParent) 69 , m_pParent(pParent) 65 70 { 66 71 /* Connect receiver: */ … … 79 84 80 85 /* Redirect to another listeners: */ 81 emit sigTaskComplete(pSettingsTask->result()); 86 if (pSettingsTask->errorInfo().isNull()) 87 emit sigTaskComplete(pSettingsTask->result()); 88 else 89 { 90 msgCenter().cannotAcquireCloudMachineParameter(pSettingsTask->errorInfo(), m_pParent); 91 emit sigTaskFailed(pSettingsTask->errorInfo()); 92 } 82 93 } -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UITaskCloudGetSettingsForm.h
r84020 r84098 83 83 /** Notifies about task is complete with certain comResult. */ 84 84 void sigTaskComplete(const CForm &comResult); 85 /** Notifies about task is failed with certain strErrorMessage. */ 86 void sigTaskFailed(const QString &strErrorMessage); 85 87 86 88 public: 87 89 88 90 /** Constructs receiver passing @a pParent to the base-class. */ 89 UIReceiverCloudGetSettingsForm(Q Object *pParent);91 UIReceiverCloudGetSettingsForm(QWidget *pParent); 90 92 91 93 public slots: … … 93 95 /** Handles thread-pool signal about @a pTask is complete. */ 94 96 void sltHandleTaskComplete(UITask *pTask); 97 98 private: 99 100 /** Holds the parent widget reference. */ 101 QWidget *m_pParent; 95 102 }; 96 103 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.cpp
r84021 r84098 991 991 UIReceiverCloudGetSettingsForm *pReceiver = new UIReceiverCloudGetSettingsForm(pEditor); 992 992 if (pReceiver) 993 { 993 994 connect(pReceiver, &UIReceiverCloudGetSettingsForm::sigTaskComplete, 994 995 pEditor.data(), &UICloudMachineSettingsDialogPage::setForm); 996 connect(pReceiver, &UIReceiverCloudGetSettingsForm::sigTaskFailed, 997 pPopup.data(), &QIDialogContainer::close); 998 } 995 999 /* Start task: */ 996 1000 if (pTask && pReceiver)
Note:
See TracChangeset
for help on using the changeset viewer.