]>
Commit | Line | Data |
---|---|---|
16c1f7f3 JS |
1 | wxMotif TODO |
2 | ------------ | |
3 | ||
88150e60 | 4 | Updated: 28/12/98 |
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 | |
ea57084d JS |
19 | - Colour setting in widgets (almost done). Should scrollbars take |
20 | on the background colour? Not right for e.g. wxScrolledWindows, | |
21 | so maybe have wxSystemSettings value for scrollbar colour, and/or | |
22 | ability to set scrollbar colour independently. | |
16c1f7f3 | 23 | |
8aa04e8b JS |
24 | - Optimize wxWindow OnPaint to avoid flicker, collapsing Expose events |
25 | as per flicker fix in 1.68. It will be tricky to avoid | |
26 | interfering with non-wxScrolledWindow widgets except by | |
27 | explicitly testing for wxScrolledWindow. | |
55acd85e | 28 | |
0d57be45 JS |
29 | - Implementation of OnEraseBackground. How? Call OnEraseBackground |
30 | just before OnPaint? Will duplicate Xlib's own erase of the background. | |
31 | However, this is usually OK, because the default wxWindow::OnEraseBackground | |
32 | can do nothing (SetBackgroundColour will make the background look OK). | |
33 | And if a custom OnEraseBackground uses the same colour as the window | |
34 | background, no flicker will be seen. If it does something else, such as | |
35 | painting a tiled bitmap, then a slight flicker might be seen unless | |
36 | X can be persuaded not to repaint the window background by default. | |
124e1738 | 37 | |
124e1738 JS |
38 | - wxSpinButton |
39 | ||
e1822f70 JS |
40 | - Miscellaneous events. |
41 | ||
45b5751f JS |
42 | - Get wxGLCanvas from 1.68 working. |
43 | ||
ee4c6942 JS |
44 | - Implement missing wxImage functions for Motif. |
45 | ||
124e1738 JS |
46 | Low Priority |
47 | ------------ | |
48 | ||
ee4c6942 JS |
49 | - Visuals: how to select an appropriate one? See Thomas Runge's |
50 | visual patch for 1.68 -- should be straightforward to port to 2.0. | |
45b5751f | 51 | |
3f1af920 JS |
52 | - Work out why XFreeFont in font.cpp produces a segv. This is |
53 | currently commented out, which presumably causes a memory leak. | |
54 | ||
e1822f70 | 55 | - Better makefile system that can put objects in different dirs. |
e1822f70 JS |
56 | |
57 | - Extra wxBitmap formats: PNG, BMP. Could use old wxWin 1.68 | |
58 | wxImage code (derived from XV) for BMP/GIF but it's very bloated. However, | |
59 | when implemented as extra bitmap handlers, the code won't be linked | |
88150e60 | 60 | unless needed. Update: see if wxImage can handle these formats. |
e1822f70 | 61 | |
124e1738 | 62 | - Print/preview framework in print.cpp (see wxGTK). |
16c1f7f3 JS |
63 | |
64 | - Enhance event handling such that you override e.g. left-click | |
65 | and unless you call the base OnMouseEvent, the click won't be | |
66 | sent to the button. Required for Dialog Editor. | |
67 | ||
16c1f7f3 | 68 | - Get Dialog Editor working under Motif. |
d0dc2fe8 JS |
69 | |
70 | - New wxHelp version: try using the XmHTML widget at | |
3dd4e4e0 JS |
71 | http://www.xs4all.nl/~ripley/XmHTML/. |
72 | ||
73 | We need to: | |
74 | - make a minimal distribution under wx/src/xmhtml, just enough | |
75 | to compile the source. | |
76 | - add XMHTML_C_SRC to src/motif/makefile.unx with the source files | |
77 | listed. | |
78 | - make sure we can compile the sources, passing the correct | |
79 | flags for zlib/png compilation. | |
80 | - make a wxHTMLWindow class from e.g. examples/example_2.c. Should | |
81 | probably make the cache and history facilities part of the class. | |
82 | - add the driver code to src/motif/helphtml.cpp (a frame, toolbar, | |
83 | history list). | |
84 | ||
124e1738 JS |
85 | - Copy and paste, drag and drop. Use a standard X drag |
86 | and drop standard - see http://www.cco.caltech.edu/~jafl/xdnd/ | |
87 | or use Motif drag and drop as described here: | |
88 | http://www.motifzone.com/tmd/articles/DnD/dnd.html | |
89 | ||
90 | - Optimize colour management so we don't get clashes when e.g. | |
89c7e962 JS |
91 | Netscape is running. See: |
92 | http://www.motifzone.com/tmd/articles/John_Cwikla/index.html | |
124e1738 | 93 | |
1a3ac83f JS |
94 | - wxRCConfig (a config class using X .rc files). Could simply |
95 | implement it in terms of current wxGet/WriteResource functions. | |
96 | ||
124e1738 JS |
97 | - wxCheckBoxList |
98 | ||
321db4b6 JS |
99 | - wxBitmapCheckBox, wxBitmapRadioButton |
100 | ||
1a3ac83f JS |
101 | - Reimplement combobox using Lesstif's widget (avoiding GPL'ed |
102 | widget currently used). | |
103 | ||
124e1738 JS |
104 | - Miscellaneous classes e.g. wxJoystick (identical to GTK's one for |
105 | Linux) | |
106 | ||
e1822f70 | 107 | - Blit scaling |
1a3ac83f | 108 | |
5de9c45c JS |
109 | - Get ODBC classes and sample working. |
110 | ||
a367b9b3 JS |
111 | - Work out why wxTextCtrl doesn't work as a stream buffer under |
112 | gcc |