2 Todo on wxWin 2.0, Windows platform
3 -----------------------------------
8 Find/add wxThread sample - Arthur T-D?
10 wxControl dimensions should be optionally based on dialog font
11 size for portability (dialog units as per Windows).
13 Implement wxDC floating point transformations.
15 Add wxDC::DeviceToLogical -> wxPoint etc (convenience accessors).
17 Revamp Dialog Editor for new controls and properties (e.g.
22 Change DnD classes to use global symbols, and wxString.
41 wxStatusBar95 and wxFrame status bar functions
42 wxListBox changes (for ownerdraw functionality)
43 wxThread DONE (except for topic overview)
44 wxHelpController classes DONE (except for Unix ones)
46 Drag and drop (change API if required, e.g. const).
48 wxBaseArray, other arrays
50 Document the include file for each class
57 A wxDC function (or two) for drawing 3D edges.
59 Makefiles for other compilers. Generic makefiles?
60 Rewrite makefiles to maintain simultaneous debug/release
63 More wxSystemSettings (see comment in settings.cpp).
67 Convert remaining utilities e.g. (GLCanvas; wxGraphLayout) and samples
71 Shell function to invoke a document with open, print, whatever...
73 Make use of Vadim's gettext implementation throughout wxWin code.
76 Retain callback functions; have semi-compatible callback function prototypes
77 for all controls, at least in WXWIN_COMPATIBLE mode, but
78 retain (Set)Callback for all compilations. This is following a
79 panicky response to losing callbacks.
81 Merge dib.cpp, dibutils.cpp.
83 Add a wxTabCtrl sample.
85 Improve printing. More API functions for printer DCs (to get
86 printer characteristics) and more reliable printing framework.
91 Debug PNG support in wxBitmap (no 4-bit support), and possibly add a convertor from PNG
92 to HICON. We could perhaps also support inclusion of PNGs into
93 a .res file as a custom resource.
95 Fonts: ability to enumerate them.
99 Eliminate Set/GetDefaultBackgroundColour? Just take background
100 colour for child control instead.
102 Think about reimplementing wxBitmapButton, wxStaticBitmap using
103 BS_BITMAP, SS_BITMAP - but this may not allow wxBitmap
104 argument, so instead just allow controls loaded from native
105 resource to deal with this style and call default processing.
107 Better clipboard support.
111 Doc/view - have some standard views/docs e.g. wxTextView.
113 wxClassWizard for generating files, chunks of code.
115 Miscellaneous file/system function wrappers.
117 wxImage or replacement; further wxBitmap/wxIcon etc. functions
118 (load animated icos).
120 Integrate existing multimedia classes.
124 Look at WinCE stuff incl. database classes.
126 Improve conversion guide, compatibility classes, tools?
134 Menu bitmaps - document Vadim's enhancements.
136 Enhance Tex2RTF to generate Microsoft HTML help, perhaps Netscape
139 wxCreateDynamicObject is apparently slow: ~ 2000 calls to strcmp. Need to
140 use some kind of hash table scheme.
142 Write wxDisplay class for querying settings and passing
143 to wxFrame to mirror the X situation (multiple displays).
145 Write translator between old and new .wxr formats (including
146 substituting static text for obsolete labels).
148 Improve and expand wxSizer classes.
150 Write more validators.
152 Classes for file/OS utility functions.
154 Add support for more static controls e.g. wxStaticLine.
156 GDI objects could be optimised further in constructors by
157 searching for a matching, pre-existing object, and assigning from
158 that, thus sharing the internal handle. A problem with this
159 arises if you wish to change the data. But this can be handled by
160 un-refing and creating a new handle. So we could reuse many
161 Windows GDI objects without troubling the programmer. We might
162 wish to switch this off in certain circumstances, e.g.
164 wxEnableGDIReuse(FALSE);
166 wxEnableGDIReuse(TRUE);
170 wxGDIReuse reuse(FALSE);
173 which lasts until its scope ends. This might be needed e.g. if we
174 needed to ensure that the operation was maximally efficient
175 (creating a new object rather than searching may or may not be
178 Perhaps rewrite wxFile to use FILE* descriptors, so Eof and Flush