summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/a2bus/a2eauxslot.h
Bad commit: 7bfe26660728f2ee022fadbb35d5a3917be4eb33
e summary='blob content' class='blob'>
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
36
37
38
39
40
41
42
43
44
// license:BSD-3-Clause
// copyright-holders:F.Ulivi
/***************************************************************************

    ui/info_pty.c

    Information screen on pseudo terminals

***************************************************************************/

#include "emu.h"
#include "ui/menu.h"
#include "ui/info_pty.h"

ui_menu_pty_info::ui_menu_pty_info(running_machine &machine, render_container *container) :
    ui_menu(machine, container)
{
}

ui_menu_pty_info::~ui_menu_pty_info()
{
}

void ui_menu_pty_info::populate()
{
    item_append("Pseudo terminals", NULL, MENU_FLAG_DISABLE, NULL);
    item_append("", NULL, MENU_FLAG_DISABLE, NULL);

    pty_interface_iterator iter(machine().root_device());
    for (device_pty_interface *pty = iter.first(); pty != NULL; pty = iter.next()) {
        const char *port_name = pty->device().owner()->tag() + 1;
        if (pty->is_open()) {
            item_append(port_name , pty->slave_name() , MENU_FLAG_DISABLE , NULL);
        } else {
            item_append(port_name , "[failed]" , MENU_FLAG_DISABLE , NULL);
        }
        item_append("", NULL, MENU_FLAG_DISABLE, NULL);
    }
}

void ui_menu_pty_info::handle()
{
    process(0);
}