6 -------------------------------o-------------------------
13 - Extra wxBitmap formats. What about XPMs, can we assume
14 libxpm exists and use that?
16 - Work out why XFreeFont in font.cpp produces a segv. This is
17 currently commented out, which presumably causes a memory leak.
19 - Also work out why wxWindow::SetFont causes the widget to be shrunk
22 - Bitmap versions of widgets (wxBitmapButton etc.)
28 - wxComboBox: use combobox.c code as bundled in wxWin 1.68
30 - wxGauge: use xmgauge as per wxWin 1.68
36 - wxTextCtrl text file loading and saving.
38 - A generic version of wxNotebook that can be used in wxMotif and
39 other toolkits that don't have a native control. Perhaps use wxTab as a
42 - MDI classes: use existing Motif widgets for this.
44 - Dialogs e.g. wxFileSelector.
45 Some others need tidying, such as the colour and font selectors.
47 - Use generic wxTreeCtrl, wxListCtrl: enhance these.
49 - Write a better generic wxToolBar class than wxToolBarSimple.
50 Alternatively, write a toolbar using Motif as described here:
51 http://www.motifzone.com/tmd/articles/Kurt_Huhner/jun96.html.
52 This article also explains how to implement tooltips.
54 - Colour and font setting in widgets.
60 - wxThread (hopefully, similar to wxGTK)
62 - Write makefiles for all samples.
64 - Create some samples for testing.
69 - Print/preview framework in print.cpp (see wxGTK).
71 - Enhance event handling such that you override e.g. left-click
72 and unless you call the base OnMouseEvent, the click won't be
73 sent to the button. Required for Dialog Editor.
75 - Get Dialog Editor working under Motif.
77 - New wxHelp version: try using the XmHTML widget at
78 http://www.xs4all.nl/~ripley/XmHTML/
80 - Optimize screen refresh for non-native widgets, e.g. wxWindow
81 created with Create(), using technique in flicker patch for 1.68
82 (see JACS for latest patch).
84 - Copy and paste, drag and drop. Use a standard X drag
85 and drop standard - see http://www.cco.caltech.edu/~jafl/xdnd/
86 or use Motif drag and drop as described here:
87 http://www.motifzone.com/tmd/articles/DnD/dnd.html
89 - Optimize colour management so we don't get clashes when e.g.
90 Netscape is running. See:
91 http://www.motifzone.com/tmd/articles/John_Cwikla/index.html
95 - Write generic wxDirDialog (directory selector).
97 - Use native Motif dialogs for wxMessageBox.
99 - Miscellaneous classes e.g. wxJoystick (identical to GTK's one for