VirtualBox

Changeset 84184 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 7, 2020 11:24:05 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
137791
Message:

FE/Qt: bugref:9653: VirtualBox Manager: Chooser pane: Implementing possibility to remove cloud VM with all the internal stuff like instance and boot volume for good.

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  
    753753}
    754754
    755 bool UIMessageCenter::confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const
     755int UIMessageCenter::confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const
    756756{
    757757    /* Enumerate the machines: */
     
    766766    /* Prepare message text: */
    767767    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>")
    769770                         .arg(machineNames.join(", "));
    770771
    771772    /* 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"));
    776781}
    777782
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h

    r84098 r84184  
    274274    bool confirmMachineItemRemoval(const QStringList &names) const;
    275275    int confirmMachineRemoval(const QList<CMachine> &machines) const;
    276     bool confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const;
     276    int confirmCloudMachineRemoval(const QList<CCloudMachine> &machines) const;
    277277    void cannotRemoveMachine(const CMachine &machine) const;
    278278    void cannotRemoveMachine(const CMachine &machine, const CProgress &progress) const;
  • trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp

    r84106 r84184  
    16521652{
    16531653    /* Confirm machine removal: */
    1654     int iResultCode = msgCenter().confirmMachineRemoval(machines);
     1654    const int iResultCode = msgCenter().confirmMachineRemoval(machines);
    16551655    if (iResultCode == AlertButton_Cancel)
    16561656        return;
     
    17081708{
    17091709    /* Confirm machine removal: */
    1710     if (!msgCenter().confirmCloudMachineRemoval(machines))
     1710    const int iResultCode = msgCenter().confirmCloudMachineRemoval(machines);
     1711    if (iResultCode == AlertButton_Cancel)
    17111712        return;
    17121713
     
    17241725            continue;
    17251726        }
     1727
     1728        CProgress comProgress;
     1729        /* Prepare remove progress: */
     1730        if (iResultCode == AlertButton_Choice1)
     1731            comProgress = comMachine.Remove();
    17261732        /* Prepare unregister progress: */
    1727         CProgress comProgress = comMachine.Unregister();
     1733        else if (iResultCode == AlertButton_Choice2)
     1734            comProgress = comMachine.Unregister();
    17281735        if (!comMachine.isOk())
    17291736        {
     
    17311738            continue;
    17321739        }
     1740
    17331741        /* And show unregister progress finally: */
    17341742        msgCenter().showModalProgressDialog(comProgress, comMachine.GetName(), ":/progress_delete_90px.png");
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette