cbprofilerconfig.h

来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 40 行

H
40
字号
/***************************************************************
 * 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 + =
减小字号Ctrl + -
显示快捷键?