blob: 34e8275f2f98a6aafc8d3f3e6c7fce2949a73cd3 (
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
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Vas Crabb
//============================================================
//
// disasmwininfo.h - Win32 debug window handling
//
//============================================================
#ifndef __DEBUG_WIN_DISASM_WIN_INFO_H__
#define __DEBUG_WIN_DISASM_WIN_INFO_H__
#include "debugwin.h"
#include "disasmbasewininfo.h"
class disasmwin_info : public disasmbasewin_info
{
public:
disasmwin_info(debugger_windows_interface &debugger);
virtual ~disasmwin_info();
protected:
virtual void recompute_children() override;
virtual bool handle_command(WPARAM wparam, LPARAM lparam) override;
virtual void draw_contents(HDC dc) override;
private:
virtual void process_string(const std::string &string) override;
void update_caption();
HWND m_combownd;
};
#endif
|