blob: 97aa81c41a1cd6c13ac7dc46a0b17becb1c63e7a (
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
|
// license:BSD-3-Clause
// copyright-holders:Andrew Gardner
#ifndef __DEBUG_QT_LOG_WINDOW_H__
#define __DEBUG_QT_LOG_WINDOW_H__
#include <QtGui/QtGui>
#include "debuggerview.h"
#include "windowqt.h"
//============================================================
// The Log Window.
//============================================================
class LogWindow : public WindowQt
{
Q_OBJECT
public:
LogWindow(running_machine* machine, QWidget* parent=NULL);
virtual ~LogWindow();
private:
// Widgets
DebuggerView* m_logView;
};
//=========================================================================
// A way to store the configuration of a window long enough to read/write.
//=========================================================================
class LogWindowQtConfig : public WindowQtConfig
{
public:
LogWindowQtConfig() :
WindowQtConfig(WIN_TYPE_LOG)
{
}
~LogWindowQtConfig() {}
void buildFromQWidget(QWidget* widget);
void applyToQWidget(QWidget* widget);
void addToXmlDataNode(xml_data_node* node) const;
void recoverFromXmlNode(xml_data_node* node);
};
#endif
|