Changeset 8138 in vbox for trunk/src/VBox/Frontends/VirtualBox/ui
- Timestamp:
- Apr 18, 2008 12:05:55 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29843
- Location:
- trunk/src/VBox/Frontends/VirtualBox/ui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.