]> git.saurik.com Git - wxWidgets.git/blame - docs/motif/todo.txt
Removed obsolete wxDate and wxTime classes.
[wxWidgets.git] / docs / motif / todo.txt
CommitLineData
16c1f7f3
JS
1wxMotif TODO
2------------
3
a91b47e8 4Updated: 11/02/99
16c1f7f3
JS
5
6 -------------------------------o-------------------------
7
e1822f70
JS
8General comment: see the following site for useful Motif widgets.
9ftp://ftp.x.org/contrib/widgets/motif
16c1f7f3 10
e1822f70 11Also, grep for TODO comments in source.
124e1738 12
e1822f70
JS
13High 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
8cbd2bde
JS
27- wxToolTip
28
e1822f70
JS
29- Miscellaneous events.
30
2fd284a4
JS
31- Use wxImage to load other formats into wxBitmaps, such as PNG, BMP.
32
2e35f56f
JS
33- Allow wxFrame and other widgets to have mouse event handlers.
34
124e1738
JS
35Low Priority
36------------
37
a91b47e8
JS
38- Painting a retained window could be optimized further (see
39 wxWindow::DoPaint).
40
ee4c6942
JS
41- Visuals: how to select an appropriate one? See Thomas Runge's
42 visual patch for 1.68 -- should be straightforward to port to 2.0.
45b5751f 43
3f1af920
JS
44- Work out why XFreeFont in font.cpp produces a segv. This is
45 currently commented out, which presumably causes a memory leak.
46
e1822f70 47- Better makefile system that can put objects in different dirs.
e1822f70
JS
48
49- Extra wxBitmap formats: PNG, BMP. Could use old wxWin 1.68
50 wxImage code (derived from XV) for BMP/GIF but it's very bloated. However,
51 when implemented as extra bitmap handlers, the code won't be linked
88150e60 52 unless needed. Update: see if wxImage can handle these formats.
e1822f70 53
a91b47e8 54- Get Dialog Editor working (better) under Motif.
d0dc2fe8
JS
55
56- New wxHelp version: try using the XmHTML widget at
3dd4e4e0
JS
57 http://www.xs4all.nl/~ripley/XmHTML/.
58
59 We need to:
60 - make a minimal distribution under wx/src/xmhtml, just enough
61 to compile the source.
62 - add XMHTML_C_SRC to src/motif/makefile.unx with the source files
63 listed.
64 - make sure we can compile the sources, passing the correct
65 flags for zlib/png compilation.
66 - make a wxHTMLWindow class from e.g. examples/example_2.c. Should
67 probably make the cache and history facilities part of the class.
68 - add the driver code to src/motif/helphtml.cpp (a frame, toolbar,
69 history list).
70
dface61c 71- Drag and drop. Use a standard X drag
124e1738
JS
72 and drop standard - see http://www.cco.caltech.edu/~jafl/xdnd/
73 or use Motif drag and drop as described here:
74 http://www.motifzone.com/tmd/articles/DnD/dnd.html
75
76- Optimize colour management so we don't get clashes when e.g.
89c7e962
JS
77 Netscape is running. See:
78 http://www.motifzone.com/tmd/articles/John_Cwikla/index.html
124e1738 79
1a3ac83f
JS
80- wxRCConfig (a config class using X .rc files). Could simply
81 implement it in terms of current wxGet/WriteResource functions.
82
124e1738
JS
83- Miscellaneous classes e.g. wxJoystick (identical to GTK's one for
84 Linux)
85
5de9c45c
JS
86- Get ODBC classes and sample working.
87
a367b9b3 88- Work out why wxTextCtrl doesn't work as a stream buffer under
1201b3ef 89 gcc