summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvwpoints.h
blob: fc6b641effcf89937a3ff70299674f1b24456b93 (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
54
55
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/*********************************************************************

    dvwpoints.h

    Watchpoint debugger view.

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

#ifndef __DVWPOINTS_H__
#define __DVWPOINTS_H__

#include "debugvw.h"
#include "debugcpu.h"


//**************************************************************************
//  CONSTANTS
//**************************************************************************


//**************************************************************************
//  TYPE DEFINITIONS
//**************************************************************************

// debug view for watchpoints
class debug_view_watchpoints : public debug_view
{
	friend resource_pool_object<debug_view_watchpoints>::~resource_pool_object();
	friend class debug_view_manager;

	// construction/destruction
	debug_view_watchpoints(running_machine &machine, debug_view_osd_update_func osdupdate, void *osdprivate);
	virtual ~debug_view_watchpoints();

protected:
	// view overrides
	virtual void view_update();
	virtual void view_click(const int button, const debug_view_xy& pos);

private:
	// internal helpers
	void enumerate_sources();
	void pad_astring_to_length(astring& str, int len);
	void gather_watchpoints();


	// internal state
	int (*m_sortType)(void const *, void const *);
	std::vector<device_debug::watchpoint *> m_buffer;
};


#endif