X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fconfigdialog.cpp;h=752713bde6998e163e5597350d97d4e96e634eec;hb=69effddb777c2009d32f70e3315d5570973446ef;hp=e84cf232c93ae45d3a67a89c96b7321f623c4a48;hpb=122ea9b537bf5da3e5cca0804826ef19d3b8fe86;p=virtualjaguar diff --git a/src/gui/configdialog.cpp b/src/gui/configdialog.cpp index e84cf23..752713b 100644 --- a/src/gui/configdialog.cpp +++ b/src/gui/configdialog.cpp @@ -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); @@ -80,13 +85,18 @@ void ConfigDialog::LoadDialogFromSettings(void) alpineTab->writeROM->setChecked(vjs.allowWritesToROM); } +#warning "!!! Need to load settings from controller profile !!!" +#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()); @@ -109,13 +119,16 @@ void ConfigDialog::UpdateVJSettings(void) vjs.allowWritesToROM = alpineTab->writeROM->isChecked(); } +#warning "!!! Need to save settings to controller profile !!!" 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]; } } + QString ConfigDialog::CheckForTrailingSlash(QString s) { if (!s.endsWith('/') && !s.endsWith('\\'))