insertclassmethoddlg.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 36 行
H
36 行
#ifndef INSERTCLASSMETHODDLG_H
#define INSERTCLASSMETHODDLG_H
#include <wx/dialog.h>
#include <wx/checklst.h>
#include "parser/parser.h"
class InsertClassMethodDlg : public wxDialog
{
public:
InsertClassMethodDlg(wxWindow* parent, Parser* parser, const wxString& filename);
virtual ~InsertClassMethodDlg();
wxArrayString GetCode(); // return an array of checked methods
protected:
void FillClasses();
void FillMethods();
void DoFillMethodsFor(wxCheckListBox* clb,
Token* parentToken,
const wxString& ns,
bool includePrivate,
bool includeProtected,
bool includePublic);
void OnClassesChange(wxCommandEvent& event);
void OnCodeChange(wxCommandEvent& event);
void OnFilterChange(wxCommandEvent& event);
private:
Parser* m_pParser;
bool m_Decl;
wxString m_Filename;
DECLARE_EVENT_TABLE();
};
#endif // INSERTCLASSMETHODDLG_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?