⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 backtracedlg.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -