Changeset 14312 in vbox
- Timestamp:
- Nov 18, 2008 3:59:33 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39504
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r14056 r14312 1953 1953 + QString (sSectionItemTpl).arg (tr ("IO APIC", "details report"), "%7") 1954 1954 + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8") 1955 + QString (sSectionItemTpl).arg (tr ("PAE/NX", "details report"), "%9"); 1955 + QString (sSectionItemTpl).arg (tr ("PAE/NX", "details report"), "%9") 1956 + QString (sSectionItemTpl).arg (tr ("3D Acceleration", "details report"), "%10"); 1956 1957 1957 1958 sGeneralFullHrefTpl = QString (sSectionHrefTpl) 1958 .arg (2 + 9) /* rows */1959 .arg (2 + 10) /* rows */ 1959 1960 .arg (":/machine_16px.png", /* icon */ 1960 1961 "#general", /* link */ … … 1962 1963 generalItems); /* items */ 1963 1964 sGeneralFullBoldTpl = QString (sSectionBoldTpl) 1964 .arg (2 + 9) /* rows */1965 .arg (2 + 10) /* rows */ 1965 1966 .arg (":/machine_16px.png", /* icon */ 1966 1967 "#general", /* link */ … … 2073 2074 : tr ("Disabled", "details report (PAE/NX)"); 2074 2075 2076 /* 3D Acceleration */ 2077 QString acc3d = aMachine.GetAccelerate3DEnabled() 2078 ? tr ("Enabled", "details report (3D Acceleration)") 2079 : tr ("Disabled", "details report (3D Acceleration)"); 2080 2075 2081 /* General + Hard Disks */ 2076 2082 detailsReport … … 2085 2091 .arg (virt) 2086 2092 .arg (pae) 2093 .arg (acc3d) 2087 2094 + hardDisks; 2088 2095 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsGeneral.cpp
r13580 r14312 265 265 mCbPae->setChecked (aMachine.GetPAEEnabled()); 266 266 267 /* 3D Acceleration */ 268 mCb3D->setChecked (aMachine.GetAccelerate3DEnabled()); 269 267 270 /* Snapshot folder */ 268 271 mPsSnapshot->setPath (aMachine.GetSnapshotFolder()); … … 338 341 /* PAE/NX */ 339 342 mMachine.SetPAEEnabled (mCbPae->isChecked()); 343 344 /* 3D Acceleration */ 345 mMachine.SetAccelerate3DEnabled (mCb3D->isChecked()); 340 346 341 347 /* Saved state folder */ … … 382 388 setTabOrder (mCbApic, mCbVirt); 383 389 setTabOrder (mCbVirt, mCbPae); 384 setTabOrder (mCbPae, mCbClipboard); 390 setTabOrder (mCbPae, mCb3D); 391 setTabOrder (mCb3D, mCbClipboard); 385 392 setTabOrder (mCbClipboard, mCbIDEController); 386 393 setTabOrder (mCbIDEController, mPsSnapshot); -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxVMSettingsGeneral.ui
r12030 r14312 719 719 </widget> 720 720 </item> 721 <item> 722 <widget class="QCheckBox" name="mCb3D" > 723 <property name="sizePolicy" > 724 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding" > 725 <horstretch>0</horstretch> 726 <verstretch>0</verstretch> 727 </sizepolicy> 728 </property> 729 <property name="whatsThis" > 730 <string>When checked, the VirtualBox allows guests to make use of the 3D graphics support available on the host.</string> 731 </property> 732 <property name="text" > 733 <string>Enable &3D Acceleration</string> 734 </property> 735 </widget> 736 </item> 721 737 </layout> 722 738 </item>
Note:
See TracChangeset
for help on using the changeset viewer.