]> git.saurik.com Git - wxWidgets.git/blame - docs/msw/todo.txt
* Fixed a bug in notebook.tex
[wxWidgets.git] / docs / msw / todo.txt
CommitLineData
2bda0e17
KB
1
2Todo on wxWin 2.0, Windows platform
3-----------------------------------
4
5HIGH PRIORITY
6-------------
7
2bda0e17
KB
8Find/add wxThread sample - Arthur T-D?
9
10wxControl dimensions should be optionally based on dialog font
11size for portability (dialog units as per Windows).
12
13Implement wxDC floating point transformations.
14
2bda0e17
KB
15Add wxDC::DeviceToLogical -> wxPoint etc (convenience accessors).
16
17Revamp Dialog Editor for new controls and properties (e.g.
18window id).
19
f7bd2698 20Tidy wxConfig API.
2bda0e17 21
ee4f8c2a
JS
22Change DnD classes to use global symbols, and wxString.
23
2bda0e17
KB
24Update manual.
25 wxApp changes DONE
26 wxMenu changes DONE
27 wxModule DONE
28 wxRegion DONE
29 wxFile DONE
30 wxTempFile
31 wxMask DONE
32 wxDC:Blit DONE
33 wxTaskBarIcon DONE
34 wxMsgCatalog etc.
35 wxLog
b8c631bb
JS
36 wxConfig DONE
37 wxRegKey
ee4f8c2a 38 wxTabCtrl DONE
b8c631bb 39 wxNotebook DONE (some more explanation required)
ee4f8c2a 40 wxWave DONE
e5fb7191 41 wxJoystick DONE
2bda0e17
KB
42 wxStatusBar95 and wxFrame status bar functions
43 wxListBox changes (for ownerdraw functionality)
ee4f8c2a 44 wxThread DONE (except for topic overview)
e5fb7191 45 wxHelpController classes DONE (except for Unix ones)
f7bd2698 46 wxString PARTLY DONE
2bda0e17 47 Drag and drop (change API if required, e.g. const).
b8c631bb
JS
48 wxCheckListBox DONE
49 wxAcceleratorTable DONE
2bda0e17
KB
50 wxBaseArray, other arrays
51 (wxOwnerDrawn)
2bda0e17 52 Document the include file for each class
38009d39 53 Macros, e.g. wxASSERT
f7bd2698
JS
54 Stream classes
55 Functions
2bda0e17
KB
56
57Write tutorial.
58
f7bd2698 59A wxDC function (or two) for drawing 3D edges.
2bda0e17
KB
60
61Makefiles for other compilers. Generic makefiles?
62Rewrite makefiles to maintain simultaneous debug/release
63objects.
64
65More wxSystemSettings (see comment in settings.cpp).
66
f7bd2698 67Convert remaining utilities e.g. (GLCanvas; wxGraphLayout) and samples
2bda0e17
KB
68
69Check TODO entries.
70
2bda0e17
KB
71Shell function to invoke a document with open, print, whatever...
72
2bda0e17
KB
73Make use of Vadim's gettext implementation throughout wxWin code.
74Document it.
75
2bda0e17
KB
76Retain callback functions; have semi-compatible callback function prototypes
77for all controls, at least in WXWIN_COMPATIBLE mode, but
78retain (Set)Callback for all compilations. This is following a
79panicky response to losing callbacks.
80
b8c631bb 81Merge dib.cpp, dibutils.cpp (see also some DIB code in bitmap.cpp).
2bda0e17 82
2bda0e17
KB
83Add a wxTabCtrl sample.
84
f7bd2698
JS
85Improve printing. More API functions for printer DCs (to get
86printer characteristics) and more reliable printing framework.
b18268d3 87
9c331ded
JS
88Add GetIcon, GetBitmap to wxImageList. Perhaps store bitmaps
89in image list so we can get them later.
90
2bda0e17
KB
91LOW PRIORITY
92------------
93
94Debug PNG support in wxBitmap (no 4-bit support), and possibly add a convertor from PNG
95to HICON. We could perhaps also support inclusion of PNGs into
96a .res file as a custom resource.
97
98Fonts: ability to enumerate them.
99
100Angled text.
101
102Eliminate Set/GetDefaultBackgroundColour? Just take background
103colour for child control instead.
104
105Think about reimplementing wxBitmapButton, wxStaticBitmap using
106BS_BITMAP, SS_BITMAP - but this may not allow wxBitmap
107argument, so instead just allow controls loaded from native
108resource to deal with this style and call default processing.
109
2bda0e17
KB
110Better clipboard support.
111
2bda0e17
KB
112wxWizard class?
113
114Doc/view - have some standard views/docs e.g. wxTextView.
115
116wxClassWizard for generating files, chunks of code.
117
118Miscellaneous file/system function wrappers.
119
120wxImage or replacement; further wxBitmap/wxIcon etc. functions
121(load animated icos).
122
123Integrate existing multimedia classes.
124
125Rich text class?
126
2bda0e17
KB
127Look at WinCE stuff incl. database classes.
128
129Improve conversion guide, compatibility classes, tools?
130
131Bug database.
132
133ActiveX support?
134
135OpenGL integration.
136
137Menu bitmaps - document Vadim's enhancements.
138
139Enhance Tex2RTF to generate Microsoft HTML help, perhaps Netscape
140HTML help also.
141
142wxCreateDynamicObject is apparently slow: ~ 2000 calls to strcmp. Need to
143use some kind of hash table scheme.
144
145Write wxDisplay class for querying settings and passing
146to wxFrame to mirror the X situation (multiple displays).
147
148Write translator between old and new .wxr formats (including
149substituting static text for obsolete labels).
150
151Improve and expand wxSizer classes.
152
b8c631bb
JS
153Write more validators. Also, how do they work if loading the
154dialog from a .wxr? Could call SetValidator from within
155InitDialog for all controls, then call TransferDataToWindow.
2bda0e17
KB
156
157Classes for file/OS utility functions.
158
159Add support for more static controls e.g. wxStaticLine.
160
161GDI objects could be optimised further in constructors by
162searching for a matching, pre-existing object, and assigning from
163that, thus sharing the internal handle. A problem with this
164arises if you wish to change the data. But this can be handled by
165un-refing and creating a new handle. So we could reuse many
166Windows GDI objects without troubling the programmer. We might
167wish to switch this off in certain circumstances, e.g.
168
169 wxEnableGDIReuse(FALSE);
170 wxBrush brush(...);
171 wxEnableGDIReuse(TRUE);
172
173or even
174
175 wxGDIReuse reuse(FALSE);
176 wxBrush brush(...);
177
178which lasts until its scope ends. This might be needed e.g. if we
179needed to ensure that the operation was maximally efficient
180(creating a new object rather than searching may or may not be
181more efficient).
182
183Perhaps rewrite wxFile to use FILE* descriptors, so Eof and Flush
184can work.