VirtualBox

Changeset 8138 in vbox


Ignore:
Timestamp:
Apr 18, 2008 12:05:55 PM (16 years ago)
Author:
vboxsync
Message:

PAE/NX option added into Extended Features chapter of VM Settings.

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp

    r8109 r8138  
    14971497            + QString (sSectionItemTpl).arg (tr ("ACPI", "details report"), "%6")
    14981498            + 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");
    15001501
    15011502        sGeneralFullHrefTpl = QString (sSectionHrefTpl)
    1502             .arg (2 + 8) /* rows */
     1503            .arg (2 + 9) /* rows */
    15031504            .arg ("machine_16px.png", /* icon */
    15041505                  "#general", /* link */
     
    15061507                  generalItems); /* items */
    15071508        sGeneralFullBoldTpl = QString (sSectionBoldTpl)
    1508             .arg (2 + 8) /* rows */
     1509            .arg (2 + 9) /* rows */
    15091510            .arg ("machine_16px.png", /* icon */
    15101511                  "#general", /* link */
     
    16231624                       tr ("Disabled", "details report (VT-x/AMD-V)");
    16241625
     1626        /* PAE/NX */
     1627        QString pae = m.GetPAEEnabled()
     1628            ? tr ("Enabled", "details report (PAE/NX)")
     1629            : tr ("Disabled", "details report (PAE/NX)");
     1630
    16251631        /* General + Hard Disks */
    16261632        detailsReport
     
    16341640                .arg (ioapic)
    16351641                .arg (virt)
     1642                .arg (pae)
    16361643            + hardDisks;
    16371644
  • trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui

    r8104 r8138  
    10641064                                                <string>Extended Features</string>
    10651065                                            </property>
    1066                                             <vbox>
     1066                                            <grid>
    10671067                                                <property name="name">
    10681068                                                    <cstring>unnamed</cstring>
    10691069                                                </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&amp;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&amp;PIC</string>
     1087                                                    </property>
     1088                                                    <property name="whatsThis" stdset="0">
     1089                                                        <string>&lt;qt&gt;When checked, the virtual machine will support
     1090the Input Output APIC (IO APIC), which may slightly decrease the VM performance. &lt;b&gt;Note:&lt;/b&gt; don't disable
     1091this feature after having installed a Windows guest operating system!&lt;/qt&gt;</string>
     1092                                                    </property>
     1093                                                </widget>
     1094                                                <widget class="QCheckBox" row="0" column="0">
    10711095                                                    <property name="name">
    10721096                                                        <cstring>chbEnableACPI</cstring>
     
    10811105                                                    </property>
    10821106                                                </widget>
    1083                                                 <widget class="QCheckBox">
    1084                                                     <property name="name">
    1085                                                         <cstring>chbEnableIOAPIC</cstring>
    1086                                                     </property>
    1087                                                     <property name="text">
    1088                                                         <string>Enable IO A&amp;PIC</string>
    1089                                                     </property>
    1090                                                     <property name="whatsThis" stdset="0">
    1091                                                         <string>&lt;qt&gt;When checked, the virtual machine will support
    1092 the Input Output APIC (IO APIC), which may slightly decrease the VM performance. &lt;b&gt;Note:&lt;/b&gt; don't disable
    1093 this feature after having installed a Windows guest operating system!&lt;/qt&gt;</string>
    1094                                                     </property>
    1095                                                 </widget>
    1096                                                 <widget class="QCheckBox">
     1107                                                <widget class="QCheckBox" row="2" column="0">
    10971108                                                    <property name="name">
    10981109                                                        <cstring>chbVTX</cstring>
     
    11081119                                                    </property>
    11091120                                                </widget>
    1110                                             </vbox>
     1121                                            </grid>
    11111122                                        </widget>
    11121123                                    </hbox>
  • trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h

    r8116 r8138  
    15411541    machine.GetHWVirtExEnabled() == KTSBool_True ?  chbVTX->setChecked (true) :
    15421542                                                    chbVTX->setNoChange();
     1543
     1544    /* PAE/NX */
     1545    chbPAE->setChecked (machine.GetPAEEnabled());
    15431546
    15441547    /* Saved state folder */
     
    18671870        chbVTX->state() == QButton::On ? KTSBool_True : KTSBool_Default);
    18681871
     1872    /* PAE/NX */
     1873    cmachine.SetPAEEnabled (chbPAE->isChecked());
     1874
    18691875    /* Saved state folder */
    18701876    if (leSnapshotFolder->isModified())
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette