helpconfigdialog.h

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

H
37
字号
#ifndef HELPCONFIGDIALOG_H
#define HELPCONFIGDIALOG_H

#include <wx/dialog.h>
#include "help_common.h"

class HelpConfigDialog : public wxDialog
{
  private:
    HelpCommon::HelpFilesVector m_Vector;
    int m_LastSel;
  
  public:
    HelpConfigDialog();
    virtual ~HelpConfigDialog();
  
  protected:
    void Add(wxCommandEvent &event);
    void Rename(wxCommandEvent &event);
    void Delete(wxCommandEvent &event);
    void Browse(wxCommandEvent &event);
    void OnUp(wxCommandEvent &event);
    void OnDown(wxCommandEvent &event);
    void ListChange(wxCommandEvent &event);
    void OnCheckbox(wxCommandEvent &event);
    void UpdateUI(wxUpdateUIEvent &event);
    void Ok(wxCommandEvent &event);
  
  private:
    void UpdateEntry(int index);
    void ChooseFile();
  
    DECLARE_EVENT_TABLE()
};

#endif // HELPCONFIGDIALOG

⌨️ 快捷键说明

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