Searched refs:m_pNameAndSystemEditor (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvm/ |
H A D | UIWizardNewVMPageExpert.cpp | 59 m_pNameAndSystemEditor = new UINameAndSystemEditor(m_pNameAndSystemCnt); 60 pNameAndSystemCntLayout->addWidget(m_pNameAndSystemEditor); 72 m_pRamSlider->setValue(m_pNameAndSystemEditor->type().GetRecommendedRAM()); 140 connect(m_pNameAndSystemEditor, SIGNAL(sigNameChanged(const QString &)), this, SLOT(sltNameChanged(const QString &))); 141 connect(m_pNameAndSystemEditor, SIGNAL(sigOsTypeChanged()), this, SLOT(sltOsTypeChanged())); 153 registerField("name*", m_pNameAndSystemEditor, "name", SIGNAL(sigNameChanged(const QString &))); 154 registerField("type", m_pNameAndSystemEditor, "type", SIGNAL(sigOsTypeChanged())); 169 CGuestOSType type = m_pNameAndSystemEditor->type(); 183 CGuestOSType type = m_pNameAndSystemEditor->type();
|
H A D | UIWizardNewVMPageBasic1.cpp | 185 m_pNameAndSystemEditor->blockSignals(true); 186 m_pNameAndSystemEditor->setType(vboxGlobal().vmGuestOSType(gs_OSTypePattern[i].pcstId)); 187 m_pNameAndSystemEditor->blockSignals(false); 196 m_pNameAndSystemEditor->disconnect(SIGNAL(sigNameChanged(const QString &)), thisImp(), SLOT(sltNameChanged(const QString &))); 218 QString strMachineFilename = vbox.ComposeMachineFilename(m_pNameAndSystemEditor->name(), m_strGroup, QString::null, strDefaultMachinesFolder); 266 m_pNameAndSystemEditor = new UINameAndSystemEditor(this); 268 pMainLayout->addWidget(m_pNameAndSystemEditor); 273 connect(m_pNameAndSystemEditor, SIGNAL(sigNameChanged(const QString &)), this, SLOT(sltNameChanged(const QString &))); 274 connect(m_pNameAndSystemEditor, SIGNAL(sigOsTypeChanged()), this, SLOT(sltOsTypeChanged())); 277 registerField("name*", m_pNameAndSystemEditor, "nam [all...] |
H A D | UIWizardNewVMPageBasic1.h | 57 UINameAndSystemEditor *m_pNameAndSystemEditor; member in class:UIWizardNewVMPage1
|
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/ |
H A D | UIMachineSettingsGeneral.cpp | 52 AssertPtrReturn(m_pNameAndSystemEditor, CGuestOSType()); 53 return m_pNameAndSystemEditor->type(); 58 AssertPtrReturn(m_pNameAndSystemEditor, false); 59 return m_pNameAndSystemEditor->type().GetIs64Bit(); 65 AssertPtrReturn(m_pNameAndSystemEditor, false); 66 return m_pNameAndSystemEditor->type().GetFamilyId() == "Windows"; 157 AssertPtrReturnVoid(m_pNameAndSystemEditor); 158 m_pNameAndSystemEditor->setName(generalData.m_strName); 159 m_pNameAndSystemEditor->setType(vboxGlobal().vmGuestOSType(generalData.m_strGuestOsTypeId)); 195 AssertPtrReturnVoid(m_pNameAndSystemEditor); [all...] |
Completed in 43 milliseconds