]>
Commit | Line | Data |
---|---|---|
16c1f7f3 JS |
1 | wxMotif TODO |
2 | ------------ | |
3 | ||
a91b47e8 | 4 | Updated: 11/02/99 |
16c1f7f3 JS |
5 | |
6 | -------------------------------o------------------------- | |
7 | ||
e1822f70 JS |
8 | General comment: see the following site for useful Motif widgets. |
9 | ftp://ftp.x.org/contrib/widgets/motif | |
16c1f7f3 | 10 | |
e1822f70 | 11 | Also, grep for TODO comments in source. |
124e1738 | 12 | |
e1822f70 JS |
13 | High Priority |
14 | ------------- | |
16c1f7f3 | 15 | |
3f1af920 JS |
16 | - Have a central/per app file for colour settings, with a wxWin |
17 | app to allow changing settings interactively. | |
e97f20a0 | 18 | |
a91b47e8 JS |
19 | - Implementation of default event processing (i.e. passing on an intercepted |
20 | event such as OnChar to the system). Currently, such events are processed | |
21 | anyway, so for example intercepting left-click in a widget doesn't disable | |
22 | the default behaviour. See TODOs in window.cpp. | |
124e1738 | 23 | |
9838df2c JS |
24 | - wxRadioBox doesn't show up in the controls sample, though it's |
25 | OK on other dialogs (e.g. printing sample). | |
26 | ||
124e1738 JS |
27 | - wxSpinButton |
28 | ||
8cbd2bde JS |
29 | - wxToolTip |
30 | ||
e1822f70 JS |
31 | - Miscellaneous events. |
32 | ||
2fd284a4 JS |
33 | - Use wxImage to load other formats into wxBitmaps, such as PNG, BMP. |
34 | ||
2e35f56f JS |
35 | - Allow wxFrame and other widgets to have mouse event handlers. |
36 | ||
124e1738 JS |
37 | Low Priority |
38 | ------------ | |
39 | ||
a91b47e8 JS |
40 | - Painting a retained window could be optimized further (see |
41 | wxWindow::DoPaint). | |
42 | ||
ee4c6942 JS |
43 | - Visuals: how to select an appropriate one? See Thomas Runge's |
44 | visual patch for 1.68 -- should be straightforward to port to 2.0. | |
45b5751f | 45 | |
3f1af920 JS |
46 | - Work out why XFreeFont in font.cpp produces a segv. This is |
47 | currently commented out, which presumably causes a memory leak. | |
48 | ||
e1822f70 | 49 | - Better makefile system that can put objects in different dirs. |
e1822f70 JS |
50 | |
51 | - Extra wxBitmap formats: PNG, BMP. Could use old wxWin 1.68 | |
52 | wxImage code (derived from XV) for BMP/GIF but it's very bloated. However, | |
53 | when implemented as extra bitmap handlers, the code won't be linked | |
88150e60 | 54 | unless needed. Update: see if wxImage can handle these formats. |
e1822f70 | 55 | |
a91b47e8 | 56 | - Get Dialog Editor working (better) under Motif. |
d0dc2fe8 JS |
57 | |
58 | - New wxHelp version: try using the XmHTML widget at | |
3dd4e4e0 JS |
59 | http://www.xs4all.nl/~ripley/XmHTML/. |
60 | ||
61 | We need to: | |
62 | - make a minimal distribution under wx/src/xmhtml, just enough | |
63 | to compile the source. | |
64 | - add XMHTML_C_SRC to src/motif/makefile.unx with the source files | |
65 | listed. | |
66 | - make sure we can compile the sources, passing the correct | |
67 | flags for zlib/png compilation. | |
68 | - make a wxHTMLWindow class from e.g. examples/example_2.c. Should | |
69 | probably make the cache and history facilities part of the class. | |
70 | - add the driver code to src/motif/helphtml.cpp (a frame, toolbar, | |
71 | history list). | |
72 | ||
dface61c | 73 | - Drag and drop. Use a standard X drag |
124e1738 JS |
74 | and drop standard - see http://www.cco.caltech.edu/~jafl/xdnd/ |
75 | or use Motif drag and drop as described here: | |
76 | http://www.motifzone.com/tmd/articles/DnD/dnd.html | |
77 | ||
78 | - Optimize colour management so we don't get clashes when e.g. | |
89c7e962 JS |
79 | Netscape is running. See: |
80 | http://www.motifzone.com/tmd/articles/John_Cwikla/index.html | |
124e1738 | 81 | |
1a3ac83f JS |
82 | - wxRCConfig (a config class using X .rc files). Could simply |
83 | implement it in terms of current wxGet/WriteResource functions. | |
84 | ||
124e1738 JS |
85 | - wxCheckBoxList |
86 | ||
321db4b6 JS |
87 | - wxBitmapCheckBox, wxBitmapRadioButton |
88 | ||
1a3ac83f JS |
89 | - Reimplement combobox using Lesstif's widget (avoiding GPL'ed |
90 | widget currently used). | |
91 | ||
124e1738 JS |
92 | - Miscellaneous classes e.g. wxJoystick (identical to GTK's one for |
93 | Linux) | |
94 | ||
5de9c45c JS |
95 | - Get ODBC classes and sample working. |
96 | ||
a367b9b3 JS |
97 | - Work out why wxTextCtrl doesn't work as a stream buffer under |
98 | gcc |