summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/moptions.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-05 15:17:51 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-05 15:17:51 +0100
commit6fb757d6a6ee1628c49834c884d682bb43211ffd (patch)
treec9fea3e49c11df6282ef022c91396985a7bbbe4e /src/emu/ui/moptions.h
parentd0162765cdd23c2cb015118b75c87689a839de40 (diff)
move some options to ui.ini (nw)
Diffstat (limited to 'src/emu/ui/moptions.h')
-rw-r--r--src/emu/ui/moptions.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/ui/moptions.h b/src/emu/ui/moptions.h
index e3c649111d9..3b1ab8948c0 100644
--- a/src/emu/ui/moptions.h
+++ b/src/emu/ui/moptions.h
@@ -70,6 +70,12 @@
#define OPTION_UI_DIPSW_COLOR "ui_dipsw_color"
#define OPTION_UI_SLIDER_COLOR "ui_slider_color"
+#define OPTION_UI_FONT "uifont"
+#define OPTION_UI_CONFIRM_QUIT "confirm_quit"
+#define OPTION_UI_MOUSE "ui_mouse"
+#define OPTION_UI_SKIP_GAMEINFO "skip_gameinfo"
+
+
class ui_options : public core_options
{
public:
@@ -131,6 +137,10 @@ public:
const char *ui_dipsw_color() const { return value(OPTION_UI_DIPSW_COLOR); }
const char *ui_slider_color() const { return value(OPTION_UI_SLIDER_COLOR); }
+ bool skip_gameinfo() const { return bool_value(OPTION_UI_SKIP_GAMEINFO); }
+ const char *ui_font() const { return value(OPTION_UI_FONT); }
+ bool confirm_quit() const { return bool_value(OPTION_UI_CONFIRM_QUIT); }
+ bool ui_mouse() const { return bool_value(OPTION_UI_MOUSE); }
private:
static const options_entry s_option_entries[];
};