project64/Source/Project64/UserInterface/Debugger/Debugger-AddBreakpoint.h

40 lines
918 B
C
Raw Normal View History

2017-08-18 05:08:22 +00:00
#pragma once
class CAddBreakpointDlg : public CDialogImpl<CAddBreakpointDlg>
{
public:
2022-09-26 02:31:54 +00:00
enum
{
IDD = IDD_Debugger_AddBreakpoint
};
2017-08-18 05:08:22 +00:00
2022-09-26 02:31:54 +00:00
INT_PTR CAddBreakpointDlg::DoModal(CDebuggerUI * debugger)
2017-09-13 10:36:03 +00:00
{
m_Debugger = debugger;
return CDialogImpl<CAddBreakpointDlg>::DoModal();
}
2017-08-18 05:08:22 +00:00
private:
2022-09-26 02:31:54 +00:00
CDebuggerUI * m_Debugger;
2017-09-13 10:36:03 +00:00
CButton m_ReadCheck;
CButton m_WriteCheck;
CButton m_ExecuteCheck;
2022-09-26 02:31:54 +00:00
CEdit m_AddressEdit;
2017-09-13 10:36:03 +00:00
2022-09-26 02:31:54 +00:00
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL & /*bHandled*/);
LRESULT OnClicked(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL & bHandled);
2017-09-13 10:36:03 +00:00
LRESULT OnDestroy(void)
{
return 0;
}
BEGIN_MSG_MAP_EX(CAddBreakpointDlg)
2022-09-26 02:31:54 +00:00
{
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog);
COMMAND_CODE_HANDLER(BN_CLICKED, OnClicked);
MSG_WM_DESTROY(OnDestroy);
}
END_MSG_MAP()
};