Displaying 4 results from an estimated 4 matches for "wxstaticbox".
Did you mean:
staticbox
2007 Dec 28
4
static box sizing problems
...I have pared down my issue to the simplest case: I am trying to use a
horizontal BoxSizer to split a frame into two sections: a left and right
side. I want the left side to stretch proportionally and I want the right
side to be of a fixed width. Moreover, I want to enclose the right side in
a wxStaticBox.
I happen to be using wxRuby, but the code should be understandable to C++
programmers. This is in the constructor of my frame subclass:
lr_sizer = BoxSizer.new( HORIZONTAL )
txt = StaticText.new (self, -1, "Text Left")
lr_sizer.add(txt, 1, EXPAND | ALL, 4)
static_box...
2006 Sep 03
9
Patch files to implement AcceptFocus
These files add the virtual function AcceptFocus that was missing from
wxWindow.h. In order to make things right I had to make sure it was
also declared in all the places where wxWindows also changes it. Also,
in wxTextCtrl on Windows GetDefaultAttributes needs to be redeclared. I
haven''t downloaded the Unix and Mac headers for 2.6.3 so I couldn''t see
if it also applies
2006 Apr 23
5
Re: StaticBoxSizer bug?
...; frame->Show(true);
>
> return true;
> }
>
> SizerTestFrame::SizerTestFrame(const wxString & title) :
> wxFrame(NULL, wxID_ANY, title)
> {
> wxPanel *panel = new wxPanel(this, wxID_ANY);
> wxBoxSizer *boxSizer = new wxBoxSizer(wxHORIZONTAL);
> wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, wxT("BoxTitle"));
> wxStaticText *text = new wxStaticText(panel, wxID_ANY, wxT("Some text!"));
> wxStaticBoxSizer *staticBoxSizer = new wxStaticBoxSizer(box, wxVERTICAL);
>
> staticBoxSizer->Add(text, 1, wxEXPAND...
2007 Mar 30
1
wxWidgets 2.8.3
Alex,
I just saw that wxWidgets 2.8.3 was released on 03/24/2007, should we
change over to that right away?
The changes are:
All:
- Shut down the sockets gracefully (Sergio Aguayo)
- Fix extra indentation in wxHTML_ALIGN_JUSTIFY display (Chacal)
wxMac
- Corrected top border size for wxStaticBox with empty label (nusi).
- Fixed wxFont, wxPen and wxBrush accessor bugs introduced in 2.8.2.
wxMSW:
- Fixed wxFileName::GetSize() for large files.
- Fixed wxFont and wxPen accessor bugs introduced in 2.8.2.
My vote is to switch because it only looks like minor fixes (which a
2.8.x release shou...