首页 > 其他分享 >wxWidgets layout

wxWidgets layout

时间:2023-06-15 15:47:44浏览次数:43  
标签:sizerFlex layout wxWidgets void Add new wxID ANY

运行官方示例

直接运行官方工程

打开wxWidgets源码目录中的 samples\layout\layout_vc9.vcproj, 然后 F5 运行
image

复制黏贴官方 demo

使用项目模板创建一个项目, 并将 layout.hlayout.cpp 复制到项目, 改个名字 MyApp.hMyApp.cpp

MyApp.h

#ifndef _MY_APP_H_
#define _MY_APP_H_

#include "enums.h"

#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

class MyApp : public wxApp
{
public:
    bool OnInit() wxOVERRIDE;
};

class MyFrame : public wxFrame
{
public:
    MyFrame();

    void TestProportions(wxCommandEvent& event);
    void TestFlexSizers(wxCommandEvent& event);
    void TestNotebookSizers(wxCommandEvent& event);
    void TestGridBagSizer(wxCommandEvent& event);
    void TestNested(wxCommandEvent& event);
    void TestSetMinimal(wxCommandEvent& event);
    void TestWrap(wxCommandEvent& event);

    void OnAbout(wxCommandEvent& event);
    void OnQuit(wxCommandEvent& event);

private:
    wxDECLARE_EVENT_TABLE();
};

// a frame showing the box sizer proportions
class MyProportionsFrame : public wxFrame
{
public:
    MyProportionsFrame(wxFrame* parent);

protected:
    void UpdateProportions();

    void OnProportionChanged(wxSpinEvent& event);
    void OnProportionUpdated(wxCommandEvent& event);

    wxSpinCtrl* m_spins[3]; // size can be changed without changing anything else
    wxSizer* m_sizer;
};

// a frame using flex sizers for layout
class MyFlexSizerFrame : public wxFrame
{
public:
    MyFlexSizerFrame(wxFrame* parent);

private:
    void InitFlexSizer(wxFlexGridSizer* sizer, wxWindow* parent);
};


// a dialog using notebook and sizers for layout
class MyNotebookWithSizerDialog : public wxDialog
{
public:
    MyNotebookWithSizerDialog(wxWindow* parent, const wxString& title);
};


// a frame using wxGridBagSizer for layout
class MyGridBagSizerFrame : public wxFrame
{
public:
    MyGridBagSizerFrame(wxFrame* parent);

    void OnHideBtn(wxCommandEvent&);
    void OnShowBtn(wxCommandEvent&);
    void OnMoveBtn(wxCommandEvent&);

private:
    wxGridBagSizer* m_gbs;
    wxPanel* m_panel;
    wxButton* m_hideBtn;
    wxButton* m_showBtn;
    wxTextCtrl* m_hideTxt;

    wxButton* m_moveBtn1;
    wxButton* m_moveBtn2;
    wxGBPosition        m_lastPos;

    wxDECLARE_EVENT_TABLE();
};


// a frame for testing simple setting of "default size"
class MySimpleSizerFrame : public wxFrame
{
public:
    MySimpleSizerFrame(wxFrame* parent);

    void OnSetSmallSize(wxCommandEvent& event);
    void OnSetBigSize(wxCommandEvent& event);

private:
    wxTextCtrl* m_target;

    wxDECLARE_EVENT_TABLE();
};


// a frame for testing simple setting of a frame containing
// a sizer containing a panel containing a sizer containing
// controls
class MyNestedSizerFrame : public wxFrame
{
public:
    MyNestedSizerFrame(wxFrame* parent);


private:
    wxTextCtrl* m_target;
};

// a frame with several wrapping sizers

class MyWrapSizerFrame : public wxFrame
{
public:
    MyWrapSizerFrame(wxFrame* parent);

private:
    void OnAddCheckbox(wxCommandEvent& event);
    void OnRemoveCheckbox(wxCommandEvent& event);

    void DoAddCheckbox();

    wxWindow* m_checkboxParent;
    wxSizer* m_wrapSizer;

    wxDECLARE_EVENT_TABLE();
};

// controls and menu constants
enum
{
    LAYOUT_TEST_SIZER = 101,
    LAYOUT_TEST_NB_SIZER,
    LAYOUT_TEST_GB_SIZER,
    LAYOUT_TEST_PROPORTIONS,
    LAYOUT_TEST_SET_MINIMAL,
    LAYOUT_TEST_NESTED,
    LAYOUT_TEST_WRAP,
    LAYOUT_QUIT = wxID_EXIT,
    LAYOUT_ABOUT = wxID_ABOUT
};



wxDECLARE_APP(MyApp);

#endif // !_MY_APP_H_

MyApp.cpp

// #define WXUSINGDLL
// #define __WXMSW__
// #define _UNICODE

#include <wx/log.h>
#include <wx/sizer.h>
#include <wx/gbsizer.h>
#include <wx/statline.h>
#include <wx/notebook.h>
#include <wx/spinctrl.h>
#include <wx/wrapsizer.h>
#include <wx/generic/stattextg.h>

#include <wx/msw/stattext.h> // 注意这里


#ifndef wxHAS_IMAGES_IN_RESOURCES
#include "sample.xpm"
#endif

#include "MyApp.h"
#include "MyLogWindow.h"


bool MyApp::OnInit()
{
    MyFrame* frame = new MyFrame();

    // MyLogWindow 参考: https://www.cnblogs.com/khlbat/p/17480356.html
    MyLogWindow* log_window_m = new MyLogWindow(frame);
    log_window_m->Show(true);

    // MyFrame* frame = new MyFrame();
    // frame->SetSize(wxSize(800, 600));
    frame->Center();
    frame->Show(true);

    return true;
}

// ----------------------------------------------------------------------------
// MyFrame
// ----------------------------------------------------------------------------

wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(LAYOUT_ABOUT, MyFrame::OnAbout)
EVT_MENU(LAYOUT_QUIT, MyFrame::OnQuit)

EVT_MENU(LAYOUT_TEST_PROPORTIONS, MyFrame::TestProportions)
EVT_MENU(LAYOUT_TEST_SIZER, MyFrame::TestFlexSizers)
EVT_MENU(LAYOUT_TEST_NB_SIZER, MyFrame::TestNotebookSizers)
EVT_MENU(LAYOUT_TEST_GB_SIZER, MyFrame::TestGridBagSizer)
EVT_MENU(LAYOUT_TEST_SET_MINIMAL, MyFrame::TestSetMinimal)
EVT_MENU(LAYOUT_TEST_NESTED, MyFrame::TestNested)
EVT_MENU(LAYOUT_TEST_WRAP, MyFrame::TestWrap)
wxEND_EVENT_TABLE()

// Define my frame constructor
MyFrame::MyFrame()
    : wxFrame(NULL, wxID_ANY, "wxWidgets Layout Demo")
{
    SetIcon(wxICON(sample));

    // Make a menubar
    wxMenu* file_menu = new wxMenu;

    file_menu->Append(LAYOUT_TEST_PROPORTIONS, "&Proportions demo...\tF1");
    file_menu->Append(LAYOUT_TEST_SIZER, "Test wx&FlexSizer...\tF2");
    file_menu->Append(LAYOUT_TEST_NB_SIZER, "Test &notebook sizers...\tF3");
    file_menu->Append(LAYOUT_TEST_GB_SIZER, "Test &gridbag sizer...\tF4");
    file_menu->Append(LAYOUT_TEST_SET_MINIMAL, "Test Set&ItemMinSize...\tF5");
    file_menu->Append(LAYOUT_TEST_NESTED, "Test nested sizer in a wxPanel...\tF6");
    file_menu->Append(LAYOUT_TEST_WRAP, "Test wrap sizers...\tF7");

    file_menu->AppendSeparator();
    file_menu->Append(LAYOUT_QUIT, "E&xit", "Quit program");

    wxMenu* help_menu = new wxMenu;
    help_menu->Append(LAYOUT_ABOUT, "&About", "About layout demo...");

    wxMenuBar* menu_bar = new wxMenuBar;

    menu_bar->Append(file_menu, "&File");
    menu_bar->Append(help_menu, "&Help");

    // Associate the menu bar with the frame
    SetMenuBar(menu_bar);

#if wxUSE_STATUSBAR
    CreateStatusBar(2);
    SetStatusText("wxWidgets layout demo");
#endif // wxUSE_STATUSBAR

    wxPanel* p = new wxPanel(this, wxID_ANY);

    // we want to get a dialog that is stretchable because it
    // has a text ctrl in the middle. at the bottom, we have
    // two buttons which.

    wxBoxSizer* topsizer = new wxBoxSizer(wxVERTICAL);

    // 1) top: create wxStaticText with minimum size equal to its default size
    topsizer->Add(
        new wxStaticText(p, wxID_ANY, wxT("An explanation (wxALIGN_RIGHT).")),
        wxSizerFlags().Align(wxALIGN_RIGHT).Border(wxALL & ~wxBOTTOM, 5));
    topsizer->Add(
        new wxStaticText(p, wxID_ANY, "An explanation (wxALIGN_LEFT)."),
        wxSizerFlags().Align(wxALIGN_LEFT).Border(wxALL & ~wxBOTTOM, 5));
    topsizer->Add(
        new wxStaticText(p, wxID_ANY, "An explanation (wxALIGN_CENTRE_HORIZONTAL)."),
        wxSizerFlags().Align(wxALIGN_CENTRE_HORIZONTAL).Border(wxALL & ~wxBOTTOM, 5));

    // 2) top: create wxTextCtrl with minimum size (100x60)
    topsizer->Add(
        new wxTextCtrl(p, wxID_ANY, "My text (wxEXPAND).", wxDefaultPosition, wxSize(100, 60), wxTE_MULTILINE),
        wxSizerFlags(1).Expand().Border(wxALL, 5));

    // 2.5) Gratuitous test of wxStaticBoxSizers
    wxBoxSizer* statsizer = new wxStaticBoxSizer(
        new wxStaticBox(p, wxID_ANY, "A wxStaticBoxSizer"), wxVERTICAL);
    statsizer->Add(
        new wxStaticText(p, wxID_ANY, "And some TEXT inside it"),
        wxSizerFlags().Border(wxALL, 30));
    topsizer->Add(
        statsizer,
        wxSizerFlags(1).Expand().Border(wxALL, 10));

    // 2.7) And a test of wxGridSizer
    wxGridSizer* gridsizer = new wxGridSizer(2, 5, 5);
    gridsizer->Add(new wxStaticText(p, wxID_ANY, "Label"),
        wxSizerFlags().Align(wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL));
    gridsizer->Add(new wxTextCtrl(p, wxID_ANY, "Grid sizer demo"),
        wxSizerFlags(1).Align(wxGROW | wxALIGN_CENTER_VERTICAL));
    gridsizer->Add(new wxStaticText(p, wxID_ANY, "Another label"),
        wxSizerFlags().Align(wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL));
    gridsizer->Add(new wxTextCtrl(p, wxID_ANY, "More text"),
        wxSizerFlags(1).Align(wxGROW | wxALIGN_CENTER_VERTICAL));
    gridsizer->Add(new wxStaticText(p, wxID_ANY, "Final label"),
        wxSizerFlags().Align(wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL));
    gridsizer->Add(new wxTextCtrl(p, wxID_ANY, "And yet more text"),
        wxSizerFlags().Align(wxGROW | wxALIGN_CENTER_VERTICAL));
    topsizer->Add(
        gridsizer,
        wxSizerFlags().Proportion(1).Expand().Border(wxALL, 10));


#if wxUSE_STATLINE
    // 3) middle: create wxStaticLine with minimum size (3x3)
    topsizer->Add(
        new wxStaticLine(p, wxID_ANY, wxDefaultPosition, wxSize(3, 3), wxHORIZONTAL),
        wxSizerFlags().Expand());
#endif // wxUSE_STATLINE


    // 4) bottom: create two centred wxButtons
    wxBoxSizer* button_box = new wxBoxSizer(wxHORIZONTAL);
    button_box->Add(
        new wxButton(p, wxID_ANY, "Two buttons in a box"),
        wxSizerFlags().Border(wxALL, 7));
    button_box->Add(
        new wxButton(p, wxID_ANY, "(wxCENTER)"),
        wxSizerFlags().Border(wxALL, 7));

    topsizer->Add(button_box, wxSizerFlags().Center());

    p->SetSizer(topsizer);

    // don't allow frame to get smaller than what the sizers tell it and also set
    // the initial size as calculated by the sizers
    topsizer->SetSizeHints(this);
}

void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
{
    Close(true);
}

void MyFrame::TestProportions(wxCommandEvent& WXUNUSED(event))
{
    (new MyProportionsFrame(this))->Show();
}

void MyFrame::TestFlexSizers(wxCommandEvent& WXUNUSED(event))
{
    (new MyFlexSizerFrame(this))->Show();
}

void MyFrame::TestNotebookSizers(wxCommandEvent& WXUNUSED(event))
{
    MyNotebookWithSizerDialog dialog(this, "Notebook Sizer Test Dialog");

    dialog.ShowModal();
}

void MyFrame::TestSetMinimal(wxCommandEvent& WXUNUSED(event))
{
    (new MySimpleSizerFrame(this))->Show();
}

void MyFrame::TestNested(wxCommandEvent& WXUNUSED(event))
{
    (new MyNestedSizerFrame(this))->Show();
}

void MyFrame::TestWrap(wxCommandEvent& WXUNUSED(event))
{
    (new MyWrapSizerFrame(this))->Show();
}


void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    (void)wxMessageBox("wxWidgets GUI library layout demo\n",
        "About Layout Demo", wxOK | wxICON_INFORMATION);
}

void MyFrame::TestGridBagSizer(wxCommandEvent& WXUNUSED(event))
{
    (new MyGridBagSizerFrame(this))->Show();
}

// ----------------------------------------------------------------------------
// MyProportionsFrame
// ----------------------------------------------------------------------------

MyProportionsFrame::MyProportionsFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "Box Sizer Proportions Demo")
{
    size_t n;

    // create the controls
    wxPanel* panel = new wxPanel(this, wxID_ANY);
    for (n = 0; n < WXSIZEOF(m_spins); n++)
    {
        m_spins[n] = new wxSpinCtrl(panel);
        m_spins[n]->SetValue(n);
    }

    // lay them out
    m_sizer = new wxStaticBoxSizer(wxHORIZONTAL, panel,
        "Try changing elements proportions and resizing the window");
    for (n = 0; n < WXSIZEOF(m_spins); n++)
        m_sizer->Add(m_spins[n], wxSizerFlags().Border());

    // put everything together
    panel->SetSizer(m_sizer);
    wxSizer* sizerTop = new wxBoxSizer(wxVERTICAL);
    sizerTop->Add(panel, wxSizerFlags(1).Expand().Border());
    UpdateProportions();
    SetSizerAndFit(sizerTop);

    // and connect the events
    Bind(wxEVT_TEXT, &MyProportionsFrame::OnProportionUpdated, this);
    Bind(wxEVT_SPINCTRL, &MyProportionsFrame::OnProportionChanged, this);
}

void MyProportionsFrame::UpdateProportions()
{
    for (size_t n = 0; n < WXSIZEOF(m_spins); n++)
    {
        m_sizer->GetItem(n)->SetProportion(m_spins[n]->GetValue());
    }

    m_sizer->Layout();
}

void MyProportionsFrame::OnProportionUpdated(wxCommandEvent& WXUNUSED(event))
{
    UpdateProportions();
}

void MyProportionsFrame::OnProportionChanged(wxSpinEvent& WXUNUSED(event))
{
    UpdateProportions();
}

// ----------------------------------------------------------------------------
//  MyFlexSizerFrame
// ----------------------------------------------------------------------------

void MyFlexSizerFrame::InitFlexSizer(wxFlexGridSizer* sizer, wxWindow* parent)
{
    for (int i = 0; i < 3; i++)
    {
        for (int j = 0; j < 3; j++)
        {
            wxWindow* const cell = new wxGenericStaticText
            (
                parent,
                wxID_ANY,
                wxString::Format("(%d, %d)",
                    i + 1, j + 1)
            );
            if ((i + j) % 2)
                cell->SetBackgroundColour(*wxLIGHT_GREY);
            sizer->Add(cell, 0, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 3);
        }
    }
}

MyFlexSizerFrame::MyFlexSizerFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "Flex Sizer Test Frame")
{
    wxFlexGridSizer* sizerFlex;
    wxPanel* p = new wxPanel(this, wxID_ANY);

    // construct the first column
    wxSizer* sizerCol1 = new wxBoxSizer(wxVERTICAL);
    sizerCol1->Add(new wxStaticText(p, wxID_ANY, "Ungrowable:"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerCol1->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol1->Add(new wxStaticText(p, wxID_ANY, "Growable middle column:"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(1);
    sizerCol1->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol1->Add(new wxStaticText(p, wxID_ANY, "Growable middle row:"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableRow(1);
    sizerCol1->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol1->Add(new wxStaticText(p, wxID_ANY, "All growable columns:"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(0, 1);
    sizerFlex->AddGrowableCol(1, 2);
    sizerFlex->AddGrowableCol(2, 3);
    sizerCol1->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    // the second one
    wxSizer* sizerCol2 = new wxBoxSizer(wxVERTICAL);
    sizerCol2->Add(new wxStaticText(p, wxID_ANY, "Growable middle row and column:"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(1);
    sizerFlex->AddGrowableRow(1);
    sizerCol2->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol2->Add(new wxStaticText(p, wxID_ANY, "Same with horz flex direction"), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(1);
    sizerFlex->AddGrowableRow(1);
    sizerFlex->SetFlexibleDirection(wxHORIZONTAL);
    sizerCol2->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol2->Add(new wxStaticText(p, wxID_ANY, "Same with grow mode == \"none\""), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(1);
    sizerFlex->AddGrowableRow(1);
    sizerFlex->SetFlexibleDirection(wxHORIZONTAL);
    sizerFlex->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_NONE);
    sizerCol2->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    sizerCol2->Add(new wxStaticText(p, wxID_ANY, "Same with grow mode == \"all\""), 0, wxCENTER | wxTOP, 20);
    sizerFlex = new wxFlexGridSizer(3, 3, wxSize(5, 5));
    InitFlexSizer(sizerFlex, p);
    sizerFlex->AddGrowableCol(1);
    sizerFlex->AddGrowableRow(1);
    sizerFlex->SetFlexibleDirection(wxHORIZONTAL);
    sizerFlex->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_ALL);
    sizerCol2->Add(sizerFlex, 1, wxALL | wxEXPAND, 10);

    // add both columns to grid sizer
    wxGridSizer* sizerTop = new wxGridSizer(2, 0, 20);
    sizerTop->Add(sizerCol1, 1, wxEXPAND);
    sizerTop->Add(sizerCol2, 1, wxEXPAND);

    p->SetSizer(sizerTop);
    sizerTop->SetSizeHints(this);
}

// ----------------------------------------------------------------------------
// MyNotebookWithSizerDialog
// ----------------------------------------------------------------------------

MyNotebookWithSizerDialog::MyNotebookWithSizerDialog(wxWindow* parent, const wxString& title)
    : wxDialog(parent, wxID_ANY, wxString(title),
        wxDefaultPosition, wxDefaultSize,
        wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{
    // Begin with first hierarchy: a notebook at the top
    // and OK button at the bottom.

    wxBoxSizer* topsizer = new wxBoxSizer(wxVERTICAL);

    wxNotebook* notebook = new wxNotebook(this, wxID_ANY);
    topsizer->Add(notebook, 1, wxGROW);

    wxButton* button = new wxButton(this, wxID_OK, "OK");
    topsizer->Add(button, 0, wxALIGN_RIGHT | wxALL, 10);

    // First page: one big text ctrl
    wxTextCtrl* multi = new wxTextCtrl(notebook, wxID_ANY, "TextCtrl.", wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE);
    notebook->AddPage(multi, "Page One");

    // Second page: a text ctrl and a button
    wxPanel* panel = new wxPanel(notebook, wxID_ANY);
    notebook->AddPage(panel, "Page Two");

    wxSizer* panelsizer = new wxBoxSizer(wxVERTICAL);

    wxTextCtrl* text = new wxTextCtrl(panel, wxID_ANY, "TextLine 1.", wxDefaultPosition, wxSize(250, wxDefaultCoord));
    panelsizer->Add(text, 0, wxGROW | wxALL, 30);
    text = new wxTextCtrl(panel, wxID_ANY, "TextLine 2.", wxDefaultPosition, wxSize(250, wxDefaultCoord));
    panelsizer->Add(text, 0, wxGROW | wxALL, 30);
    wxButton* button2 = new wxButton(panel, wxID_ANY, "Hallo");
    panelsizer->Add(button2, 0, wxALIGN_RIGHT | wxLEFT | wxRIGHT | wxBOTTOM, 30);

    panel->SetSizer(panelsizer);

    // Tell dialog to use sizer
    SetSizerAndFit(topsizer);
}

// ----------------------------------------------------------------------------
// MyGridBagSizerFrame
// ----------------------------------------------------------------------------

// some simple macros to help make the sample code below more clear
#define TEXTCTRL(text)   new wxTextCtrl(p, wxID_ANY, text)
#define MLTEXTCTRL(text) new wxTextCtrl(p, wxID_ANY, text, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE)
#define POS(r, c)        wxGBPosition(r,c)
#define SPAN(r, c)       wxGBSpan(r,c)

wxString GetGbsDescription()
{
    return "\
    The wxGridBagSizer is similar to the wxFlexGridSizer except the items are explicitly positioned\n\
    in a virtual cell of the layout grid, and column or row spanning is allowed.  For example, this\n\
    static text is positioned at (0,0) and it spans 7 columns.";
}


// Some IDs
enum {
    GBS_HIDE_BTN = 1212,
    GBS_SHOW_BTN,
    GBS_MOVE_BTN1,
    GBS_MOVE_BTN2,

    GBS_MAX
};


wxBEGIN_EVENT_TABLE(MyGridBagSizerFrame, wxFrame)
EVT_BUTTON(GBS_HIDE_BTN, MyGridBagSizerFrame::OnHideBtn)
EVT_BUTTON(GBS_SHOW_BTN, MyGridBagSizerFrame::OnShowBtn)
EVT_BUTTON(GBS_MOVE_BTN1, MyGridBagSizerFrame::OnMoveBtn)
EVT_BUTTON(GBS_MOVE_BTN2, MyGridBagSizerFrame::OnMoveBtn)
wxEND_EVENT_TABLE()


MyGridBagSizerFrame::MyGridBagSizerFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "wxGridBagSizer Test Frame")
{
    wxPanel* p = new wxPanel(this, wxID_ANY);
    m_panel = p;
    m_gbs = new wxGridBagSizer();


    m_gbs->Add(new wxStaticText(p, wxID_ANY, GetGbsDescription()),
        POS(0, 0), SPAN(1, 7),
        wxALIGN_CENTER | wxALL, 5);

    m_gbs->Add(TEXTCTRL("pos(1,0)"), POS(1, 0));
    m_gbs->Add(TEXTCTRL("pos(1,1)"), POS(1, 1));
    m_gbs->Add(TEXTCTRL("pos(2,0)"), POS(2, 0));
    m_gbs->Add(TEXTCTRL("pos(2,1)"), POS(2, 1));
    m_gbs->Add(MLTEXTCTRL("pos(3,2), span(1,2)\nthis row and col are growable"),
        POS(3, 2), SPAN(1, 2), wxEXPAND);
    m_gbs->Add(MLTEXTCTRL("pos(4,3)\nspan(3,1)"),
        POS(4, 3), SPAN(3, 1), wxEXPAND);
    m_gbs->Add(TEXTCTRL("pos(5,4)"), POS(5, 4), wxDefaultSpan, wxEXPAND);
    m_gbs->Add(TEXTCTRL("pos(6,5)"), POS(6, 5), wxDefaultSpan, wxEXPAND);
    m_gbs->Add(TEXTCTRL("pos(7,6)"), POS(7, 6));

    //m_gbs->Add( TEXTCTRL("bad position"), POS(4,3) );  // Test for assert
    //m_gbs->Add( TEXTCTRL("bad position"), POS(5,3) );  // Test for assert


    m_moveBtn1 = new wxButton(p, GBS_MOVE_BTN1, "Move this to (3,6)");
    m_moveBtn2 = new wxButton(p, GBS_MOVE_BTN2, "Move this to (3,6)");
    m_gbs->Add(m_moveBtn1, POS(10, 2));
    m_gbs->Add(m_moveBtn2, POS(10, 3));

    m_hideBtn = new wxButton(p, GBS_HIDE_BTN, "Hide this item -->");
    m_gbs->Add(m_hideBtn, POS(12, 3));

    m_hideTxt = new wxTextCtrl(p, wxID_ANY, "pos(12,4), size(150, wxDefaultCoord)",
        wxDefaultPosition, wxSize(150, wxDefaultCoord));
    m_gbs->Add(m_hideTxt, POS(12, 4));

    m_showBtn = new wxButton(p, GBS_SHOW_BTN, "<-- Show it again");
    m_gbs->Add(m_showBtn, POS(12, 5));
    m_showBtn->Disable();

    m_gbs->Add(10, 10, POS(14, 0));

    m_gbs->AddGrowableRow(3);
    m_gbs->AddGrowableCol(2);

    p->SetSizerAndFit(m_gbs);
    SetClientSize(p->GetSize());
}


void MyGridBagSizerFrame::OnHideBtn(wxCommandEvent&)
{
    m_gbs->Hide(m_hideTxt);
    m_hideBtn->Disable();
    m_showBtn->Enable();
    m_gbs->Layout();
}

void MyGridBagSizerFrame::OnShowBtn(wxCommandEvent&)
{
    m_gbs->Show(m_hideTxt);
    m_hideBtn->Enable();
    m_showBtn->Disable();
    m_gbs->Layout();
}


void MyGridBagSizerFrame::OnMoveBtn(wxCommandEvent& event)
{
    wxButton* btn = (wxButton*)event.GetEventObject();
    wxGBPosition curPos = m_gbs->GetItemPosition(btn);

    // if it's already at the "other" spot then move it back
    if (curPos == wxGBPosition(3, 6))
    {
        m_gbs->SetItemPosition(btn, m_lastPos);
        btn->SetLabel("Move this to (3,6)");
    }
    else
    {
        if (m_gbs->CheckForIntersection(wxGBPosition(3, 6), wxGBSpan(1, 1)))
            wxMessageBox(
                "wxGridBagSizer will not allow items to be in the same cell as\n\
another item, so this operation will fail.  You will also get an assert\n\
when compiled in debug mode.", "Warning", wxOK | wxICON_INFORMATION);

        if (m_gbs->SetItemPosition(btn, wxGBPosition(3, 6)))
        {
            m_lastPos = curPos;
            btn->SetLabel("Move it back");
        }
    }
    m_gbs->Layout();
}

// ----------------------------------------------------------------------------
// MySimpleSizerFrame
// ----------------------------------------------------------------------------

// Some IDs
enum {
    ID_SET_SMALL = 1300,
    ID_SET_BIG
};

wxBEGIN_EVENT_TABLE(MySimpleSizerFrame, wxFrame)
EVT_MENU(ID_SET_SMALL, MySimpleSizerFrame::OnSetSmallSize)
EVT_MENU(ID_SET_BIG, MySimpleSizerFrame::OnSetBigSize)
wxEND_EVENT_TABLE()

MySimpleSizerFrame::MySimpleSizerFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "Simple Sizer Test Frame")
{
    wxMenu* menu = new wxMenu;

    menu->Append(ID_SET_SMALL, "Make text control small\tF4");
    menu->Append(ID_SET_BIG, "Make text control big\tF5");

    wxMenuBar* menu_bar = new wxMenuBar;
    menu_bar->Append(menu, "&File");

    SetMenuBar(menu_bar);

    wxBoxSizer* main_sizer = new wxBoxSizer(wxHORIZONTAL);

    m_target = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(80, wxDefaultCoord));
    main_sizer->Add(m_target, 1, wxALL, 5);

    main_sizer->Add(new wxStaticText(this, wxID_ANY, "Set alternating sizes using F4 and F5"), 0, wxALL, 5);

    SetSizer(main_sizer);

    Layout();
    GetSizer()->Fit(this);
}

void MySimpleSizerFrame::OnSetSmallSize(wxCommandEvent& WXUNUSED(event))
{
    GetSizer()->SetItemMinSize(m_target, 40, -1);
    Layout();
    GetSizer()->Fit(this);
}

void MySimpleSizerFrame::OnSetBigSize(wxCommandEvent& WXUNUSED(event))
{
    GetSizer()->SetItemMinSize(m_target, 140, -1);
    Layout();
    GetSizer()->Fit(this);
}


// ----------------------------------------------------------------------------
// MyNestedSizerFrame
// ----------------------------------------------------------------------------


MyNestedSizerFrame::MyNestedSizerFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "Nested Sizer Test Frame")
{
    wxMenu* menu = new wxMenu;

    menu->Append(wxID_ABOUT, "Do nothing");

    wxMenuBar* menu_bar = new wxMenuBar;
    menu_bar->Append(menu, "&File");

    SetMenuBar(menu_bar);

    wxBoxSizer* main_sizer = new wxBoxSizer(wxVERTICAL);

    main_sizer->Add(new wxStaticText(this, -1, "Hello outside"), 0, wxALIGN_CENTER);
    main_sizer->Add(new wxStaticText(this, -1, "Hello outside"), 0, wxALIGN_CENTER);
    main_sizer->Add(new wxStaticText(this, -1, "Hello outside"), 0, wxALIGN_CENTER);
    main_sizer->Add(new wxStaticText(this, -1, "Hello outside"), 0, wxALIGN_CENTER);

    wxPanel* panel = new wxPanel(this, -1, wxDefaultPosition, wxDefaultSize,
        wxTAB_TRAVERSAL | wxSUNKEN_BORDER);
    main_sizer->Add(panel, 0, wxALIGN_CENTER);
    wxBoxSizer* panel_sizer = new wxBoxSizer(wxVERTICAL);
    panel->SetSizer(panel_sizer);
    panel_sizer->Add(new wxStaticText(panel, -1, "Hello inside"));
    panel_sizer->Add(new wxStaticText(panel, -1, "Hello inside"));
    panel_sizer->Add(new wxStaticText(panel, -1, "Hello inside"));

    main_sizer->Add(new wxStaticText(this, -1, "Hello outside"), 0, wxALIGN_CENTER);

    m_target = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(80, wxDefaultCoord));
    main_sizer->Add(m_target, 1, wxALL | wxGROW, 5);

    SetSizerAndFit(main_sizer);
}


// ----------------------------------------------------------------------------
// MyWrapSizerFrame
// ----------------------------------------------------------------------------

wxBEGIN_EVENT_TABLE(MyWrapSizerFrame, wxFrame)
EVT_MENU(wxID_ADD, MyWrapSizerFrame::OnAddCheckbox)
EVT_MENU(wxID_REMOVE, MyWrapSizerFrame::OnRemoveCheckbox)
wxEND_EVENT_TABLE()

MyWrapSizerFrame::MyWrapSizerFrame(wxFrame* parent)
    : wxFrame(parent, wxID_ANY, "Wrap Sizer Test Frame",
        wxDefaultPosition, wxSize(200, -1))
{
    wxMenu* menu = new wxMenu;

    menu->Append(wxID_ADD, "&Add a checkbox\tCtrl-+");
    menu->Append(wxID_REMOVE, "&Remove a checkbox\tCtrl--");

    wxMenuBar* menu_bar = new wxMenuBar;
    menu_bar->Append(menu, "&Wrap sizer");

    SetMenuBar(menu_bar);

    wxBoxSizer* root = new wxBoxSizer(wxVERTICAL);

    wxStaticBoxSizer* topSizer = new wxStaticBoxSizer(wxVERTICAL, this, "Wrapping check-boxes");
    m_checkboxParent = topSizer->GetStaticBox();
    m_wrapSizer = new wxWrapSizer(wxHORIZONTAL);

    // A number of checkboxes inside a wrap sizer
    for (int i = 0; i < 6; i++)
        DoAddCheckbox();

    topSizer->Add(m_wrapSizer, wxSizerFlags(1).Expand());
    root->Add(topSizer, wxSizerFlags().Expand().Border());

    // A shaped item inside a box sizer
    wxSizer* bottomSizer = new wxStaticBoxSizer(wxVERTICAL, this, "With wxSHAPED item");
    wxSizer* horzBoxSizer = new wxBoxSizer(wxHORIZONTAL);
    bottomSizer->Add(horzBoxSizer, 100, wxEXPAND);
    horzBoxSizer->Add(new wxListBox(this, wxID_ANY, wxPoint(0, 0), wxSize(70, 70)), 0, wxEXPAND | wxSHAPED);
    horzBoxSizer->Add(10, 10);
    horzBoxSizer->Add(new wxCheckBox(this, wxID_ANY, "A much longer option..."), 100, 0, 5);

    root->Add(bottomSizer, 1, wxEXPAND | wxALL, 5);

    // Set sizer for window
    SetSizerAndFit(root);
}

void MyWrapSizerFrame::DoAddCheckbox()
{
    m_wrapSizer->Add(new wxCheckBox
    (
        m_checkboxParent,
        wxID_ANY,
        wxString::Format
        (
            "Option %d",
            (int)m_wrapSizer->GetItemCount() + 1
        )
    ),
        wxSizerFlags().Centre().Border());
}

void MyWrapSizerFrame::OnAddCheckbox(wxCommandEvent& WXUNUSED(event))
{
    DoAddCheckbox();
    Layout();
}

void MyWrapSizerFrame::OnRemoveCheckbox(wxCommandEvent& WXUNUSED(event))
{
    if (m_wrapSizer->IsEmpty())
    {
        wxLogStatus(this, "No more checkboxes to remove.");
        return;
    }

    delete m_wrapSizer->GetItem(m_wrapSizer->GetItemCount() - 1)->GetWindow();
    Layout();
}


wxIMPLEMENT_APP(MyApp);

此时可以运行, 蚕食没有图标, 把 wxWidgets 目录下的 samples\sample.rcsamples\sample.ico 复制到项目目录, 并将 sample.rc 添加到项目中

image

此时运行就和官方 demo 一样了

image

标签:sizerFlex,layout,wxWidgets,void,Add,new,wxID,ANY
From: https://www.cnblogs.com/khlbat/p/17480679.html

相关文章

  • ConstraintLayout解析
    @目录1.前言2.了解ConstraintLayout3.基本用法3.1看一个布局3.2再看一个布局1.前言你是不是一直不敢用ConstraintLayout,是以为属性太多太复杂?你心理上的惰性,畏惧它。它其实很好用很强大,如果要用就需要一个入门的敲门砖2.了解ConstraintLayout特点:简化操作、解决布局嵌套、自......
  • android基础-ConstraintLayout
    资料约束布局ConstraintLayout看这一篇就够了ConstraintLayout布局居中|居右实现。ConstraintLayout中TextView文字超过屏幕问题ConstraintLayoutConstraintLayout字体超出屏幕解决方法约束布局ConstraintLayout看这一篇就够了具体的方法layout_constraintLeft_toLeftOflayout_c......
  • 利用Flutter的LayoutBuilder、BoxConstraints创建自适应布局控件
    简介在Flutter中,LayoutBuilder是一个Widget,用于构建一个包含父组件约束的子组件。它可以获取父组件的约束信息并将其传递给子组件进行布局。LayoutBuilder的主要作用是让子组件根据父组件的大小进行自适应布局。LayoutBuilder的作用是在子控件构建之前获取父级容器的大小,并将其传......
  • Layout()方法用于布局管理器的更新,解决panel刷新后其中控件挤作一坨的问题
    在wxPython中,Layout()方法用于布局管理器的更新。它会告诉布局管理器重新计算和调整子控件的大小和位置。一般来说,当您:-添加或删除子控件-隐藏或显示子控件-改变子控件的大小-改变容器的大小这些情况下,您需要调用Layout()方法,告诉布局管理器进行重新布局。例如,在BoxSiz......
  • log4j2<PatternLayout>子节点浅析
    log4j2<PatternLayout>子节点浅析 首先声明本文并不教您怎么用log4j2,仅仅只对<PatternLayout>子节点进行说明。要看懂本文需要对log4j2有一定的了解,至少能够知道<Appenders>、<Layouts>和<Loggers>的区别。本文主要参考对象为log4j2官方手册:《ApacheLog4j2v.2.1User'sGuide......
  • No tab content FrameLayout found for id xxxxxxx
     android4.4自己加上的 android-support-v4.jar使用以下布局会报NotabcontentFrameLayoutfoundforidxxxxxxx我老版本的 android-support-v4.jar 差距很大  用FragmentTabHost+FragmentActivity实现了微博的底部Tab,layout布局如下:  1.<?x......
  • Qt之窗体布局(QFormLayout)
    窗体布局管理器QFormLayout用来管理表单的输入部件以及与它们相关的标签,窗体布局管理器将它的子部件分为两列,左边是一些标签,右边是一些输入部件。使用案例如下:#include"main_window.h"MainWindow::MainWindow(QWidget*parent):QWidget(parent){QLineEdit*pUse......
  • Qt之格栅布局(QGridLayout)
    QGridLayout是Qt框架中的一个布局管理器类,用于将子部件按照网格方式排列。它是QLayout类的子类,可在水平和垂直方向上自动调整和布局子部件的位置和大小。以下是QGridLayout的一些特点和用法:1.网格布局:QGridLayout将子部件按照网格形式排列,每个子部件占据一个单元格。可以根据需......
  • Qt之水平布局(QHBoxLayout)
    QHBoxLayout是Qt框架中的一个布局管理器类,用于水平排列子部件。它是QLayout类的子类,用于在水平方向上自动调整和布局子部件的位置和大小。以下是QHBoxLayout的一些特点和用法:1.水平布局:QHBoxLayout将子部件按照水平方向从左到右进行布局。它可以自动调整子部件的位置和大小,使它......
  • DrawerLayout配合WindowManager在service中使用
    1.原理理解抽屉组件依附在WindowManager上,WindowManager大于DrawerLayout,因此DrawerLayout抽出和放回是基于WindowManager已经展示出来的情况。2.布局文件<?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/androi......