codestatconfig.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 13 行
H
13 行
/***************************************************************
* Name: codestatconfig.h
* Purpose: Code::Blocks plugin
* Author: Zlika
* Created: 11/09/2005
* Copyright: (c) Zlika
* License: GPL
**************************************************************/
#ifndef CODESTATCONFIG_H
#define CODESTATCONFIG_H
#include <configmanager.h>
#include <wx/dialog.h>
#include <wx/xrc/xmlres.h>
#include <wx/intl.h>
#include <wx/textctrl.h>
#include <wx/combobox.h>
#include <wx/stattext.h>
#include "language_def.h"
class CodeStatConfigDlg : public wxDialog
{
public:
CodeStatConfigDlg(wxWindow* parent, LanguageDef lang[NB_FILETYPES]);
virtual ~CodeStatConfigDlg();
protected:
//void SaveSettings();
void ComboBoxEvent(wxCommandEvent & event);
void PrintLanguageInfo(int id);
void EndModal(int retCode);
private:
LanguageDef languages[NB_FILETYPES];
DECLARE_EVENT_TABLE()
};
#endif // CODESTATCONFIG_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?