VirtualBox

Changeset 91709 in vbox


Ignore:
Timestamp:
Oct 13, 2021 11:04:55 AM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9996: Rename pages for UIWizardImportApp.

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
4 edited
4 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk

    r91707 r91709  
    684684        src/wizards/importappliance/UIApplianceUnverifiedCertificateViewer.h \
    685685        src/wizards/importappliance/UIWizardImportApp.h \
    686         src/wizards/importappliance/UIWizardImportAppPageBasic1.h \
    687         src/wizards/importappliance/UIWizardImportAppPageBasic2.h \
    688         src/wizards/importappliance/UIWizardImportAppPageExpert.h
     686        src/wizards/importappliance/UIWizardImportAppPageExpert.h \
     687        src/wizards/importappliance/UIWizardImportAppPageSettings.h \
     688        src/wizards/importappliance/UIWizardImportAppPageSource.h
    689689
    690690
     
    11941194        src/wizards/importappliance/UIApplianceUnverifiedCertificateViewer.cpp \
    11951195        src/wizards/importappliance/UIWizardImportApp.cpp \
    1196         src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp \
    1197         src/wizards/importappliance/UIWizardImportAppPageBasic2.cpp \
    1198         src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
     1196        src/wizards/importappliance/UIWizardImportAppPageExpert.cpp \
     1197        src/wizards/importappliance/UIWizardImportAppPageSettings.cpp \
     1198        src/wizards/importappliance/UIWizardImportAppPageSource.cpp
    11991199
    12001200VirtualBox_SOURCES.darwin += \
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportApp.cpp

    r91664 r91709  
    3232#include "UINotificationCenter.h"
    3333#include "UIWizardImportApp.h"
    34 #include "UIWizardImportAppPageBasic1.h"
    35 #include "UIWizardImportAppPageBasic2.h"
    3634#include "UIWizardImportAppPageExpert.h"
     35#include "UIWizardImportAppPageSettings.h"
     36#include "UIWizardImportAppPageSource.h"
    3737
    3838/* COM includes: */
     
    278278        {
    279279            if (m_fImportFromOCIByDefault || m_strFileName.isEmpty())
    280                 addPage(new UIWizardImportAppPageBasic1(m_fImportFromOCIByDefault, m_strFileName));
    281             addPage(new UIWizardImportAppPageBasic2(m_strFileName));
     280                addPage(new UIWizardImportAppPageSource(m_fImportFromOCIByDefault, m_strFileName));
     281            addPage(new UIWizardImportAppPageSettings(m_strFileName));
    282282            break;
    283283        }
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp

    r91664 r91709  
    4141#include "UIVirtualBoxManager.h"
    4242#include "UIWizardImportApp.h"
    43 #include "UIWizardImportAppPageBasic1.h"
    44 #include "UIWizardImportAppPageBasic2.h"
    4543#include "UIWizardImportAppPageExpert.h"
     44#include "UIWizardImportAppPageSettings.h"
     45#include "UIWizardImportAppPageSource.h"
    4646
    4747/* COM includes: */
     
    4949
    5050/* Namespaces: */
    51 using namespace UIWizardImportAppPage1;
    52 using namespace UIWizardImportAppPage2;
     51using namespace UIWizardImportAppSettings;
     52using namespace UIWizardImportAppSource;
    5353
    5454
     
    507507
    508508    /* Refresh page widgets: */
    509     UIWizardImportAppPage1::refreshStackedWidget(m_pSettingsWidget1,
    510                                                  wizard()->isSourceCloudOne());
    511     UIWizardImportAppPage2::refreshStackedWidget(m_pSettingsWidget2,
    512                                                  wizard()->isSourceCloudOne());
     509    UIWizardImportAppSource::refreshStackedWidget(m_pSettingsWidget1,
     510                                                  wizard()->isSourceCloudOne());
     511    UIWizardImportAppSettings::refreshStackedWidget(m_pSettingsWidget2,
     512                                                    wizard()->isSourceCloudOne());
    513513
    514514    // WORKAROUND:
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.h

    r91664 r91709  
    4141
    4242/** UINativeWizardPage extension for expert page of the Import Appliance wizard,
    43   * based on UIWizardImportAppPage1 & UIWizardImportAppPage2 namespace functions. */
     43  * based on UIWizardImportAppSource & UIWizardImportAppSettings namespace functions. */
    4444class UIWizardImportAppPageExpert : public UINativeWizardPage
    4545{
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSettings.cpp

    r91708 r91709  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardImportAppPageBasic2 class implementation.
     3 * VBox Qt GUI - UIWizardImportAppPageSettings class implementation.
    44 */
    55
     
    3232#include "UIMessageCenter.h"
    3333#include "UIWizardImportApp.h"
    34 #include "UIWizardImportAppPageBasic2.h"
     34#include "UIWizardImportAppPageSettings.h"
    3535
    3636/* COM includes: */
     
    4141
    4242/* Namespaces: */
    43 using namespace UIWizardImportAppPage2;
     43using namespace UIWizardImportAppSettings;
    4444
    4545
    4646/*********************************************************************************************************************************
    47 *   Class UIWizardImportAppPage2 implementation.                                                                                 *
     47*   Class UIWizardImportAppSettings implementation.                                                                              *
    4848*********************************************************************************************************************************/
    4949
    50 void UIWizardImportAppPage2::refreshStackedWidget(QStackedWidget *pStackedWidget,
    51                                                   bool fIsSourceCloudOne)
     50void UIWizardImportAppSettings::refreshStackedWidget(QStackedWidget *pStackedWidget,
     51                                                     bool fIsSourceCloudOne)
    5252{
    5353    /* Sanity check: */
     
    5858}
    5959
    60 void UIWizardImportAppPage2::refreshApplianceWidget(UIApplianceImportEditorWidget *pApplianceWidget,
    61                                                     const CAppliance &comAppliance,
    62                                                     bool fIsSourceCloudOne)
     60void UIWizardImportAppSettings::refreshApplianceWidget(UIApplianceImportEditorWidget *pApplianceWidget,
     61                                                       const CAppliance &comAppliance,
     62                                                       bool fIsSourceCloudOne)
    6363{
    6464    /* Sanity check: */
     
    8080}
    8181
    82 void UIWizardImportAppPage2::refreshMACAddressImportPolicies(QIComboBox *pCombo,
    83                                                              bool fIsSourceCloudOne)
     82void UIWizardImportAppSettings::refreshMACAddressImportPolicies(QIComboBox *pCombo,
     83                                                                bool fIsSourceCloudOne)
    8484{
    8585    /* Sanity check: */
     
    161161}
    162162
    163 void UIWizardImportAppPage2::refreshFormPropertiesTable(UIFormEditorWidget *pFormEditor,
    164                                                         const CVirtualSystemDescriptionForm &comForm,
    165                                                         bool fIsSourceCloudOne)
     163void UIWizardImportAppSettings::refreshFormPropertiesTable(UIFormEditorWidget *pFormEditor,
     164                                                           const CVirtualSystemDescriptionForm &comForm,
     165                                                           bool fIsSourceCloudOne)
    166166{
    167167    /* Sanity check: */
     
    183183}
    184184
    185 MACAddressImportPolicy UIWizardImportAppPage2::macAddressImportPolicy(QIComboBox *pCombo)
     185MACAddressImportPolicy UIWizardImportAppSettings::macAddressImportPolicy(QIComboBox *pCombo)
    186186{
    187187    /* Sanity check: */
     
    192192}
    193193
    194 bool UIWizardImportAppPage2::isImportHDsAsVDI(QCheckBox *pCheckBox)
     194bool UIWizardImportAppSettings::isImportHDsAsVDI(QCheckBox *pCheckBox)
    195195{
    196196    /* Sanity check: */
     
    201201}
    202202
    203 void UIWizardImportAppPage2::retranslateMACImportPolicyCombo(QIComboBox *pCombo)
     203void UIWizardImportAppSettings::retranslateMACImportPolicyCombo(QIComboBox *pCombo)
    204204{
    205205    /* Sanity check: */
     
    239239}
    240240
    241 void UIWizardImportAppPage2::retranslateCertificateLabel(QLabel *pLabel, const kCertText &enmType, const QString &strSignedBy)
     241void UIWizardImportAppSettings::retranslateCertificateLabel(QLabel *pLabel, const kCertText &enmType, const QString &strSignedBy)
    242242{
    243243    /* Sanity check: */
     
    277277}
    278278
    279 void UIWizardImportAppPage2::updateMACImportPolicyComboToolTip(QIComboBox *pCombo)
     279void UIWizardImportAppSettings::updateMACImportPolicyComboToolTip(QIComboBox *pCombo)
    280280{
    281281    /* Sanity check: */
     
    289289
    290290/*********************************************************************************************************************************
    291 *   Class UIWizardImportAppPageBasic2 implementation.                                                                            *
     291*   Class UIWizardImportAppPageSettings implementation.                                                                          *
    292292*********************************************************************************************************************************/
    293293
    294 UIWizardImportAppPageBasic2::UIWizardImportAppPageBasic2(const QString &strFileName)
     294UIWizardImportAppPageSettings::UIWizardImportAppPageSettings(const QString &strFileName)
    295295    : m_strFileName(strFileName)
    296296    , m_pLabelDescription(0)
     
    425425    /* Setup connections: */
    426426    connect(m_pEditorImportFilePath, &UIFilePathSelector::pathChanged,
    427             this, &UIWizardImportAppPageBasic2::sltHandleImportPathEditorChange);
     427            this, &UIWizardImportAppPageSettings::sltHandleImportPathEditorChange);
    428428    connect(m_pComboMACImportPolicy, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
    429             this, &UIWizardImportAppPageBasic2::sltHandleMACImportPolicyComboChange);
     429            this, &UIWizardImportAppPageSettings::sltHandleMACImportPolicyComboChange);
    430430    connect(m_pCheckboxImportHDsAsVDI, &QCheckBox::stateChanged,
    431             this, &UIWizardImportAppPageBasic2::sltHandleImportHDsAsVDICheckBoxChange);
    432 }
    433 
    434 UIWizardImportApp *UIWizardImportAppPageBasic2::wizard() const
     431            this, &UIWizardImportAppPageSettings::sltHandleImportHDsAsVDICheckBoxChange);
     432}
     433
     434UIWizardImportApp *UIWizardImportAppPageSettings::wizard() const
    435435{
    436436    return qobject_cast<UIWizardImportApp*>(UINativeWizardPage::wizard());
    437437}
    438438
    439 void UIWizardImportAppPageBasic2::retranslateUi()
     439void UIWizardImportAppPageSettings::retranslateUi()
    440440{
    441441    /* Translate page: */
     
    483483}
    484484
    485 void UIWizardImportAppPageBasic2::initializePage()
     485void UIWizardImportAppPageSettings::initializePage()
    486486{
    487487    /* Translate page: */
     
    498498}
    499499
    500 bool UIWizardImportAppPageBasic2::validatePage()
     500bool UIWizardImportAppPageSettings::validatePage()
    501501{
    502502    /* Initial result: */
     
    536536}
    537537
    538 void UIWizardImportAppPageBasic2::sltAsyncInit()
     538void UIWizardImportAppPageSettings::sltAsyncInit()
    539539{
    540540    /* If we have file name passed,
     
    569569}
    570570
    571 void UIWizardImportAppPageBasic2::sltHandleImportPathEditorChange()
     571void UIWizardImportAppPageSettings::sltHandleImportPathEditorChange()
    572572{
    573573    AssertPtrReturnVoid(m_pApplianceWidget);
     
    576576}
    577577
    578 void UIWizardImportAppPageBasic2::sltHandleMACImportPolicyComboChange()
     578void UIWizardImportAppPageSettings::sltHandleMACImportPolicyComboChange()
    579579{
    580580    /* Update combo tool-tip: */
     
    585585}
    586586
    587 void UIWizardImportAppPageBasic2::sltHandleImportHDsAsVDICheckBoxChange()
     587void UIWizardImportAppPageSettings::sltHandleImportHDsAsVDICheckBoxChange()
    588588{
    589589    /* Update wizard fields: */
     
    591591}
    592592
    593 void UIWizardImportAppPageBasic2::handleApplianceCertificate()
     593void UIWizardImportAppPageSettings::handleApplianceCertificate()
    594594{
    595595    /* Handle certificate: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSettings.h

    r91708 r91709  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardImportAppPageBasic2 class declaration.
     3 * VBox Qt GUI - UIWizardImportAppPageSettings class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic2_h
    19 #define FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic2_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSettings_h
     19#define FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSettings_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    4949};
    5050
    51 /** Namespace for 2nd basic page of the Import Appliance wizard. */
    52 namespace UIWizardImportAppPage2
     51/** Namespace for Settings page of the Import Appliance wizard. */
     52namespace UIWizardImportAppSettings
    5353{
    5454    /** Refresh stacked widget. */
     
    8383}
    8484
    85 /** UINativeWizardPage extension for 2nd basic page of the Import Appliance wizard,
    86   * based on UIWizardImportAppPage2 namespace functions. */
    87 class UIWizardImportAppPageBasic2 : public UINativeWizardPage
     85/** UINativeWizardPage extension for Settings page of the Import Appliance wizard,
     86  * based on UIWizardImportAppSettings namespace functions. */
     87class UIWizardImportAppPageSettings : public UINativeWizardPage
    8888{
    8989    Q_OBJECT;
     
    9191public:
    9292
    93     /** Constructs 2nd basic page.
     93    /** Constructs Settings page.
    9494      * @param  strFileName  Brings appliance file name. */
    95     UIWizardImportAppPageBasic2(const QString &strFileName);
     95    UIWizardImportAppPageSettings(const QString &strFileName);
    9696
    9797protected:
     
    162162};
    163163
    164 #endif /* !FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic2_h */
     164#endif /* !FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSettings_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSource.cpp

    r91708 r91709  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardImportAppPageBasic1 class implementation.
     3 * VBox Qt GUI - UIWizardImportAppPageSource class implementation.
    44 */
    55
     
    3333#include "UIVirtualBoxManager.h"
    3434#include "UIWizardImportApp.h"
    35 #include "UIWizardImportAppPageBasic1.h"
     35#include "UIWizardImportAppPageSource.h"
    3636
    3737/* COM includes: */
     
    4141
    4242/* Namespaces: */
    43 using namespace UIWizardImportAppPage1;
     43using namespace UIWizardImportAppSource;
    4444
    4545
    4646/*********************************************************************************************************************************
    47 *   Class UIWizardImportAppPage1 implementation.                                                                                 *
     47*   Class UIWizardImportAppSource implementation.                                                                                *
    4848*********************************************************************************************************************************/
    4949
    50 void UIWizardImportAppPage1::populateSources(QIComboBox *pCombo,
    51                                              bool fImportFromOCIByDefault,
    52                                              const QString &strSource)
     50void UIWizardImportAppSource::populateSources(QIComboBox *pCombo,
     51                                              bool fImportFromOCIByDefault,
     52                                              const QString &strSource)
    5353{
    5454    /* Sanity check: */
     
    125125}
    126126
    127 QString UIWizardImportAppPage1::source(QIComboBox *pCombo)
     127QString UIWizardImportAppSource::source(QIComboBox *pCombo)
    128128{
    129129    /* Sanity check: */
     
    134134}
    135135
    136 bool UIWizardImportAppPage1::isSourceCloudOne(QIComboBox *pCombo, int iIndex /* = -1 */)
     136bool UIWizardImportAppSource::isSourceCloudOne(QIComboBox *pCombo, int iIndex /* = -1 */)
    137137{
    138138    /* Sanity check: */
     
    147147}
    148148
    149 void UIWizardImportAppPage1::refreshStackedWidget(QStackedWidget *pStackedWidget,
    150                                                   bool fIsSourceCloudOne)
     149void UIWizardImportAppSource::refreshStackedWidget(QStackedWidget *pStackedWidget,
     150                                                   bool fIsSourceCloudOne)
    151151{
    152152    /* Sanity check: */
     
    157157}
    158158
    159 void UIWizardImportAppPage1::refreshProfileCombo(QIComboBox *pCombo,
    160                                                  const QString &strSource,
    161                                                  const QString &strProfileName,
    162                                                  bool fIsSourceCloudOne)
     159void UIWizardImportAppSource::refreshProfileCombo(QIComboBox *pCombo,
     160                                                  const QString &strSource,
     161                                                  const QString &strProfileName,
     162                                                  bool fIsSourceCloudOne)
    163163{
    164164    /* Sanity check: */
     
    232232}
    233233
    234 void UIWizardImportAppPage1::refreshCloudProfileInstances(QListWidget *pListWidget,
    235                                                           const QString &strSource,
    236                                                           const QString &strProfileName,
    237                                                           bool fIsSourceCloudOne)
     234void UIWizardImportAppSource::refreshCloudProfileInstances(QListWidget *pListWidget,
     235                                                           const QString &strSource,
     236                                                           const QString &strProfileName,
     237                                                           bool fIsSourceCloudOne)
    238238{
    239239    /* Sanity check: */
     
    294294}
    295295
    296 void UIWizardImportAppPage1::refreshCloudStuff(CAppliance &comCloudAppliance,
    297                                                CVirtualSystemDescriptionForm &comCloudVsdImportForm,
    298                                                QWidget *pParent,
    299                                                const QString &strMachineId,
    300                                                const QString &strSource,
    301                                                const QString &strProfileName,
    302                                                bool fIsSourceCloudOne)
     296void UIWizardImportAppSource::refreshCloudStuff(CAppliance &comCloudAppliance,
     297                                                CVirtualSystemDescriptionForm &comCloudVsdImportForm,
     298                                                QWidget *pParent,
     299                                                const QString &strMachineId,
     300                                                const QString &strSource,
     301                                                const QString &strProfileName,
     302                                                bool fIsSourceCloudOne)
    303303{
    304304    /* Clear stuff: */
     
    367367}
    368368
    369 QString UIWizardImportAppPage1::path(UIEmptyFilePathSelector *pFileSelector)
     369QString UIWizardImportAppSource::path(UIEmptyFilePathSelector *pFileSelector)
    370370{
    371371    /* Sanity check: */
     
    376376}
    377377
    378 QString UIWizardImportAppPage1::profileName(QIComboBox *pCombo)
     378QString UIWizardImportAppSource::profileName(QIComboBox *pCombo)
    379379{
    380380    /* Sanity check: */
     
    385385}
    386386
    387 QString UIWizardImportAppPage1::machineId(QListWidget *pListWidget)
     387QString UIWizardImportAppSource::machineId(QListWidget *pListWidget)
    388388{
    389389    /* Sanity check: */
     
    395395}
    396396
    397 void UIWizardImportAppPage1::updateSourceComboToolTip(QIComboBox *pCombo)
     397void UIWizardImportAppSource::updateSourceComboToolTip(QIComboBox *pCombo)
    398398{
    399399    /* Sanity check: */
     
    407407
    408408/*********************************************************************************************************************************
    409 *   Class UIWizardImportAppPageBasic1 implementation.                                                                            *
     409*   Class UIWizardImportAppPageSource implementation.                                                                            *
    410410*********************************************************************************************************************************/
    411411
    412 UIWizardImportAppPageBasic1::UIWizardImportAppPageBasic1(bool fImportFromOCIByDefault, const QString &strFileName)
     412UIWizardImportAppPageSource::UIWizardImportAppPageSource(bool fImportFromOCIByDefault, const QString &strFileName)
    413413    : m_fImportFromOCIByDefault(fImportFromOCIByDefault)
    414414    , m_strFileName(strFileName)
     
    586586    /* Setup connections: */
    587587    connect(gVBoxEvents, &UIVirtualBoxEventHandler::sigCloudProfileRegistered,
    588             this, &UIWizardImportAppPageBasic1::sltHandleSourceComboChange);
     588            this, &UIWizardImportAppPageSource::sltHandleSourceComboChange);
    589589    connect(gVBoxEvents, &UIVirtualBoxEventHandler::sigCloudProfileChanged,
    590             this, &UIWizardImportAppPageBasic1::sltHandleSourceComboChange);
     590            this, &UIWizardImportAppPageSource::sltHandleSourceComboChange);
    591591    connect(m_pSourceComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
    592             this, &UIWizardImportAppPageBasic1::sltHandleSourceComboChange);
     592            this, &UIWizardImportAppPageSource::sltHandleSourceComboChange);
    593593    connect(m_pFileSelector, &UIEmptyFilePathSelector::pathChanged,
    594             this, &UIWizardImportAppPageBasic1::completeChanged);
     594            this, &UIWizardImportAppPageSource::completeChanged);
    595595    connect(m_pProfileComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
    596             this, &UIWizardImportAppPageBasic1::sltHandleProfileComboChange);
     596            this, &UIWizardImportAppPageSource::sltHandleProfileComboChange);
    597597    connect(m_pProfileToolButton, &QIToolButton::clicked,
    598             this, &UIWizardImportAppPageBasic1::sltHandleProfileButtonClick);
     598            this, &UIWizardImportAppPageSource::sltHandleProfileButtonClick);
    599599    connect(m_pProfileInstanceList, &QListWidget::currentRowChanged,
    600             this, &UIWizardImportAppPageBasic1::completeChanged);
     600            this, &UIWizardImportAppPageSource::completeChanged);
    601601
    602602    /* Parse passed full group name if any: */
     
    614614}
    615615
    616 UIWizardImportApp *UIWizardImportAppPageBasic1::wizard() const
     616UIWizardImportApp *UIWizardImportAppPageSource::wizard() const
    617617{
    618618    return qobject_cast<UIWizardImportApp*>(UINativeWizardPage::wizard());
    619619}
    620620
    621 void UIWizardImportAppPageBasic1::retranslateUi()
     621void UIWizardImportAppPageSource::retranslateUi()
    622622{
    623623    /* Translate page: */
     
    707707}
    708708
    709 void UIWizardImportAppPageBasic1::initializePage()
     709void UIWizardImportAppPageSource::initializePage()
    710710{
    711711    /* Populate sources: */
     
    726726}
    727727
    728 bool UIWizardImportAppPageBasic1::isComplete() const
     728bool UIWizardImportAppPageSource::isComplete() const
    729729{
    730730    /* Initial result: */
     
    742742}
    743743
    744 bool UIWizardImportAppPageBasic1::validatePage()
     744bool UIWizardImportAppPageSource::validatePage()
    745745{
    746746    /* Initial result: */
     
    772772}
    773773
    774 void UIWizardImportAppPageBasic1::sltHandleSourceComboChange()
     774void UIWizardImportAppPageSource::sltHandleSourceComboChange()
    775775{
    776776    /* Update combo tool-tip: */
     
    795795}
    796796
    797 void UIWizardImportAppPageBasic1::sltHandleProfileComboChange()
     797void UIWizardImportAppPageSource::sltHandleProfileComboChange()
    798798{
    799799    /* Refresh required settings: */
     
    807807}
    808808
    809 void UIWizardImportAppPageBasic1::sltHandleProfileButtonClick()
     809void UIWizardImportAppPageSource::sltHandleProfileButtonClick()
    810810{
    811811    /* Open Cloud Profile Manager: */
     
    814814}
    815815
    816 void UIWizardImportAppPageBasic1::updateLocalStuff()
     816void UIWizardImportAppPageSource::updateLocalStuff()
    817817{
    818818    /* Create local appliance: */
     
    820820}
    821821
    822 void UIWizardImportAppPageBasic1::updateCloudStuff()
     822void UIWizardImportAppPageSource::updateCloudStuff()
    823823{
    824824    /* Create cloud appliance and VSD import form: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageSource.h

    r91708 r91709  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardImportAppPageBasic1 class declaration.
     3 * VBox Qt GUI - UIWizardImportAppPageSource class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic1_h
    19 #define FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic1_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSource_h
     19#define FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSource_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    5252};
    5353
    54 /** Namespace for 1st basic page of the Import Appliance wizard. */
    55 namespace UIWizardImportAppPage1
     54/** Namespace for Source page of the Import Appliance wizard. */
     55namespace UIWizardImportAppSource
    5656{
    5757    /** Populates sources. */
     
    100100}
    101101
    102 /** UINativeWizardPage extension for 1st basic page of the Import Appliance wizard,
    103   * based on UIWizardImportAppPage1 namespace functions. */
    104 class UIWizardImportAppPageBasic1 : public UINativeWizardPage
     102/** UINativeWizardPage extension for Source page of the Import Appliance wizard,
     103  * based on UIWizardImportAppSource namespace functions. */
     104class UIWizardImportAppPageSource : public UINativeWizardPage
    105105{
    106106    Q_OBJECT;
     
    108108public:
    109109
    110     /** Constructs 1st basic page.
     110    /** Constructs Source page.
    111111      * @param  fImportFromOCIByDefault  Brings whether we should propose import from OCI by default.
    112112      * @param  strFileName              Brings appliance file name. */
    113     UIWizardImportAppPageBasic1(bool fImportFromOCIByDefault, const QString &strFileName);
     113    UIWizardImportAppPageSource(bool fImportFromOCIByDefault, const QString &strFileName);
    114114
    115115protected:
     
    193193};
    194194
    195 #endif /* !FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageBasic1_h */
     195#endif /* !FEQT_INCLUDED_SRC_wizards_importappliance_UIWizardImportAppPageSource_h */
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