|
From: Andrej V. <and...@gm...> - 2005-12-07 21:39:34
|
> I don't know well wxwidgets[2]: is there the possibility to split
> (automatically) on more lines widgets that do not fit on one
> line? Gtk+ does (ex. Gimp: when you resize the window, the table
> containing all the instruments changes shape). Also, still my
> lack of knowledge of wxwidgets, probably it is possible to set
> the buttons properties in order to allow label on multiple lines.=
.
Splitting buttons into more than one line could be done, but if we
want to keep similar commands together that could be a lot of work.
However labels in multiple lines is a good idea. It works on windows.
Can someone test this on Linux? Replacing
button_3 =3D new wxButton(panel, button_radcan, _("Simplify (r)"));
with
button_3 =3D new wxButton(panel, button_radcan, _("Simplify\nradicals"));
in wxMaximaFrame.cpp should do it.
Andrej
|