Changeset 16087 in vbox
- Timestamp:
- Jan 20, 2009 3:17:15 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41794
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r16076 r16087 2126 2126 + QString (sSectionItemTpl2).arg (tr ("IO APIC", "details report"), "%7") 2127 2127 + QString (sSectionItemTpl2).arg (tr ("VT-x/AMD-V", "details report"), "%8") 2128 + QString (sSectionItemTpl2).arg (tr ("PAE/NX", "details report"), "%9") 2129 + QString (sSectionItemTpl2).arg (tr ("3D Acceleration", "details report"), "%10"); 2128 + QString (sSectionItemTpl2).arg (tr ("Nested Paging", "details report"), "%9") 2129 + QString (sSectionItemTpl2).arg (tr ("PAE/NX", "details report"), "%10") 2130 + QString (sSectionItemTpl2).arg (tr ("3D Acceleration", "details report"), "%11"); 2130 2131 2131 2132 sGeneralFullHrefTpl = QString (sSectionHrefTpl) 2132 .arg (2 + 1 0) /* rows */2133 .arg (2 + 11) /* rows */ 2133 2134 .arg (":/machine_16px.png", /* icon */ 2134 2135 "#general", /* link */ … … 2136 2137 generalItems); /* items */ 2137 2138 sGeneralFullBoldTpl = QString (sSectionBoldTpl) 2138 .arg (2 + 1 0) /* rows */2139 .arg (2 + 11) /* rows */ 2139 2140 .arg (":/machine_16px.png", /* icon */ 2140 2141 "#general", /* link */ … … 2242 2243 tr ("Disabled", "details report (VT-x/AMD-V)"); 2243 2244 2245 /* Nested Paging */ 2246 QString nested = aMachine.GetHWVirtExNestedPagingEnabled() 2247 ? tr ("Enabled", "details report (Nested Paging)") 2248 : tr ("Disabled", "details report (Nested Paging)"); 2249 2244 2250 /* PAE/NX */ 2245 2251 QString pae = aMachine.GetPAEEnabled() … … 2263 2269 .arg (ioapic) 2264 2270 .arg (virt) 2271 .arg (nested) 2265 2272 .arg (pae) 2266 2273 .arg (acc3d) -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMInformationDlg.cpp
r15185 r16087 429 429 VBoxGlobal::tr ("Disabled", "details report (VT-x/AMD-V)"); 430 430 QString nested = console.GetDebugger().GetHWVirtExNestedPagingEnabled() ? 431 tr ("Enabled", "nested paging") : tr ("Disabled", "nested paging"); 431 VBoxGlobal::tr ("Enabled", "details report (Nested Paging)") : 432 VBoxGlobal::tr ("Disabled", "details report (Nested Paging)"); 432 433 QString addInfo = console.GetGuest().GetAdditionsVersion(); 433 434 uint addVersion = addInfo.toUInt(); … … 453 454 result += formatValue (tr ("Screen Resolution"), resolution, maxLength); 454 455 result += formatValue (VBoxGlobal::tr ("VT-x/AMD-V", "details report"), virtualization, maxLength); 455 result += formatValue ( tr ("Nested Paging"), nested, maxLength);456 result += formatValue (VBoxGlobal::tr ("Nested Paging", "details report"), nested, maxLength); 456 457 result += formatValue (tr ("Guest Additions"), addVerisonStr, maxLength); 457 458 result += formatValue (tr ("Guest OS Type"), osType, maxLength); -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsGeneral.cpp
r14807 r16087 207 207 mCbVirt->setCheckState (Qt::Unchecked); 208 208 209 /* Nested Paging */ 210 mCbNestedPaging->setEnabled (fVTxAMDVSupported); 211 mCbNestedPaging->setChecked (aMachine.GetHWVirtExNestedPagingEnabled()); 212 209 213 /* PAE/NX */ 210 214 bool fPAESupported = vboxGlobal().virtualBox().GetHost() … … 286 290 mCbVirt->checkState() == Qt::Checked ? KTSBool_True : KTSBool_False); 287 291 292 /* Nested Paging */ 293 mMachine.SetHWVirtExNestedPagingEnabled (mCbNestedPaging->isChecked()); 294 288 295 /* PAE/NX */ 289 296 mMachine.SetPAEEnabled (mCbPae->isChecked()); … … 362 369 setTabOrder (mLeRam, mSlVideo); 363 370 setTabOrder (mSlVideo, mLeVideo); 364 365 setTabOrder (mLeVideo, mTwBootOrder); 371 setTabOrder (mLeVideo, mCb3D); 372 373 setTabOrder (mCb3D, mTwBootOrder); 366 374 setTabOrder (mTwBootOrder, mTbBootItemUp); 367 375 setTabOrder (mTbBootItemUp, mTbBootItemDown); … … 369 377 setTabOrder (mCbAcpi, mCbApic); 370 378 setTabOrder (mCbApic, mCbVirt); 371 setTabOrder (mCbVirt, mCb Pae);372 setTabOrder (mCb Pae, mCb3D);373 setTabOrder (mCb 3D, mCbClipboard);379 setTabOrder (mCbVirt, mCbNestedPaging); 380 setTabOrder (mCbNestedPaging, mCbPae); 381 setTabOrder (mCbPae, mCbClipboard); 374 382 setTabOrder (mCbClipboard, mCbIDEController); 375 383 setTabOrder (mCbIDEController, mPsSnapshot); -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxVMSettingsGeneral.ui
r15603 r16087 699 699 </item> 700 700 <item> 701 <widget class="QCheckBox" name="mCbNestedPaging" > 702 <property name="sizePolicy" > 703 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding" > 704 <horstretch>0</horstretch> 705 <verstretch>0</verstretch> 706 </sizepolicy> 707 </property> 708 <property name="whatsThis" > 709 <string>When checked, the virtual machine will try to make use of the nested paging extension of Intel VT-x and AMD-V.</string> 710 </property> 711 <property name="text" > 712 <string>Enable Nested Pa&ging</string> 713 </property> 714 </widget> 715 </item> 716 <item> 701 717 <widget class="QCheckBox" name="mCbPae" > 702 718 <property name="sizePolicy" >
Note:
See TracChangeset
for help on using the changeset viewer.