blob: 72e36af779cf89a847ef577028486966d34eec4e (
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
31
32
33
34
35
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods
/***************************************************************************
ui/slotopt.h
Internal menu for the slot options.
***************************************************************************/
#pragma once
#ifndef __UI_SLOTOPT_H__
#define __UI_SLOTOPT_H__
//#include "drivenum.h"
class ui_menu_slot_devices : public ui_menu {
public:
ui_menu_slot_devices(running_machine &machine, render_container *container);
virtual ~ui_menu_slot_devices();
virtual void populate();
virtual void handle();
private:
device_slot_option *slot_get_current_option(device_slot_interface *slot);
int slot_get_current_index(device_slot_interface *slot);
int slot_get_length(device_slot_interface *slot);
const char *slot_get_next(device_slot_interface *slot);
const char *slot_get_prev(device_slot_interface *slot);
const char *slot_get_option(device_slot_interface *slot, int index);
void set_slot_device(device_slot_interface *slot, const char *val);
};
#endif /* __UI_SLOTOPT_H__ */
|