blob: 2ab810654f3f2aa4a64520d34dd7a390d9172036 (
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
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Vas Crabb
//============================================================
//
// memoryviewinfo.h - Win32 debug window handling
//
//============================================================
#ifndef __DEBUG_WIN_MEMORY_VIEW_INFO_H__
#define __DEBUG_WIN_MEMORY_VIEW_INFO_H__
#include "debugwin.h"
#include "debugviewinfo.h"
class memoryview_info : public debugview_info
{
public:
memoryview_info(debugger_windows_interface &debugger, debugwin_info &owner, HWND parent);
virtual ~memoryview_info();
uint8_t data_format() const;
uint32_t chunks_per_row() const;
bool reverse() const;
bool physical() const;
void set_expression(const std::string &string);
void set_data_format(uint8_t dataformat);
void set_chunks_per_row(uint32_t rowchunks);
void set_reverse(bool reverse);
void set_physical(bool physical);
};
#endif
|