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

📄 convert.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
// MainFrame.h: interface for the wxMainFrame class.////////////////////////////////////////////////////////////////////////#if !defined(MAINFRAME_H)#define MAINFRAME_H#include "wx/wxprec.h"#define ID_QUIT 1002#define ID_ABOUT 1003#define ID_RC2WXR 1005#define ID_WXR2XML 1006#define ID_RC2XML 1007class wxMainFrame:public wxFrame{public:    void OnRC2XML(wxCommandEvent& event);    void OnWXR2XML(wxCommandEvent& event);    void OnRc2Wxr(wxCommandEvent& event);    void OnQuit(wxCommandEvent& event);    wxMainFrame(wxWindow* parent, wxWindowID id,        const wxString& title, const wxPoint& pos = wxDefaultPosition,        const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE,        const wxString& name = _T("frame"));    virtual ~wxMainFrame();protected:    DECLARE_EVENT_TABLE()};class wxConvertApp : public wxApp{public:    bool HandleCommandLine();    void InitMenu();    bool OnInit(void);    wxConvertApp();    virtual ~wxConvertApp();protected:    wxMenuBar * m_pMenuBar;    wxMainFrame *m_pFrame;};#endif // !defined(MAINFRAME_H)

⌨️ 快捷键说明

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