📄 compilermessages.h
字号:
#ifndef COMPILERMESSAGES_H
#define COMPILERMESSAGES_H
#include <simplelistlog.h>
class CompilerErrors;
class CompilerMessages : public SimpleListLog
{
public:
CompilerMessages(wxNotebook* parent, const wxString& title, int numCols, int widths[], const wxArrayString& titles);
virtual ~CompilerMessages();
virtual void SetCompilerErrors(CompilerErrors* errors){ m_pErrors = errors; }
virtual void FocusError(int nr);
protected:
void OnClick(wxCommandEvent& event);
void OnDoubleClick(wxCommandEvent& event);
CompilerErrors* m_pErrors;
private:
DECLARE_EVENT_TABLE()
};
#endif // COMPILERMESSAGES_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -