X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fconfigdialog.cpp;h=42942f0eb7fb4022de7ea6744ef75811f94ec875;hb=ddac3e0e78a5c4b0236bdeaff18cf9a3ac4ba4f7;hp=ac22898d24b244a96444d981170925af254e1165;hpb=dadebc1a7525d196d5ee406be7b9d804d5f9945d;p=virtualjaguar diff --git a/src/gui/configdialog.cpp b/src/gui/configdialog.cpp index ac22898..42942f0 100644 --- a/src/gui/configdialog.cpp +++ b/src/gui/configdialog.cpp @@ -7,7 +7,7 @@ // JLH = James Hammons // // Who When What -// --- ---------- ------------------------------------------------------------- +// --- ---------- ------------------------------------------------------------ // JLH 01/29/2010 Created this file // JLH 06/23/2011 Added initial implementation // JLH 10/14/2011 Fixed possibly missing final slash in paths @@ -22,22 +22,28 @@ #include "settings.h" -ConfigDialog::ConfigDialog(QWidget * parent/*= 0*/): QDialog(parent) +ConfigDialog::ConfigDialog(QWidget * parent/*= 0*/): QDialog(parent), + tabWidget(new QTabWidget), + generalTab(new GeneralTab(this)), + controllerTab1(new ControllerTab(this)) { - tabWidget = new QTabWidget; - generalTab = new GeneralTab(this); - controllerTab1 = new ControllerTab(this); - controllerTab2 = new ControllerTab(this); +// tabWidget = new QTabWidget; +// generalTab = new GeneralTab(this); +// controllerTab1 = new ControllerTab(this); +//// controllerTab2 = new ControllerTab(this); - if (vjs.hardwareTypeAlpine) - alpineTab = new AlpineTab(this); +// if (vjs.hardwareTypeAlpine) +// alpineTab = new AlpineTab(this); tabWidget->addTab(generalTab, tr("General")); - tabWidget->addTab(controllerTab1, tr("Controller #1")); - tabWidget->addTab(controllerTab2, tr("Controller #2")); + tabWidget->addTab(controllerTab1, tr("Controllers")); +// tabWidget->addTab(controllerTab2, tr("Controller #2")); if (vjs.hardwareTypeAlpine) + { + alpineTab = new AlpineTab(this); tabWidget->addTab(alpineTab, tr("Alpine")); + } buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); @@ -50,16 +56,15 @@ ConfigDialog::ConfigDialog(QWidget * parent/*= 0*/): QDialog(parent) setLayout(mainLayout); setWindowTitle(tr("Virtual Jaguar Settings")); - LoadDialogFromSettings(); -// controllerTab1->UpdateLabel(); // Now it's safe to do this... ;-) -// controllerTab2->UpdateLabel(); // Now it's safe to do this... ;-) } + ConfigDialog::~ConfigDialog() { } + void ConfigDialog::LoadDialogFromSettings(void) { // generalTab->edit1->setText(vjs.jagBootPath); @@ -70,7 +75,9 @@ void ConfigDialog::LoadDialogFromSettings(void) generalTab->useBIOS->setChecked(vjs.useJaguarBIOS); generalTab->useGPU->setChecked(vjs.GPUEnabled); generalTab->useDSP->setChecked(vjs.DSPEnabled); + generalTab->useFullScreen->setChecked(vjs.fullscreen); // generalTab->useHostAudio->setChecked(vjs.audioEnabled); + generalTab->useFastBlitter->setChecked(vjs.useFastBlitter); if (vjs.hardwareTypeAlpine) { @@ -79,41 +86,55 @@ void ConfigDialog::LoadDialogFromSettings(void) alpineTab->writeROM->setChecked(vjs.allowWritesToROM); } +#warning "!!! Need to load settings from controller profile !!!" +// We do this now, but not here. Need to fix this... +#if 0 for(int i=0; i<21; i++) { +// We need to find the right profile and load it up here... controllerTab1->controllerWidget->keys[i] = vjs.p1KeyBindings[i]; - controllerTab2->controllerWidget->keys[i] = vjs.p2KeyBindings[i]; +// controllerTab2->controllerWidget->keys[i] = vjs.p2KeyBindings[i]; } +#endif } + void ConfigDialog::UpdateVJSettings(void) { // strcpy(vjs.jagBootPath, generalTab->edit1->text().toAscii().data()); // strcpy(vjs.CDBootPath, generalTab->edit2->text().toAscii().data()); strcpy(vjs.EEPROMPath, CheckForTrailingSlash( - generalTab->edit3->text()).toAscii().data()); + generalTab->edit3->text()).toUtf8().data()); strcpy(vjs.ROMPath, CheckForTrailingSlash( - generalTab->edit4->text()).toAscii().data()); + generalTab->edit4->text()).toUtf8().data()); - vjs.useJaguarBIOS = generalTab->useBIOS->isChecked(); - vjs.GPUEnabled = generalTab->useGPU->isChecked(); - vjs.DSPEnabled = generalTab->useDSP->isChecked(); -// vjs.audioEnabled = generalTab->useHostAudio->isChecked(); + vjs.useJaguarBIOS = generalTab->useBIOS->isChecked(); + vjs.GPUEnabled = generalTab->useGPU->isChecked(); + vjs.DSPEnabled = generalTab->useDSP->isChecked(); + vjs.fullscreen = generalTab->useFullScreen->isChecked(); +// vjs.audioEnabled = generalTab->useHostAudio->isChecked(); + vjs.useFastBlitter = generalTab->useFastBlitter->isChecked(); if (vjs.hardwareTypeAlpine) { - strcpy(vjs.alpineROMPath, alpineTab->edit1->text().toAscii().data()); - strcpy(vjs.absROMPath, alpineTab->edit2->text().toAscii().data()); + strcpy(vjs.alpineROMPath, alpineTab->edit1->text().toUtf8().data()); + strcpy(vjs.absROMPath, alpineTab->edit2->text().toUtf8().data()); vjs.allowWritesToROM = alpineTab->writeROM->isChecked(); } +#warning "!!! Need to save settings to controller profile !!!" +// We do this now, but not here. Need to fix this... +#if 0 for(int i=0; i<21; i++) { +// We need to find the right profile and load it up here... vjs.p1KeyBindings[i] = controllerTab1->controllerWidget->keys[i]; - vjs.p2KeyBindings[i] = controllerTab2->controllerWidget->keys[i]; +// vjs.p2KeyBindings[i] = controllerTab2->controllerWidget->keys[i]; } +#endif } + QString ConfigDialog::CheckForTrailingSlash(QString s) { if (!s.endsWith('/') && !s.endsWith('\\'))