blob: 5da80597272a0c092173e68cd71c2cc7b6ed3dce (
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
56
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Vas Crabb
//============================================================
//
// editwininfo.h - Win32 debug window handling
//
//============================================================
#ifndef __DEBUG_WIN_EDIT_WIN_INFO_H__
#define __DEBUG_WIN_EDIT_WIN_INFO_H__
#include "debugwin.h"
#include "debugwininfo.h"
class editwin_info : public debugwin_info
{
public:
editwin_info(debugger_windows_interface &debugger, bool is_main_console, LPCSTR title, WNDPROC handler);
virtual ~editwin_info();
virtual bool restore_field(HWND wnd) override;
virtual bool set_default_focus() override;
protected:
static DWORD const COMBO_BOX_STYLE = WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST | WS_VSCROLL;
static DWORD const COMBO_BOX_STYLE_EX = 0;
void set_editwnd_bounds(RECT const &bounds);
void set_editwnd_text(char const *text);
void editwnd_select_all();
void set_edit_defstr(char const *string) { m_edit_defstr = string; }
virtual void draw_contents(HDC dc) override;
private:
virtual void process_string(char const *string) = 0;
LRESULT edit_proc(UINT message, WPARAM wparam, LPARAM lparam);
static LRESULT CALLBACK static_edit_proc(HWND wnd, UINT message, WPARAM wparam, LPARAM lparam);
static int const MAX_EDIT_STRING = 256;
static int const HISTORY_LENGTH = 20;
HWND m_editwnd;
std::string m_edit_defstr;
WNDPROC m_original_editproc;
TCHAR m_history[HISTORY_LENGTH][MAX_EDIT_STRING];
int m_history_count;
int m_last_history;
};
#endif
|