summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/devopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/devopt.h')
-rw-r--r--src/emu/ui/devopt.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/emu/ui/devopt.h b/src/emu/ui/devopt.h
new file mode 100644
index 00000000000..2640d358460
--- /dev/null
+++ b/src/emu/ui/devopt.h
@@ -0,0 +1,31 @@
+/***************************************************************************
+
+ ui/devopt.h
+
+ Internal menu for the device configuration.
+
+ Copyright Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+***************************************************************************/
+
+#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();
+ virtual void handle();
+
+private:
+ device_slot_interface *m_owner;
+ device_slot_option *m_option;
+ bool m_mounted;
+};
+
+
+#endif /* __UI_DEVOPT_H__ */