Displaying 4 results from an estimated 4 matches for "wxstaticboxs".
Did you mean:
wxstaticbox
2007 Dec 28
4
static box sizing problems
Hi,
I tried this one over on the main wx-users list as well, but thought I would
try it here since I am using wxRuby:
I am using wxWidgets 2.8.7 on a linux box using the GTK build.
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
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?
...nel *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 | wxALL, 16);
> boxSizer->Add(staticBoxSizer, 1, wxEXPAND | wxALL, 16);
> panel->SetSizerAndFit(boxSizer);
> }
>
> ------------------------------------------...
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.