blob: c7bfa68527d5a960338fcb72ae71a644acdbbe9d (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// license:BSD-3-Clause
// copyright-holders:Andrew Gardner
#ifndef MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H
#define MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H
#include "windowqt.h"
//============================================================
// The Device Information Window.
//============================================================
class DeviceInformationWindow : public WindowQt
{
Q_OBJECT
public:
DeviceInformationWindow(running_machine &machine, device_t *device = nullptr, QWidget* parent=nullptr);
virtual ~DeviceInformationWindow();
void set_device(const char *tag);
const char *device_tag() const;
private:
device_t *m_device;
void fill_device_information();
};
//=========================================================================
// A way to store the configuration of a window long enough to read/write.
//=========================================================================
class DeviceInformationWindowQtConfig : public WindowQtConfig
{
public:
std::string m_device_tag;
DeviceInformationWindowQtConfig() :
WindowQtConfig(WIN_TYPE_DEVICE_INFORMATION)
{
}
~DeviceInformationWindowQtConfig() {}
void buildFromQWidget(QWidget *widget);
void applyToQWidget(QWidget *widget);
void addToXmlDataNode(util::xml::data_node &node) const;
void recoverFromXmlNode(util::xml::data_node const &node);
};
#endif // MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H
|