VirtualBox

Changeset 91959 in vbox


Ignore:
Timestamp:
Oct 21, 2021 2:43:09 PM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:10067: Renaming UINotificationProgressApplianceExport to UINotificationProgressApplianceWrite since we will have similar Read notification.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp

    r91878 r91959  
    27852785
    27862786/*********************************************************************************************************************************
    2787 *   Class UINotificationProgressApplianceExport implementation.                                                                  *
    2788 *********************************************************************************************************************************/
    2789 
    2790 UINotificationProgressApplianceExport::UINotificationProgressApplianceExport(const CAppliance &comAppliance,
    2791                                                                              const QString &strFormat,
    2792                                                                              const QVector<KExportOptions> &options,
    2793                                                                              const QString &strPath)
     2787*   Class UINotificationProgressApplianceWrite implementation.                                                                   *
     2788*********************************************************************************************************************************/
     2789
     2790UINotificationProgressApplianceWrite::UINotificationProgressApplianceWrite(const CAppliance &comAppliance,
     2791                                                                           const QString &strFormat,
     2792                                                                           const QVector<KExportOptions> &options,
     2793                                                                           const QString &strPath)
    27942794    : m_comAppliance(comAppliance)
    27952795    , m_strFormat(strFormat)
     
    27992799}
    28002800
    2801 QString UINotificationProgressApplianceExport::name() const
    2802 {
    2803     return UINotificationProgress::tr("Exporting appliance ...");
    2804 }
    2805 
    2806 QString UINotificationProgressApplianceExport::details() const
     2801QString UINotificationProgressApplianceWrite::name() const
     2802{
     2803    return UINotificationProgress::tr("Writing appliance ...");
     2804}
     2805
     2806QString UINotificationProgressApplianceWrite::details() const
    28072807{
    28082808    return UINotificationProgress::tr("<b>To:</b> %1").arg(m_strPath);
    28092809}
    28102810
    2811 CProgress UINotificationProgressApplianceExport::createProgress(COMResult &comResult)
     2811CProgress UINotificationProgressApplianceWrite::createProgress(COMResult &comResult)
    28122812{
    28132813    /* Initialize progress-wrapper: */
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h

    r91878 r91959  
    15501550};
    15511551
    1552 /** UINotificationProgress extension for export appliance functionality. */
    1553 class SHARED_LIBRARY_STUFF UINotificationProgressApplianceExport : public UINotificationProgress
    1554 {
    1555     Q_OBJECT;
    1556 
    1557 public:
    1558 
    1559     /** Constructs export appliance notification-progress.
    1560       * @param  comAppliance  Brings the appliance being exported.
     1552/** UINotificationProgress extension for appliance write functionality. */
     1553class SHARED_LIBRARY_STUFF UINotificationProgressApplianceWrite : public UINotificationProgress
     1554{
     1555    Q_OBJECT;
     1556
     1557public:
     1558
     1559    /** Constructs appliance write notification-progress.
     1560      * @param  comAppliance  Brings the appliance being written.
    15611561      * @param  strFormat     Brings the appliance format.
    15621562      * @param  options       Brings the export options to be taken into account.
    15631563      * @param  strPath       Brings the appliance path. */
    1564     UINotificationProgressApplianceExport(const CAppliance &comAppliance,
    1565                                           const QString &strFormat,
    1566                                           const QVector<KExportOptions> &options,
    1567                                           const QString &strPath);
    1568 
    1569 protected:
    1570 
    1571     /** Returns object name. */
    1572     virtual QString name() const /* override final */;
    1573     /** Returns object details. */
    1574     virtual QString details() const /* override final */;
    1575     /** Creates and returns started progress-wrapper. */
    1576     virtual CProgress createProgress(COMResult &comResult) /* override final */;
    1577 
    1578 private:
    1579 
    1580     /** Holds the appliance being exported. */
     1564    UINotificationProgressApplianceWrite(const CAppliance &comAppliance,
     1565                                         const QString &strFormat,
     1566                                         const QVector<KExportOptions> &options,
     1567                                         const QString &strPath);
     1568
     1569protected:
     1570
     1571    /** Returns object name. */
     1572    virtual QString name() const /* override final */;
     1573    /** Returns object details. */
     1574    virtual QString details() const /* override final */;
     1575    /** Creates and returns started progress-wrapper. */
     1576    virtual CProgress createProgress(COMResult &comResult) /* override final */;
     1577
     1578private:
     1579
     1580    /** Holds the appliance being written. */
    15811581    CAppliance               m_comAppliance;
    15821582    /** Holds the appliance format. */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportApp.cpp

    r91948 r91959  
    310310    {
    311311        /* Export appliance: */
    312         UINotificationProgressApplianceExport *pNotification = new UINotificationProgressApplianceExport(comAppliance,
    313                                                                                                          format(),
    314                                                                                                          options,
    315                                                                                                          uri());
     312        UINotificationProgressApplianceWrite *pNotification = new UINotificationProgressApplianceWrite(comAppliance,
     313                                                                                                       format(),
     314                                                                                                       options,
     315                                                                                                       uri());
    316316        if (cloudExportMode() == CloudExportMode_DoNotAsk)
    317317            gpNotificationCenter->append(pNotification);
     
    323323    {
    324324        /* Export appliance: */
    325         UINotificationProgressApplianceExport *pNotification = new UINotificationProgressApplianceExport(comAppliance,
    326                                                                                                          format(),
    327                                                                                                          options,
    328                                                                                                          uri());
     325        UINotificationProgressApplianceWrite *pNotification = new UINotificationProgressApplianceWrite(comAppliance,
     326                                                                                                       format(),
     327                                                                                                       options,
     328                                                                                                       uri());
    329329        gpNotificationCenter->append(pNotification);
    330330    }
Note: See TracChangeset for help on using the changeset viewer.

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