Program: bbtk
Module: $RCSfile: bbtkWxGUIPackageBrowser2.cxx,v $
Language: C++
- Date: $Date: 2010/10/11 06:30:33 $
- Version: $Revision: 1.24 $
+ Date: $Date: 2012/05/23 13:59:56 $
+ Version: $Revision: 1.25 $
=========================================================================*/
/* ---------------------------------------------------------------------
mBoxList->SetUser(this);
mBoxList->SetBackgroundColour(*wxWHITE);
+
+// JGRR & CM DISABLED CLOSE BUTTON
m_mgr.AddPane(mBoxList,
wxAuiPaneInfo().Name(wxT("BoxList"))
.Caption(wxT("Black Boxes"))
.MaximizeButton(true)
.Center()
.MinSize(wxSize(100,100))
+ .CloseButton(false)
);
// sizer->Add(mBoxList,5,wxGROW);
mBoxInfo = new WxGUIBlackBoxInfo(this);
// sizer->Add(mBoxInfo,3,wxGROW);
+// JGRR & CM DISABLED CLOSE BUTTON
m_mgr.AddPane(mBoxInfo,
wxAuiPaneInfo().Name(wxT("Box"))
.Caption(wxT(""))
.MaximizeButton(true)
.Bottom()
.MinSize(wxSize(100,300))
+ .CloseButton(false)
);
wxPanel* filters = new wxPanel(this,-1);
filters->SetSizer(fsizer);
+// JGRR & CM DISABLED CLOSE BUTTON
m_mgr.AddPane(filters,
wxAuiPaneInfo().Name(wxT("Filter"))
.Caption(wxT("Filter"))
.MinimizeButton(true)
.MaximizeButton(true)
.Right()
- .MinSize(wxSize(100,100)) );
+ .MinSize(wxSize(100,100))
+ .CloseButton(false)
+);
// sizer->Add(fsizer,1,wxGROW);
m_mgr.Update();