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

📄 addtododlg.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 H
字号:
#ifndef ADDTODODLG_H
#define ADDTODODLG_H

#include <wx/dialog.h>

enum ToDoPosition
{
    tdpAbove = 0,
    tdpCurrent,
    tdpBelow
};

enum ToDoCommentType
{
    tdctCpp = 0, // C++ style,
    tdctC, // C style
    tdctWarning, // compiler warning
    tdctError // compiler error
};

class AddTodoDlg : public wxDialog
{
	public:
		AddTodoDlg(wxWindow* parent, wxArrayString& types);
		virtual ~AddTodoDlg();
        
        wxString GetText();
        wxString GetUser();
        int GetPriority();
        ToDoPosition GetPosition();
        wxString GetType();
        ToDoCommentType GetCommentType();
		
		virtual void EndModal(int retVal);
	protected:
		void LoadUsers();
		void SaveUsers();
		wxArrayString& m_Types;
	private:
};

#endif // ADDTODODLG_H

⌨️ 快捷键说明

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