wxWidget之HelloWorld

参考wxWidgets官方Hello World in wxWidgets编写一个简单的wxWidgets入门。

从小的成功积累到大的成功

编译&执行环境

OS CPU IDE
Win10 x64 VS2015+clang+VSCode

Hello World

程序从界面来说主要分为两大类:CLI(控制台)和GUI(图形界面)。
控制台是一个简单的命令行程序,没有界面,执行没有界面,便于与其它命令组合,非常适合自动化批量执行。GUI则是一个包含界面的程序,易于非程序员操作和使用。下面使用wxWidgets各实现HelloWorld。

控制台/终端

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
int main(){
    wxPrintf(wxT("HelloWorld"));
}

执行结果:HelloWorld

对话框

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
int main(){
    wxMessageBox(wxT("HelloWorld"));
}

执行结果:
对话框

在VisualStdio中,WXUSINGDLL__WXMSW___UNICODE三个宏通常设置在项目属性页的预处理定义中。

窗口程序

通常,使用wxWidgets就是要实现比较复杂的GUI界面,这种界面通常称为窗口。下面展示非常简单的一个窗口程序。

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE

#include <wx/wx.h>

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
};
class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        MyFrame *pframe = new MyFrame();
        pframe->Show( true );
        return true;
    }
};
wxIMPLEMENT_APP(MyApp);

执行结果:
HelloWorld窗口

特点:

  1. 没有main()函数,实际上是包含在wxWidgets框架中看不到。
  2. 一个应用程序类App,一个框架类Frame
  3. FrameAppOnInit()函数中实例化。

注意:这里Frame没有销毁,可能会内存泄露(通常这么处理也不会有太大问题,因为窗口关闭时,OS会收回所有资源)。

  • 解决方法一:
    Frame指针作为App的成员变量,在App析构函数中释放Frame动态内存。
#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
};
class MyApp: public wxApp {
public:
    ~MyApp(){
        wxDELETE(pframe);
        wxASSERT(not pframe);
    }
    virtual bool OnInit(){
        pframe = new MyFrame();
        pframe->Show( true );
        return true;
    }
private:
    MyFrame* pframe{nullptr};
};
wxIMPLEMENT_APP(MyApp);
  • 解决方法二:
    Frame对象作为App的成员变量,FrameApp生存周期自动的创建和消亡。
#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
};
class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        frame.Show(true);
        return true;
    }
private:
    MyFrame frame;
};
wxIMPLEMENT_APP(MyApp);

添加状态栏

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE

#include <wx/wx.h>

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {
        CreateStatusBar();
        SetStatusText( "Welcome to wxWidgets!" );
    }
};
class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        frame.Show(true);
        return true;
    }
private:
    MyFrame frame;
};
wxIMPLEMENT_APP(MyApp);

执行结果:
状态栏

添加菜单

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE

#include <wx/wx.h>

enum
{
    ID_Hello = 1
};

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {
        // 菜单
        wxMenu *menuFile = new wxMenu;
        menuFile->Append(ID_Hello, "&Hello...\tCtrl-H",
                         "Help string shown in status bar for this menu item");
        menuFile->AppendSeparator();
        menuFile->Append(wxID_EXIT);
        
        // 菜单
        wxMenu *menuHelp = new wxMenu;
        menuHelp->Append(wxID_ABOUT);

        // 菜单栏
        wxMenuBar *menuBar = new wxMenuBar;
        menuBar->Append( menuFile, "&File" );
        menuBar->Append( menuHelp, "&Help" );
        SetMenuBar( menuBar );

        CreateStatusBar();
        SetStatusText( "Welcome to wxWidgets!" );
    }
};
class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        frame.Show(true);
        return true;
    }
private:
    MyFrame frame;
};
wxIMPLEMENT_APP(MyApp);

执行结果:
菜单栏

菜单添加事件

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE

#pragma comment(lib,"vcruntime.lib")
#include <wx/wx.h>

enum
{
    ID_Hello = 1
};

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {
        // 菜单
        wxMenu *menuFile = new wxMenu;
        menuFile->Append(ID_Hello, "&Hello...\tCtrl-H",
                         "Help string shown in status bar for this menu item");
        menuFile->AppendSeparator();
        menuFile->Append(wxID_EXIT);
        
        // 菜单
        wxMenu *menuHelp = new wxMenu;
        menuHelp->Append(wxID_ABOUT);

        // 菜单栏
        wxMenuBar *menuBar = new wxMenuBar;
        menuBar->Append( menuFile, "&File" );
        menuBar->Append( menuHelp, "&Help" );
        SetMenuBar( menuBar );

        CreateStatusBar();
        SetStatusText( "Welcome to wxWidgets!" );

        Bind(wxEVT_MENU, [=](wxCommandEvent&){wxLogMessage("Hello world from wxWidgets!");}, ID_Hello);
        Bind(wxEVT_MENU, [=](wxCommandEvent&){
            wxMessageBox( "This is a wxWidgets' Hello world sample","About Hello World", wxOK | wxICON_INFORMATION );
        }, wxID_ABOUT);
        Bind(wxEVT_MENU, [=](wxCommandEvent&){ Close(true);}, wxID_EXIT);
    }
};
class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        frame.Show(true);
        return true;
    }
private:
    MyFrame frame;
};
wxIMPLEMENT_APP(MyApp);

注意:这里的菜单栏和菜单项不要手动delete,Frame销毁时负责销毁。


右键菜单

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>

#pragma comment(lib,"vcruntime.lib")

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
    void OnPopupMenu(wxMouseEvent& event){
        wxMenu menu;
        menu.Append(wxID_ANY,wxT("Test1"));
        menu.Append(wxID_ANY,wxT("Test2"));
        this->PopupMenu(&menu);
    }

    DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
    EVT_RIGHT_DOWN(MyFrame::OnPopupMenu)
END_EVENT_TABLE()

class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        MyFrame* pFrame = new MyFrame;
        pFrame->Show( true );
        return true;
    }   
};
wxIMPLEMENT_APP(MyApp);
#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>

#pragma comment(lib,"vcruntime.lib")
class MyPopupMenu: public wxMenu {
public:
    MyPopupMenu():wxMenu(){
        Append(wxID_ANY,wxT("Test1"));
        Append(wxID_ANY,wxT("Test2"));
    }
};

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
    void OnPopupMenu(wxMouseEvent& event){
        MyMenu menu;
        PopupMenu(&menu);
    }

    DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
    EVT_RIGHT_DOWN(MyFrame::OnPopupMenu)
END_EVENT_TABLE()

class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        MyFrame* pFrame = new MyFrame;
        pFrame->Show( true );
        return true;
    }   
};
wxIMPLEMENT_APP(MyApp);

动态菜单

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
#include <vector>
#include <tuple>

using namespace std;

#pragma comment(lib,"vcruntime.lib")

class MyPopupMenu: public wxMenu {
enum{
    ID_CREATE_PROJECT,
    ID_CREATE_GROUP,
    ID_CREATE_MARKPOINT,
    ID_CREATE_FOV_SINGLE,
    ID_CREATE_FOV_MAPPED,
    ID_COPY_PASTE,
    ID_DELETE,
    ID_SET_REPORT,
    ID_PROPERTY,
    ID_TEST
};
public:
    MyPopupMenu():wxMenu(){
        typedef void (MyPopupMenu::*MenuFunc)(wxCommandEvent&);
        typedef tuple<int,wxString,MenuFunc> MenuItem;
        vector<MenuItem> items = {
            make_tuple(ID_CREATE_PROJECT,wxT("创建工程"),&MyPopupMenu::OnCreateProject),
            make_tuple(ID_CREATE_GROUP, wxT("创建Group"),&MyPopupMenu::OnCreateGroup),
            make_tuple(ID_CREATE_MARKPOINT,wxT("创建MarkPoint"),&MyPopupMenu::OnCreateMarkPoint),
            make_tuple(ID_CREATE_FOV_SINGLE,wxT("创建FovSingle"),&MyPopupMenu::OnCreateFovSingle),
            make_tuple(ID_CREATE_FOV_MAPPED,wxT("创建FovMapped"),&MyPopupMenu::OnCreateFovMapped),
        };

        for(auto& item : items){
            MenuFunc pFunc;
            wxString label;
            int id;
            tie(id,label,pFunc) = item;
            wxMenuItem* pItem = new wxMenuItem(this,id,label);
            Connect(id,wxEVT_MENU,(wxObjectEventFunction)(wxEventFunction)static_cast<wxCommandEventFunction>(pFunc),NULL,this);
            Append(pItem);
        }
        
    }
    void OnCreateProject(wxCommandEvent& event);
    void OnCreateGroup(wxCommandEvent& event);
    void OnCreateMarkPoint(wxCommandEvent& event);
    void OnCreateFovSingle(wxCommandEvent& event);
    void OnCreateFovMapped(wxCommandEvent& event);
};

void MyPopupMenu::OnCreateProject(wxCommandEvent& event){
    wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
}
void MyPopupMenu::OnCreateGroup(wxCommandEvent& event){
    wxMessageBox(wxT("Context"), wxT("创建Group"),wxOK | wxICON_INFORMATION,nullptr);
}
void MyPopupMenu::OnCreateMarkPoint(wxCommandEvent& event){
    wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
}
void MyPopupMenu::OnCreateFovSingle(wxCommandEvent& event){
    wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
}
void MyPopupMenu::OnCreateFovMapped(wxCommandEvent& event){
    wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
}


class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
    void OnPopupMenu(wxMouseEvent& event){
        MyPopupMenu menu;
        PopupMenu(&menu);
    }

    DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
    EVT_RIGHT_DOWN(MyFrame::OnPopupMenu)
END_EVENT_TABLE()

class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        oFrame.Show( true );
        return true;
    }
private:
    MyFrame oFrame;
};
wxIMPLEMENT_APP(MyApp);

其中,Connect(id,wxEVT_MENU,(wxObjectEventFunction)(wxEventFunction)static_cast<wxCommandEventFunction>(pFunc),NULL,this);可以使用Bind(),更加简单Bind(wxEVT_MENU,pFunc,this,id);

同样,以下三行代码

 wxMenuItem* pItem = new wxMenuItem(this,id,label);
            Connect(id,wxEVT_MENU,(wxObjectEventFunction)(wxEventFunction)static_cast<wxCommandEventFunction>(pFunc),NULL,this);
            Append(pItem);

可以简写成

Append(id,label);
Bind(wxEVT_MENU,pFunc,this,id);

进一步优化

#define WXUSINGDLL
#define __WXMSW__
#define _UNICODE
#include <wx/wx.h>
#include <vector>
#include <tuple>

using namespace std;

#pragma comment(lib,"vcruntime.lib")
class MyMenuHandler;
typedef void (MyMenuHandler::*MenuFunc)(wxCommandEvent&);
typedef tuple<int,wxString,MenuFunc> MenuItem;

class MyMenuHandler{
enum{
    ID_CREATE_PROJECT,
    ID_CREATE_GROUP,
    ID_CREATE_MARKPOINT,
    ID_CREATE_FOV_SINGLE,
    ID_CREATE_FOV_MAPPED,
    ID_COPY_PASTE,
    ID_DELETE,
    ID_SET_REPORT,
    ID_PROPERTY,
    ID_TEST
};
private:

    vector<MenuItem> items;
    void OnCreateProject(wxCommandEvent& event){
        wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
    }
    void OnCreateGroup(wxCommandEvent& event){
        wxMessageBox(wxT("Context"), wxT("创建Group"),wxOK | wxICON_INFORMATION,nullptr);
    }
    void OnCreateMarkPoint(wxCommandEvent& event){
        wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
    }
    void OnCreateFovSingle(wxCommandEvent& event){
        wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
    }
    void OnCreateFovMapped(wxCommandEvent& event){
        wxMessageBox(wxT("Context"), wxT("创建工程"),wxOK | wxICON_INFORMATION,nullptr);
    }
public:
    MyMenuHandler():items({
            make_tuple(ID_CREATE_PROJECT,wxT("创建工程"),&MyMenuHandler::OnCreateProject),
            make_tuple(ID_CREATE_GROUP, wxT("创建Group"),&MyMenuHandler::OnCreateGroup),
            make_tuple(ID_CREATE_MARKPOINT,wxT("创建MarkPoint"),&MyMenuHandler::OnCreateMarkPoint),
            make_tuple(ID_CREATE_FOV_SINGLE,wxT("创建FovSingle"),&MyMenuHandler::OnCreateFovSingle),
            make_tuple(ID_CREATE_FOV_MAPPED,wxT("创建FovMapped"),&MyMenuHandler::OnCreateFovMapped)
    }){}
    vector<MenuItem>& GetHandlers(){
        return items;
    }
};


class MyPopupMenu: public wxMenu {
public:
    enum{
        MENU_ID,MENU_LABEL,MENU_HAMDLE
    };
    MyPopupMenu(wxWindow* parent,MyMenuHandler&& handler):MyPopupMenu(parent,handler){}
    MyPopupMenu(wxWindow* parent,MyMenuHandler& handler):wxMenu(){
        for(auto& item : handler.GetHandlers()){
            Append(get<MENU_ID>(item),get<MENU_LABEL>(item));
            Bind(wxEVT_MENU,get<MENU_HAMDLE>(item),&handler,get<MENU_ID>(item));
        }
        parent->PopupMenu(this);
    }
};

class MyFrame: public wxFrame {
public:
    MyFrame(): wxFrame(NULL, wxID_ANY, "Hello World") {}
    void OnPopupMenu(wxMouseEvent& event){
        MyPopupMenu menu(this,MyMenuHandler{});
    }
    DECLARE_EVENT_TABLE()
};

BEGIN_EVENT_TABLE(MyFrame, wxFrame)
    EVT_RIGHT_DOWN(MyFrame::OnPopupMenu)
END_EVENT_TABLE()

class MyApp: public wxApp {
public:
    virtual bool OnInit(){
        oFrame.Show( true );
        return true;
    }
private:
    MyFrame oFrame;
};
wxIMPLEMENT_APP(MyApp);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,530评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,403评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,120评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,770评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,758评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,649评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,021评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,675评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,931评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,751评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,410评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,004评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,969评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,042评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,493评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,434评论 25 707
  • 用到的组件 1、通过CocoaPods安装 2、第三方类库安装 3、第三方服务 友盟社会化分享组件 友盟用户反馈 ...
    SunnyLeong阅读 14,599评论 1 180
  • 大家好,我叫赵梓言也叫赵添添,今天我从暖气管上摔下来了,在老师的鼓励下我坚持了跳舞,小朋友们还关心我,我很开心。我...
    添添的日记阅读 241评论 1 2
  • 有面子,人就高兴,没面子人就难受。你自己可以不讲求面子,但千万不要以为别人也不讲求面子。多照顾别人的面子,对你的人...
    遇见活在当下的自己阅读 162评论 0 0
  • 春光十色鸟儿鸣,绿波荡漾柳色新,浮光掠影隐凡尘。青青草地惹人疼。三两游人岸边行,人在景中景更浓。置身其中神气清。
    学海无涯苹果姐阅读 206评论 0 0