summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/devopt.h
blob: 56916aebb545558fb52b2c0cc70d3f597d9956d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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__ */