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

📄 compilermessages.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 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 + -