/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvm/ |
H A D | UIWizardNewVM.cpp | 323 QString strControllerName; local 328 strControllerName = "IDE"; 331 strControllerName = QString("%1 %2").arg(strControllerName).arg(m_iIDECount); 336 strControllerName = "SATA"; 339 strControllerName = QString("%1 %2").arg(strControllerName).arg(m_iSATACount); 344 strControllerName = "SCSI"; 347 strControllerName = QString("%1 %2").arg(strControllerName) [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/ |
H A D | UIMachineSettingsStorage.cpp | 3304 QString strControllerName(mStorageModel->data(index, StorageModel::R_CtrName).toString()); 3312 int iAnswer = msgCenter().confirmHardDiskAttachmentCreation(strControllerName, this); 3321 int iAnswer = msgCenter().confirmOpticalAttachmentCreation(strControllerName, this); 3330 int iAnswer = msgCenter().confirmFloppyAttachmentCreation(strControllerName, this); 3538 QString strControllerName = controllerData.m_strControllerName; local 3541 const CStorageController &controller = m_machine.GetStorageControllerByName(strControllerName); 3548 m_machine.RemoveStorageController(strControllerName); 3567 QString strControllerName = controllerData.m_strControllerName; local 3574 CStorageController controller = m_machine.GetStorageControllerByName(strControllerName); 3581 controller = m_machine.AddStorageController(strControllerName, controllerBu 3623 QString strControllerName = controllerData.m_strControllerName; local 3680 QString strControllerName = controllerData.m_strControllerName; local 3715 QString strControllerName = controllerData.m_strControllerName; local 3804 QString strControllerName = controllerData.m_strControllerName; local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/globals/ |
H A D | UIMessageCenter.h | 232 int confirmHardDiskAttachmentCreation(const QString &strControllerName, QWidget *pParent = 0) const; 233 int confirmOpticalAttachmentCreation(const QString &strControllerName, QWidget *pParent = 0) const; 234 int confirmFloppyAttachmentCreation(const QString &strControllerName, QWidget *pParent = 0) const;
|
H A D | UIMessageCenter.cpp | 1061 int UIMessageCenter::confirmHardDiskAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const argument 1066 .arg(strControllerName), 1071 int UIMessageCenter::confirmOpticalAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const argument 1077 .arg(strControllerName), 1082 int UIMessageCenter::confirmFloppyAttachmentCreation(const QString &strControllerName, QWidget *pParent /* = 0*/) const argument 1088 .arg(strControllerName),
|
H A D | VBoxGlobal.h | 290 * @param strControllerName The name of the CStorageController in the @a machine above. 291 * @param storageSlot The StorageSlot of the CStorageController called @a strControllerName above. */ 294 const CMachine &machine, const QString &strControllerName, const StorageSlot &storageSlot);
|
H A D | VBoxGlobal.cpp | 1169 QString strControllerName = QApplication::translate("UIMachineSettingsStorage", "Controller: %1"); local 1170 item += QString(sSectionItemTpl3).arg(strControllerName.arg(controller.GetName())); 1765 const CMachine &machine, const QString &strControllerName, const StorageSlot &storageSlot) 1768 const CMediumAttachment currentAttachment = machine.GetMediumAttachment(strControllerName, storageSlot.port, storageSlot.device); 1783 pActionOpenExistingMedium->setData(QVariant::fromValue(UIMediumTarget(strControllerName, currentAttachment.GetPort(), currentAttachment.GetDevice(), 1836 pActionChooseHostDrive->setData(QVariant::fromValue(UIMediumTarget(strControllerName, currentAttachment.GetPort(), currentAttachment.GetDevice(), 1879 pActionChooseRecentMedium->setData(QVariant::fromValue(UIMediumTarget(strControllerName, currentAttachment.GetPort(), currentAttachment.GetDevice(), 1895 pActionUnmountMedium->setData(QVariant::fromValue(UIMediumTarget(strControllerName, currentAttachment.GetPort(), currentAttachment.GetDevice()))); 1763 prepareStorageMenu(QMenu &menu, QObject *pListener, const char *pszSlotName, const CMachine &machine, const QString &strControllerName, const StorageSlot &storageSlot) argument
|
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UISession.cpp | 560 QString strControllerName; local 568 strControllerName = controller.GetName(); 574 if (!strControllerName.isNull()) 579 if (strControllerName.isNull()) 595 machine().MountMedium(strControllerName, iCntPort, iCntDevice, medium.medium(), false /* force */); 603 machine().MountMedium(strControllerName, iCntPort, iCntDevice, medium.medium(), true /* force */);
|
H A D | UIMachineLogic.cpp | 2121 const QString strControllerName = controller.GetName(); local 2130 pStorageMenu = new QMenu(QString("%1 (%2)").arg(strControllerName).arg(gpConverter->toString(storageSlot)), pMenu); 2149 machine(), strControllerName, storageSlot);
|
/vbox/src/VBox/Frontends/VirtualBox/src/ |
H A D | UIVMInfoDialog.cpp | 707 QString strControllerName = QApplication::translate("UIMachineSettingsStorage", "Controller: %1"); 709 strStorageStat += strHeaderStorage.arg(strControllerName.arg(controller.GetName())); 829 QString UIVMInfoDialog::formatStorageElement(const QString &strControllerName, argument 837 CStorageController ctr = m_session.GetMachine().GetStorageControllerByName(strControllerName);
|
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/ |
H A D | UIGDetailsElement.cpp | 163 QString strControllerName = strData.section(',', 0, 0); local 169 machine(), strControllerName, storageSlot);
|
H A D | UIGDetailsElements.cpp | 516 QString strControllerName = QApplication::translate("UIMachineSettingsStorage", "Controller: %1"); local 517 m_text << UITextTableLine(strControllerName.arg(controller.GetName()), QString());
|