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

📄 cbprofilerconfig.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 H
字号:
/***************************************************************
 * Name:      cbprofilerconfig.h
 * Purpose:   Code::Blocks plugin
 * Author:    Dark Lord & Zlika
 * Created:   07/20/05 15:36:55
 * Copyright: (c) Dark Lord & Zlika
 * Thanks:    Yiannis Mandravellos and his Source code formatter (AStyle) sources
 * License:   GPL
 **************************************************************/

#ifndef CBPROFILERCONFIG_H
#define CBPROFILERCONFIG_H

#include <wx/xrc/xmlres.h>
#include <wx/intl.h>
#include <wx/font.h>
#include <wx/checkbox.h>
#include <wx/spinctrl.h>
#include <wx/textctrl.h>
#include <wx/dialog.h>

#include <configmanager.h>

class CBProfilerConfigDlg : public wxDialog
{
	public:
		CBProfilerConfigDlg(wxWindow* parent);
		virtual ~CBProfilerConfigDlg();
	protected:
        void CheckBoxEvent(wxCommandEvent& event);
        
        void LoadSettings();
        void SaveSettings();
        void EndModal(int retCode);
	private:
        DECLARE_EVENT_TABLE()
};

#endif // CBPROFILERCONFIG_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -