]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/generaltab.cpp
Improved OP logging, small changes to GPU read/write alignment.
[virtualjaguar] / src / gui / generaltab.cpp
index 21304b5a5ac8e947cdbcea26a9d822693da8db10..883f13755397f4e3998670e143c1974cd0fa3ec8 100644 (file)
 
 GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
 {
-//     antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing"));
-
 // I'm thinking we should scan the bios folder for the 5 known BIOSes, and
 // just present a radio button to choose between them...
+// (BIOS is built-in now...)
        QLabel * label1 = new QLabel("Boot ROM:");
        QLabel * label2 = new QLabel("CD Boot ROM:");
        QLabel * label3 = new QLabel("EEPROMs:");
@@ -35,14 +34,14 @@ GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
        edit4->setPlaceholderText("Software path");
 
        QVBoxLayout * layout1 = new QVBoxLayout;
-       layout1->addWidget(label1);
-       layout1->addWidget(label2);
+//     layout1->addWidget(label1);
+//     layout1->addWidget(label2);
        layout1->addWidget(label3);
        layout1->addWidget(label4);
 
        QVBoxLayout * layout2 = new QVBoxLayout;
-       layout2->addWidget(edit1);
-       layout2->addWidget(edit2);
+//     layout2->addWidget(edit1);
+//     layout2->addWidget(edit2);
        layout2->addWidget(edit3);
        layout2->addWidget(edit4);
 
@@ -54,11 +53,17 @@ GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
        layout4->addLayout(layout3);
 
        // Checkboxes...
-       useBIOS = new QCheckBox(tr("Enable Jaguar BIOS"));
-       useDSP  = new QCheckBox(tr("Enable DSP"));
+       useBIOS            = new QCheckBox(tr("Enable Jaguar BIOS"));
+       useGPU             = new QCheckBox(tr("Enable GPU"));
+       useDSP             = new QCheckBox(tr("Enable DSP"));
+       useHostAudio       = new QCheckBox(tr("Enable audio playback (requires DSP)"));
+       useUnknownSoftware = new QCheckBox(tr("Show all files in file chooser"));
 
        layout4->addWidget(useBIOS);
+       layout4->addWidget(useGPU);
        layout4->addWidget(useDSP);
+       layout4->addWidget(useHostAudio);
+       layout4->addWidget(useUnknownSoftware);
 
        setLayout(layout4);
 }