mirror of https://github.com/bsnes-emu/bsnes.git
27 lines
750 B
C++
27 lines
750 B
C++
namespace phoenix {
|
|
|
|
static Settings *settings = nullptr;
|
|
|
|
void Settings::load() {
|
|
string path = {userpath(), ".config/phoenix/"};
|
|
Configuration::Document::load({path, "qt.bml"});
|
|
}
|
|
|
|
void Settings::save() {
|
|
string path = {userpath(), ".config/phoenix/"};
|
|
directory::create(path, 0755);
|
|
Configuration::Document::save({path, "qt.bml"});
|
|
}
|
|
|
|
Settings::Settings() {
|
|
geometry.append(geometry.frameX = 4, "FrameX");
|
|
geometry.append(geometry.frameY = 24, "FrameY");
|
|
geometry.append(geometry.frameWidth = 8, "FrameWidth");
|
|
geometry.append(geometry.frameHeight = 28, "FrameHeight");
|
|
geometry.append(geometry.menuHeight = 20, "MenuHeight");
|
|
geometry.append(geometry.statusHeight = 20, "StatusHeight");
|
|
append(geometry, "Geometry");
|
|
}
|
|
|
|
}
|