Changeset 8138 in vbox
- Timestamp:
- Apr 18, 2008 12:05:55 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
-
src/VBoxGlobal.cpp (modified) (4 diffs)
-
ui/VBoxVMSettingsDlg.ui (modified) (3 diffs)
-
ui/VBoxVMSettingsDlg.ui.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r8109 r8138 1497 1497 + QString (sSectionItemTpl).arg (tr ("ACPI", "details report"), "%6") 1498 1498 + QString (sSectionItemTpl).arg (tr ("IO APIC", "details report"), "%7") 1499 + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8"); 1499 + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8") 1500 + QString (sSectionItemTpl).arg (tr ("PAE/NX", "details report"), "%9"); 1500 1501 1501 1502 sGeneralFullHrefTpl = QString (sSectionHrefTpl) 1502 .arg (2 + 8) /* rows */1503 .arg (2 + 9) /* rows */ 1503 1504 .arg ("machine_16px.png", /* icon */ 1504 1505 "#general", /* link */ … … 1506 1507 generalItems); /* items */ 1507 1508 sGeneralFullBoldTpl = QString (sSectionBoldTpl) 1508 .arg (2 + 8) /* rows */1509 .arg (2 + 9) /* rows */ 1509 1510 .arg ("machine_16px.png", /* icon */ 1510 1511 "#general", /* link */ … … 1623 1624 tr ("Disabled", "details report (VT-x/AMD-V)"); 1624 1625 1626 /* PAE/NX */ 1627 QString pae = m.GetPAEEnabled() 1628 ? tr ("Enabled", "details report (PAE/NX)") 1629 : tr ("Disabled", "details report (PAE/NX)"); 1630 1625 1631 /* General + Hard Disks */ 1626 1632 detailsReport … … 1634 1640 .arg (ioapic) 1635 1641 .arg (virt) 1642 .arg (pae) 1636 1643 + hardDisks; 1637 1644 -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui
r8104 r8138 1064 1064 <string>Extended Features</string> 1065 1065 </property> 1066 < vbox>1066 <grid> 1067 1067 <property name="name"> 1068 1068 <cstring>unnamed</cstring> 1069 1069 </property> 1070 <widget class="QCheckBox"> 1070 <widget class="QCheckBox" row="0" column="1"> 1071 <property name="name"> 1072 <cstring>chbPAE</cstring> 1073 </property> 1074 <property name="text"> 1075 <string>Enable PA&E/NX</string> 1076 </property> 1077 <property name="whatsThis" stdset="0"> 1078 <string>This setting determines whether VirtualBox will expose the Physical Address Extension (PAE) feature of the host CPU to the guest.</string> 1079 </property> 1080 </widget> 1081 <widget class="QCheckBox" row="1" column="0"> 1082 <property name="name"> 1083 <cstring>chbEnableIOAPIC</cstring> 1084 </property> 1085 <property name="text"> 1086 <string>Enable IO A&PIC</string> 1087 </property> 1088 <property name="whatsThis" stdset="0"> 1089 <string><qt>When checked, the virtual machine will support 1090 the Input Output APIC (IO APIC), which may slightly decrease the VM performance. <b>Note:</b> don't disable 1091 this feature after having installed a Windows guest operating system!</qt></string> 1092 </property> 1093 </widget> 1094 <widget class="QCheckBox" row="0" column="0"> 1071 1095 <property name="name"> 1072 1096 <cstring>chbEnableACPI</cstring> … … 1081 1105 </property> 1082 1106 </widget> 1083 <widget class="QCheckBox"> 1084 <property name="name"> 1085 <cstring>chbEnableIOAPIC</cstring> 1086 </property> 1087 <property name="text"> 1088 <string>Enable IO A&PIC</string> 1089 </property> 1090 <property name="whatsThis" stdset="0"> 1091 <string><qt>When checked, the virtual machine will support 1092 the Input Output APIC (IO APIC), which may slightly decrease the VM performance. <b>Note:</b> don't disable 1093 this feature after having installed a Windows guest operating system!</qt></string> 1094 </property> 1095 </widget> 1096 <widget class="QCheckBox"> 1107 <widget class="QCheckBox" row="2" column="0"> 1097 1108 <property name="name"> 1098 1109 <cstring>chbVTX</cstring> … … 1108 1119 </property> 1109 1120 </widget> 1110 </ vbox>1121 </grid> 1111 1122 </widget> 1112 1123 </hbox> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h
r8116 r8138 1541 1541 machine.GetHWVirtExEnabled() == KTSBool_True ? chbVTX->setChecked (true) : 1542 1542 chbVTX->setNoChange(); 1543 1544 /* PAE/NX */ 1545 chbPAE->setChecked (machine.GetPAEEnabled()); 1543 1546 1544 1547 /* Saved state folder */ … … 1867 1870 chbVTX->state() == QButton::On ? KTSBool_True : KTSBool_Default); 1868 1871 1872 /* PAE/NX */ 1873 cmachine.SetPAEEnabled (chbPAE->isChecked()); 1874 1869 1875 /* Saved state folder */ 1870 1876 if (leSnapshotFolder->isModified())
Note:
See TracChangeset
for help on using the changeset viewer.

