Changeset 84275 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 12, 2020 5:04:10 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137911
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVM.cpp
r84162 r84275 163 163 /* Check whether VM really added: */ 164 164 if (comMachine.isNotNull()) 165 uiCommon().notifyCloudMachineRegistered(field(" destination").toString(),165 uiCommon().notifyCloudMachineRegistered(field("location").toString(), 166 166 field("profileName").toString(), 167 167 comMachine.GetId(), -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp
r84162 r84275 45 45 UIWizardNewCloudVMPage1::UIWizardNewCloudVMPage1() 46 46 : m_fPolished(false) 47 , m_p DestinationLayout(0)48 , m_p DestinationLabel(0)49 , m_p DestinationComboBox(0)47 , m_pLocationLayout(0) 48 , m_pLocationLabel(0) 49 , m_pLocationComboBox(0) 50 50 , m_pCloudContainerLayout(0) 51 51 , m_pAccountLabel(0) … … 58 58 } 59 59 60 void UIWizardNewCloudVMPage1::populate Destinations()60 void UIWizardNewCloudVMPage1::populateLocations() 61 61 { 62 62 /* To be executed just once, so combo should be empty: */ 63 AssertReturnVoid(m_p DestinationComboBox->count() == 0);64 65 /* Do we have OCI destination? */63 AssertReturnVoid(m_pLocationComboBox->count() == 0); 64 65 /* Do we have OCI location? */ 66 66 bool fOCIPresent = false; 67 67 … … 94 94 95 95 /* Compose empty item, fill it's data: */ 96 m_p DestinationComboBox->addItem(QString());97 m_p DestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetId(), DestinationData_ID);98 m_p DestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetName(), DestinationData_Name);99 m_p DestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetShortName(), DestinationData_ShortName);100 if (m_p DestinationComboBox->itemData(m_pDestinationComboBox->count() - 1, DestinationData_ShortName).toString() == "OCI")96 m_pLocationComboBox->addItem(QString()); 97 m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetId(), LocationData_ID); 98 m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetName(), LocationData_Name); 99 m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetShortName(), LocationData_ShortName); 100 if (m_pLocationComboBox->itemData(m_pLocationComboBox->count() - 1, LocationData_ShortName).toString() == "OCI") 101 101 fOCIPresent = true; 102 102 } … … 106 106 /* Set default: */ 107 107 if (fOCIPresent) 108 set Destination("OCI");108 setLocation("OCI"); 109 109 } 110 110 … … 125 125 126 126 /* If provider chosen: */ 127 if (! destinationId().isNull())127 if (!locationId().isNull()) 128 128 { 129 129 /* Main API request sequence, can be interrupted after any step: */ … … 131 131 { 132 132 /* (Re)initialize Cloud Provider: */ 133 m_comCloudProvider = m_comCloudProviderManager.GetProviderById( destinationId());133 m_comCloudProvider = m_comCloudProviderManager.GetProviderById(locationId()); 134 134 if (!m_comCloudProviderManager.isOk()) 135 135 { 136 msgCenter().cannotFindCloudProvider(m_comCloudProviderManager, destinationId());136 msgCenter().cannotFindCloudProvider(m_comCloudProviderManager, locationId()); 137 137 break; 138 138 } … … 405 405 } 406 406 407 void UIWizardNewCloudVMPage1::update DestinationComboToolTip()408 { 409 const int iCurrentIndex = m_p DestinationComboBox->currentIndex();407 void UIWizardNewCloudVMPage1::updateLocationComboToolTip() 408 { 409 const int iCurrentIndex = m_pLocationComboBox->currentIndex(); 410 410 if (iCurrentIndex != -1) 411 411 { 412 const QString strCurrentToolTip = m_p DestinationComboBox->itemData(iCurrentIndex, Qt::ToolTipRole).toString();412 const QString strCurrentToolTip = m_pLocationComboBox->itemData(iCurrentIndex, Qt::ToolTipRole).toString(); 413 413 AssertMsg(!strCurrentToolTip.isEmpty(), ("Data not found!")); 414 m_p DestinationComboBox->setToolTip(strCurrentToolTip);414 m_pLocationComboBox->setToolTip(strCurrentToolTip); 415 415 } 416 416 } … … 448 448 } 449 449 450 void UIWizardNewCloudVMPage1::set Destination(const QString &strDestination)451 { 452 const int iIndex = m_p DestinationComboBox->findData(strDestination, DestinationData_ShortName);450 void UIWizardNewCloudVMPage1::setLocation(const QString &strLocation) 451 { 452 const int iIndex = m_pLocationComboBox->findData(strLocation, LocationData_ShortName); 453 453 AssertMsg(iIndex != -1, ("Data not found!")); 454 m_p DestinationComboBox->setCurrentIndex(iIndex);455 } 456 457 QString UIWizardNewCloudVMPage1:: destination() const458 { 459 const int iIndex = m_p DestinationComboBox->currentIndex();460 return m_p DestinationComboBox->itemData(iIndex, DestinationData_ShortName).toString();461 } 462 463 QUuid UIWizardNewCloudVMPage1:: destinationId() const464 { 465 const int iIndex = m_p DestinationComboBox->currentIndex();466 return m_p DestinationComboBox->itemData(iIndex, DestinationData_ID).toUuid();454 m_pLocationComboBox->setCurrentIndex(iIndex); 455 } 456 457 QString UIWizardNewCloudVMPage1::location() const 458 { 459 const int iIndex = m_pLocationComboBox->currentIndex(); 460 return m_pLocationComboBox->itemData(iIndex, LocationData_ShortName).toString(); 461 } 462 463 QUuid UIWizardNewCloudVMPage1::locationId() const 464 { 465 const int iIndex = m_pLocationComboBox->currentIndex(); 466 return m_pLocationComboBox->itemData(iIndex, LocationData_ID).toUuid(); 467 467 } 468 468 … … 530 530 } 531 531 532 /* Create destination layout: */533 m_p DestinationLayout = new QGridLayout;534 if (m_p DestinationLayout)535 { 536 m_p DestinationLayout->setColumnStretch(0, 0);537 m_p DestinationLayout->setColumnStretch(1, 1);538 539 /* Create destination label: */540 m_p DestinationLabel = new QLabel(this);541 if (m_p DestinationLabel)532 /* Create location layout: */ 533 m_pLocationLayout = new QGridLayout; 534 if (m_pLocationLayout) 535 { 536 m_pLocationLayout->setColumnStretch(0, 0); 537 m_pLocationLayout->setColumnStretch(1, 1); 538 539 /* Create location label: */ 540 m_pLocationLabel = new QLabel(this); 541 if (m_pLocationLabel) 542 542 { 543 543 /* Add into layout: */ 544 m_p DestinationLayout->addWidget(m_pDestinationLabel, 0, 0, Qt::AlignRight);545 } 546 /* Create destination selector: */547 m_p DestinationComboBox = new QIComboBox(this);548 if (m_p DestinationComboBox)549 { 550 m_p DestinationLabel->setBuddy(m_pDestinationComboBox);544 m_pLocationLayout->addWidget(m_pLocationLabel, 0, 0, Qt::AlignRight); 545 } 546 /* Create location selector: */ 547 m_pLocationComboBox = new QIComboBox(this); 548 if (m_pLocationComboBox) 549 { 550 m_pLocationLabel->setBuddy(m_pLocationComboBox); 551 551 552 552 /* Add into layout: */ 553 m_p DestinationLayout->addWidget(m_pDestinationComboBox, 0, 1);553 m_pLocationLayout->addWidget(m_pLocationComboBox, 0, 1); 554 554 } 555 555 … … 559 559 { 560 560 /* Add into layout: */ 561 m_p DestinationLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2);561 m_pLocationLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2); 562 562 } 563 563 564 564 /* Add into layout: */ 565 pMainLayout->addLayout(m_p DestinationLayout);565 pMainLayout->addLayout(m_pLocationLayout); 566 566 } 567 567 … … 667 667 if (gpManager) 668 668 connect(gpManager, &UIVirtualBoxManager::sigCloudProfileManagerChange, 669 this, &UIWizardNewCloudVMPageBasic1::sltHandle DestinationChange);670 connect(m_p DestinationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),671 this, &UIWizardNewCloudVMPageBasic1::sltHandle DestinationChange);669 this, &UIWizardNewCloudVMPageBasic1::sltHandleLocationChange); 670 connect(m_pLocationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated), 671 this, &UIWizardNewCloudVMPageBasic1::sltHandleLocationChange); 672 672 connect(m_pAccountComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged), 673 673 this, &UIWizardNewCloudVMPageBasic1::sltHandleAccountComboChange); … … 678 678 679 679 /* Register fields: */ 680 registerField(" destination", this, "destination");680 registerField("location", this, "location"); 681 681 registerField("profileName", this, "profileName"); 682 682 } … … 705 705 { 706 706 /* Translate page: */ 707 setTitle(UIWizardNewCloudVM::tr(" Destination to create"));707 setTitle(UIWizardNewCloudVM::tr("Location to create")); 708 708 709 709 /* Translate main label: */ 710 m_pLabelMain->setText(UIWizardNewCloudVM::tr("Please choose the destination to create cloud virtual machine in. This can "710 m_pLabelMain->setText(UIWizardNewCloudVM::tr("Please choose the location to create cloud virtual machine in. This can " 711 711 "be one of known cloud service providers below.")); 712 712 713 /* Translate destination label: */714 m_p DestinationLabel->setText(UIWizardNewCloudVM::tr("&Destination:"));715 /* Translate received values of Destination combo-box.713 /* Translate location label: */ 714 m_pLocationLabel->setText(UIWizardNewCloudVM::tr("&Location:")); 715 /* Translate received values of Location combo-box. 716 716 * We are enumerating starting from 0 for simplicity: */ 717 for (int i = 0; i < m_p DestinationComboBox->count(); ++i)718 { 719 m_p DestinationComboBox->setItemText(i, m_pDestinationComboBox->itemData(i, DestinationData_Name).toString());720 m_p DestinationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);717 for (int i = 0; i < m_pLocationComboBox->count(); ++i) 718 { 719 m_pLocationComboBox->setItemText(i, m_pLocationComboBox->itemData(i, LocationData_Name).toString()); 720 m_pLocationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole); 721 721 } 722 722 … … 733 733 /* Adjust label widths: */ 734 734 QList<QWidget*> labels; 735 labels << m_p DestinationLabel;735 labels << m_pLocationLabel; 736 736 labels << m_pAccountLabel; 737 737 labels << m_pAccountImageLabel; … … 739 739 foreach (QWidget *pLabel, labels) 740 740 iMaxWidth = qMax(iMaxWidth, pLabel->minimumSizeHint().width()); 741 m_p DestinationLayout->setColumnMinimumWidth(0, iMaxWidth);741 m_pLocationLayout->setColumnMinimumWidth(0, iMaxWidth); 742 742 m_pCloudContainerLayout->setColumnMinimumWidth(0, iMaxWidth); 743 743 744 744 /* Update tool-tips: */ 745 update DestinationComboToolTip();745 updateLocationComboToolTip(); 746 746 updateAccountPropertyTableToolTips(); 747 747 } … … 752 752 if (!m_fPolished) 753 753 { 754 /* Populate destinations: */755 populate Destinations();754 /* Populate locations: */ 755 populateLocations(); 756 756 /* Choose one of them, asynchronously: */ 757 QMetaObject::invokeMethod(this, "sltHandle DestinationChange", Qt::QueuedConnection);757 QMetaObject::invokeMethod(this, "sltHandleLocationChange", Qt::QueuedConnection); 758 758 m_fPolished = true; 759 759 } … … 791 791 } 792 792 793 void UIWizardNewCloudVMPageBasic1::sltHandle DestinationChange()793 void UIWizardNewCloudVMPageBasic1::sltHandleLocationChange() 794 794 { 795 795 /* Update tool-tip: */ 796 update DestinationComboToolTip();796 updateLocationComboToolTip(); 797 797 798 798 /* Make image list focused by default: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.h
r84162 r84275 43 43 class QIToolButton; 44 44 45 /** Destination combo data fields. */45 /** Location combo data fields. */ 46 46 enum 47 47 { 48 DestinationData_ID = Qt::UserRole + 1,49 DestinationData_Name = Qt::UserRole + 2,50 DestinationData_ShortName = Qt::UserRole + 348 LocationData_ID = Qt::UserRole + 1, 49 LocationData_Name = Qt::UserRole + 2, 50 LocationData_ShortName = Qt::UserRole + 3 51 51 }; 52 52 … … 65 65 UIWizardNewCloudVMPage1(); 66 66 67 /** Populates destinations. */68 void populate Destinations();67 /** Populates locations. */ 68 void populateLocations(); 69 69 /** Populates accounts. */ 70 70 void populateAccounts(); … … 76 76 void populateFormProperties(); 77 77 78 /** Updates destination combo tool-tips. */79 void update DestinationComboToolTip();78 /** Updates location combo tool-tips. */ 79 void updateLocationComboToolTip(); 80 80 /** Updates account property table tool-tips. */ 81 81 void updateAccountPropertyTableToolTips(); … … 83 83 void adjustAccountPropertyTable(); 84 84 85 /** Defines @a str Destination. */86 void set Destination(const QString &strDestination);87 /** Returns destination. */88 QString destination() const;89 /** Returns destination ID. */90 QUuid destinationId() const;85 /** Defines @a strLocation. */ 86 void setLocation(const QString &strLocation); 87 /** Returns location. */ 88 QString location() const; 89 /** Returns location ID. */ 90 QUuid locationId() const; 91 91 92 92 /** Returns profile name. */ … … 120 120 CCloudProfile m_comCloudProfile; 121 121 122 /** Holds the destination layout instance. */123 QGridLayout *m_p DestinationLayout;124 /** Holds the destination type label instance. */125 QLabel *m_p DestinationLabel;126 /** Holds the destination type combo-box instance. */127 QIComboBox *m_p DestinationComboBox;122 /** Holds the location layout instance. */ 123 QGridLayout *m_pLocationLayout; 124 /** Holds the location type label instance. */ 125 QLabel *m_pLocationLabel; 126 /** Holds the location type combo-box instance. */ 127 QIComboBox *m_pLocationComboBox; 128 128 129 129 /** Holds the cloud container layout instance. */ … … 147 147 { 148 148 Q_OBJECT; 149 Q_PROPERTY(QString destination READ destination);149 Q_PROPERTY(QString location READ location); 150 150 Q_PROPERTY(QString profileName READ profileName); 151 151 … … 177 177 private slots: 178 178 179 /** Handles change in destination combo-box. */180 void sltHandle DestinationChange();179 /** Handles change in location combo-box. */ 180 void sltHandleLocationChange(); 181 181 182 182 /** Handles change in account combo-box. */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r84162 r84275 35 35 UIWizardNewCloudVMPageExpert::UIWizardNewCloudVMPageExpert(bool fFullWizard) 36 36 : UIWizardNewCloudVMPage2(fFullWizard) 37 , m_pCnt Destination(0)37 , m_pCntLocation(0) 38 38 , m_pSettingsCnt(0) 39 39 { … … 42 42 if (pMainLayout) 43 43 { 44 /* Create destination container: */45 m_pCnt Destination = new QGroupBox(this);46 if (m_pCnt Destination)47 { 48 /* There is no destination table in short wizard form: */44 /* Create location container: */ 45 m_pCntLocation = new QGroupBox(this); 46 if (m_pCntLocation) 47 { 48 /* There is no location table in short wizard form: */ 49 49 if (!m_fFullWizard) 50 m_pCnt Destination->setVisible(false);51 52 /* Create destination layout: */53 m_p DestinationLayout = new QGridLayout(m_pCntDestination);54 if (m_p DestinationLayout)50 m_pCntLocation->setVisible(false); 51 52 /* Create location layout: */ 53 m_pLocationLayout = new QGridLayout(m_pCntLocation); 54 if (m_pLocationLayout) 55 55 { 56 /* Create destination selector: */57 m_p DestinationComboBox = new QIComboBox(m_pCntDestination);58 if (m_p DestinationComboBox)56 /* Create location selector: */ 57 m_pLocationComboBox = new QIComboBox(m_pCntLocation); 58 if (m_pLocationComboBox) 59 59 { 60 60 /* Add into layout: */ 61 m_p DestinationLayout->addWidget(m_pDestinationComboBox, 0, 0);61 m_pLocationLayout->addWidget(m_pLocationComboBox, 0, 0); 62 62 } 63 63 … … 77 77 78 78 /* Create account combo-box: */ 79 m_pAccountComboBox = new QIComboBox(m_pCnt Destination);79 m_pAccountComboBox = new QIComboBox(m_pCntLocation); 80 80 if (m_pAccountComboBox) 81 81 { … … 84 84 } 85 85 /* Create account tool-button: */ 86 m_pAccountToolButton = new QIToolButton(m_pCnt Destination);86 m_pAccountToolButton = new QIToolButton(m_pCntLocation); 87 87 if (m_pAccountToolButton) 88 88 { … … 99 99 100 100 /* Create profile property table: */ 101 m_pAccountPropertyTable = new QTableWidget(m_pCnt Destination);101 m_pAccountPropertyTable = new QTableWidget(m_pCntLocation); 102 102 if (m_pAccountPropertyTable) 103 103 { … … 119 119 120 120 /* Create profile instances table: */ 121 m_pAccountImageList = new QListWidget(m_pCnt Destination);121 m_pAccountImageList = new QListWidget(m_pCntLocation); 122 122 if (m_pAccountImageList) 123 123 { … … 136 136 137 137 /* Add into layout: */ 138 m_p DestinationLayout->addLayout(m_pCloudContainerLayout, 1, 0);138 m_pLocationLayout->addLayout(m_pCloudContainerLayout, 1, 0); 139 139 } 140 140 } 141 141 142 142 /* Add into layout: */ 143 pMainLayout->addWidget(m_pCnt Destination);143 pMainLayout->addWidget(m_pCntLocation); 144 144 } 145 145 … … 176 176 if (gpManager) 177 177 connect(gpManager, &UIVirtualBoxManager::sigCloudProfileManagerChange, 178 this, &UIWizardNewCloudVMPageExpert::sltHandle DestinationChange);179 connect(m_p DestinationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),180 this, &UIWizardNewCloudVMPageExpert::sltHandle DestinationChange);178 this, &UIWizardNewCloudVMPageExpert::sltHandleLocationChange); 179 connect(m_pLocationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated), 180 this, &UIWizardNewCloudVMPageExpert::sltHandleLocationChange); 181 181 connect(m_pAccountComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged), 182 182 this, &UIWizardNewCloudVMPageExpert::sltHandleAccountComboChange); … … 187 187 188 188 /* Register fields: */ 189 registerField(" destination", this, "destination");189 registerField("location", this, "location"); 190 190 registerField("profileName", this, "profileName"); 191 191 } … … 213 213 void UIWizardNewCloudVMPageExpert::retranslateUi() 214 214 { 215 /* Translate destination container: */216 m_pCnt Destination->setTitle(UIWizardNewCloudVM::tr("Destination"));217 218 /* Translate received values of Destination combo-box.215 /* Translate location container: */ 216 m_pCntLocation->setTitle(UIWizardNewCloudVM::tr("Location")); 217 218 /* Translate received values of Location combo-box. 219 219 * We are enumerating starting from 0 for simplicity: */ 220 for (int i = 0; i < m_p DestinationComboBox->count(); ++i)221 { 222 m_p DestinationComboBox->setItemText(i, m_pDestinationComboBox->itemData(i, DestinationData_Name).toString());223 m_p DestinationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);220 for (int i = 0; i < m_pLocationComboBox->count(); ++i) 221 { 222 m_pLocationComboBox->setItemText(i, m_pLocationComboBox->itemData(i, LocationData_Name).toString()); 223 m_pLocationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole); 224 224 } 225 225 … … 228 228 229 229 /* Update tool-tips: */ 230 update DestinationComboToolTip();230 updateLocationComboToolTip(); 231 231 updateAccountPropertyTableToolTips(); 232 232 } … … 239 239 if (m_fFullWizard) 240 240 { 241 /* Populate destinations: */242 populate Destinations();241 /* Populate locations: */ 242 populateLocations(); 243 243 /* Choose one of them, asynchronously: */ 244 QMetaObject::invokeMethod(this, "sltHandle DestinationChange", Qt::QueuedConnection);244 QMetaObject::invokeMethod(this, "sltHandleLocationChange", Qt::QueuedConnection); 245 245 } 246 246 else … … 310 310 } 311 311 312 void UIWizardNewCloudVMPageExpert::sltHandle DestinationChange()312 void UIWizardNewCloudVMPageExpert::sltHandleLocationChange() 313 313 { 314 314 /* Update tool-tip: */ 315 update DestinationComboToolTip();315 updateLocationComboToolTip(); 316 316 317 317 /* Make image list focused by default: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.h
r84162 r84275 35 35 { 36 36 Q_OBJECT; 37 Q_PROPERTY(QString destination READ destination);37 Q_PROPERTY(QString location READ location); 38 38 Q_PROPERTY(QString profileName READ profileName); 39 39 … … 65 65 private slots: 66 66 67 /** Handles change in destination combo-box. */68 void sltHandle DestinationChange();67 /** Handles change in location combo-box. */ 68 void sltHandleLocationChange(); 69 69 70 70 /** Handles change in account combo-box. */ … … 81 81 private: 82 82 83 /** Holds the destination container instance. */84 QGroupBox *m_pCnt Destination;83 /** Holds the location container instance. */ 84 QGroupBox *m_pCntLocation; 85 85 /** Holds the settings container instance. */ 86 86 QGroupBox *m_pSettingsCnt;
Note:
See TracChangeset
for help on using the changeset viewer.