backtracedlg.h

来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef BACKTRACEDLG_H
#define BACKTRACEDLG_H

#include <wx/dialog.h>
#include <wx/listctrl.h>

class DebuggerGDB;
struct StackFrame;

class BacktraceDlg : public wxDialog
{
	public:
		BacktraceDlg(wxWindow* parent, DebuggerGDB* debugger);
		virtual ~BacktraceDlg();

        void Clear();
		void AddFrame(const StackFrame& frame);
	protected:
        void OnDblClick(wxListEvent& event);
        void OnSave(wxCommandEvent& event);
        void OnRefresh(wxCommandEvent& event);

        DebuggerGDB* m_pDbg;
	private:
        DECLARE_EVENT_TABLE();
};

#endif // BACKTRACEDLG_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?