Changeset 84184 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 7, 2020 11:24:05 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137791
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r84098 r84184 753 753 } 754 754 755 boolUIMessageCenter::confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const755 int UIMessageCenter::confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const 756 756 { 757 757 /* Enumerate the machines: */ … … 766 766 /* Prepare message text: */ 767 767 QString strText = tr("<p>You are about to remove following cloud virtual machines from the machine list:</p>" 768 "<p>%1</p>") 768 "<p>%1</p>" 769 "<p>Would you like to delete the instances and boot volumes of these machines as well?</p>") 769 770 .arg(machineNames.join(", ")); 770 771 771 772 /* Prepare message itself: */ 772 return questionBinary(0, MessageType_Question, 773 strText, 774 0 /* auto-confirm id */, 775 tr("Remove")); 773 return message(0, MessageType_Question, 774 strText, QString(), 775 0 /* auto-confirm id */, 776 AlertButton_Choice1, 777 AlertButton_Choice2, 778 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 779 tr("Delete everything"), 780 tr("Remove only")); 776 781 } 777 782 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h
r84098 r84184 274 274 bool confirmMachineItemRemoval(const QStringList &names) const; 275 275 int confirmMachineRemoval(const QList<CMachine> &machines) const; 276 boolconfirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const;276 int confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const; 277 277 void cannotRemoveMachine(const CMachine &machine) const; 278 278 void cannotRemoveMachine(const CMachine &machine, const CProgress &progress) const; -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp
r84106 r84184 1652 1652 { 1653 1653 /* Confirm machine removal: */ 1654 int iResultCode = msgCenter().confirmMachineRemoval(machines);1654 const int iResultCode = msgCenter().confirmMachineRemoval(machines); 1655 1655 if (iResultCode == AlertButton_Cancel) 1656 1656 return; … … 1708 1708 { 1709 1709 /* Confirm machine removal: */ 1710 if (!msgCenter().confirmCloudMachineRemoval(machines)) 1710 const int iResultCode = msgCenter().confirmCloudMachineRemoval(machines); 1711 if (iResultCode == AlertButton_Cancel) 1711 1712 return; 1712 1713 … … 1724 1725 continue; 1725 1726 } 1727 1728 CProgress comProgress; 1729 /* Prepare remove progress: */ 1730 if (iResultCode == AlertButton_Choice1) 1731 comProgress = comMachine.Remove(); 1726 1732 /* Prepare unregister progress: */ 1727 CProgress comProgress = comMachine.Unregister(); 1733 else if (iResultCode == AlertButton_Choice2) 1734 comProgress = comMachine.Unregister(); 1728 1735 if (!comMachine.isOk()) 1729 1736 { … … 1731 1738 continue; 1732 1739 } 1740 1733 1741 /* And show unregister progress finally: */ 1734 1742 msgCenter().showModalProgressDialog(comProgress, comMachine.GetName(), ":/progress_delete_90px.png");
Note:
See TracChangeset
for help on using the changeset viewer.