summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/devopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/devopt.h')
-rw-r--r--src/frontend/mame/ui/devopt.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/frontend/mame/ui/devopt.h b/src/frontend/mame/ui/devopt.h
new file mode 100644
index 00000000000..56916aebb54
--- /dev/null
+++ b/src/frontend/mame/ui/devopt.h
@@ -0,0 +1,30 @@
+// license:BSD-3-Clause
+// copyright-holders:Nathan Woods
+/***************************************************************************
+
+ ui/devopt.h
+
+ Internal menu for the device configuration.
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __UI_DEVOPT_H__
+#define __UI_DEVOPT_H__
+
+class ui_menu_device_config : public ui_menu {
+public:
+ ui_menu_device_config(running_machine &machine, render_container *container, device_slot_interface *slot, device_slot_option *option);
+ virtual ~ui_menu_device_config();
+ virtual void populate() override;
+ virtual void handle() override;
+
+private:
+ device_slot_interface *m_owner;
+ device_slot_option *m_option;
+ bool m_mounted;
+};
+
+
+#endif /* __UI_DEVOPT_H__ */