diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-01-20 18:19:59 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-01-20 18:19:59 -0200 |
commit | 9d29dde68863f207eba2d84746cd38094810932d (patch) | |
tree | 1a5ddc5380983821e7d5d8846e358869882468be /Project/ControlEditorBase.cpp | |
parent | 6f7aebd00330c40007b41aa6e48847695924fe29 (diff) | |
download | PSP.git-9d29dde68863f207eba2d84746cd38094810932d.tar.gz PSP.git-9d29dde68863f207eba2d84746cd38094810932d.tar.xz PSP.git-9d29dde68863f207eba2d84746cd38094810932d.zip |
Button click event trigger implemented
Diffstat (limited to 'Project/ControlEditorBase.cpp')
-rw-r--r-- | Project/ControlEditorBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/ControlEditorBase.cpp b/Project/ControlEditorBase.cpp index e0f7d8b..440069e 100644 --- a/Project/ControlEditorBase.cpp +++ b/Project/ControlEditorBase.cpp @@ -59,7 +59,7 @@ ControlEditorBase::ControlEditorBase(wxWindow* parent, wxWindowID id, const wxSt m_panelControlElements = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), wxTAB_TRAVERSAL); m_panelControlElements->SetBackgroundColour(wxColour(wxT("rgb(255,255,255)"))); - m_auimgr->AddPane(m_panelControlElements, wxAuiPaneInfo().Caption(_("Control elements")).Direction(wxAUI_DOCK_LEFT).Layer(0).Row(0).Position(0).BestSize(200,200).MinSize(200,200).MaxSize(200,200).CaptionVisible(true).MaximizeButton(false).CloseButton(false).MinimizeButton(false).PinButton(false)); + m_auimgr->AddPane(m_panelControlElements, wxAuiPaneInfo().Name(wxT("m_controlElementsPanel")).Caption(_("Control elements")).Direction(wxAUI_DOCK_LEFT).Layer(0).Row(0).Position(0).BestSize(200,200).MinSize(10,10).MaxSize(200,200).CaptionVisible(true).MaximizeButton(false).CloseButton(false).MinimizeButton(true).PinButton(false)); m_panelWorkspace = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1,-1)), wxTAB_TRAVERSAL); |