Home
last modified time | relevance | path

Searched refs:myRomPath (Results 1 – 6 of 6) sorted by relevance

/dports/emulators/stella/stella-6.6/src/gui/
H A DRomAuditDialog.cxx64 myRomPath = new EditTextWidget(this, font, xpos, ypos + (buttonHeight - lineHeight) / 2 - 1,
66 wid.push_back(myRomPath);
103 myRomPath->setText(path); in loadConfig()
111 const string& auditPath = myRomPath->getText(); in auditRoms()
202 myRomPath->getText(), in handleCommand()
206 myRomPath->setText(node.getShortPath()); in handleCommand()
H A DUIDialog.cxx215 myRomPath = new EditTextWidget(myTab, font, xpos, ypos + (buttonHeight - lineHeight) / 2 - 1,
217 wid.push_back(myRomPath);
308 myRomPath->setEditable(false);
333 myRomPath->setText(settings.getString("romdir")); in loadConfig()
424 settings.setValue("romdir", myRomPath->getText()); in saveConfig()
515 myRomPath->setText(node.getShortPath()); in setDefaults()
539 myRomPath->getText() != instance().settings().getString("romdir"); in handleCommand()
592 myRomPath->getText(), in handleCommand()
595 if(OK) myRomPath->setText(node.getShortPath()); in handleCommand()
H A DRomAuditDialog.hxx53 EditTextWidget* myRomPath{nullptr}; member in RomAuditDialog
H A DUIDialog.hxx55 EditTextWidget* myRomPath{nullptr}; member in UIDialog
/dports/emulators/qmc2/qmc2-0.195_4/qmc2/
H A Dromalyzer.cpp607 QString myRomPath; in analyze() local
609 myRomPath = qmc2Config->value(QMC2_EMULATOR_PREFIX + "Configuration/Global/rompath").toString(); in analyze()
611 myRomPath = "roms"; in analyze()
614 myRomPath.prepend(lineEditSetRewriterAdditionalRomPath->text() + ";"); in analyze()
616 myRomPath.replace("~", QDir::homePath()); in analyze()
617 myRomPath.replace("$HOME", QDir::homePath()); in analyze()
618 romPaths = myRomPath.split(";", QString::SkipEmptyParts); in analyze()
H A Dqmc2main.cpp10580 QString myRomPath; in checkRomPath() local
10597 myRomPath = romPaths.join(";"); in checkRomPath()
10599myRomPath = QDir::cleanPath(qmc2Config->value(QMC2_EMULATOR_PREFIX + "FilesAndDirectories/WorkingD… in checkRomPath()
10601 myRomPath = QDir::cleanPath(QDir::currentPath() + "/roms"); in checkRomPath()
10606 foreach (QString romPath, myRomPath.split(";", QString::SkipEmptyParts)) { in checkRomPath()