Linux |
- wxToolBar 's don't seem to play nicely with sizers. First, panels
don't seem to automatically take them into account, and if they're put
into sizers, the sizers seem to allocate the space for the toolbar
at the end. The proposed workaround for now is:
- Create a sizer for the frame
- Create the toolbar with correct dimensions
- Add space ( space_sizer ) to the sizer of equal dimensions to the toolbar
- Add the panel to the sizer with a wxBOTTOM border of negative the height of the
toolbar
- Drag and Drop does not result in any files being transmitted to wxEuphoria.
- The clipboard isn't very robust. Multiple copy & pastes from a wxEuphoria app
can lock up. In between these, if you use the clipboard in another app, it seems
to be fine. An alternative workaround is to use a hidden wxTextCtrl, and use
copy_text(), cut_text() and paste_text() to manage putting text onto the clipboard.
- Be careful if using characters above 127. Specifically, 146 (apostrophe)
will cause problems, and no text may show up in the wxTextCtrl. Also, you should
make sure the wxTextCtrl has the wxTE_MULTILINE style, or you will be limited to
2047 characters.
|