1998-05-20 10:12:05 -04:00
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
Todo on wxWin 2, Windows platform
|
|
|
|
---------------------------------
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
HIGH PRIORITY
|
|
|
|
-------------
|
|
|
|
|
2002-01-09 16:18:24 -05:00
|
|
|
Add automatic line wrap to wxStaticText
|
1998-05-20 10:12:05 -04:00
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Add centring, right justify styles to wxStaticText.
|
1998-05-20 10:12:05 -04:00
|
|
|
|
2002-06-07 16:15:28 -04:00
|
|
|
Extend wxLocale to get more locale settings (currency,
|
2002-01-09 16:18:24 -05:00
|
|
|
date/time, decimal separator and so on)
|
1999-01-26 09:18:32 -05:00
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
LOW PRIORITY (MEDIUM TERM)
|
|
|
|
--------------------------
|
|
|
|
|
1999-02-10 17:44:53 -05:00
|
|
|
Supply VC++ project generator utility.
|
1999-02-04 06:14:41 -05:00
|
|
|
|
2002-01-09 16:18:24 -05:00
|
|
|
Add further controls and properties to Dialog Editor.
|
1998-05-20 10:12:05 -04:00
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Write tutorial.
|
1998-05-20 10:12:05 -04:00
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Add wxDC::DeviceToLogical -> wxPoint etc (convenience accessors).
|
1998-05-20 10:12:05 -04:00
|
|
|
|
1998-08-10 09:48:12 -04:00
|
|
|
Add GetIcon, GetBitmap to wxImageList. Perhaps store bitmaps
|
|
|
|
in image list so we can get them later.
|
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Merge dib.cpp, dibutils.cpp (see also some DIB code in bitmap.cpp).
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
wxCreateDynamicObject is apparently slow: ~ 2000 calls to strcmp. Need to
|
|
|
|
use some kind of hash table scheme.
|
|
|
|
|
|
|
|
Write wxDisplay class for querying settings and passing
|
|
|
|
to wxFrame to mirror the X situation (multiple displays).
|
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Implement wxDC floating point transformations.
|
|
|
|
|
2002-01-09 16:18:24 -05:00
|
|
|
WISH LIST (LONG TERM)
|
|
|
|
---------------------
|
1999-01-07 03:43:47 -05:00
|
|
|
|
|
|
|
ActiveX support
|
|
|
|
|
2002-01-09 16:18:24 -05:00
|
|
|
Porting to WinCE
|
1999-01-07 03:43:47 -05:00
|
|
|
|
1998-05-20 10:12:05 -04:00
|
|
|
GDI objects could be optimised further in constructors by
|
|
|
|
searching for a matching, pre-existing object, and assigning from
|
|
|
|
that, thus sharing the internal handle. A problem with this
|
|
|
|
arises if you wish to change the data. But this can be handled by
|
|
|
|
un-refing and creating a new handle. So we could reuse many
|
|
|
|
Windows GDI objects without troubling the programmer. We might
|
|
|
|
wish to switch this off in certain circumstances, e.g.
|
|
|
|
|
|
|
|
wxEnableGDIReuse(FALSE);
|
|
|
|
wxBrush brush(...);
|
|
|
|
wxEnableGDIReuse(TRUE);
|
|
|
|
|
|
|
|
or even
|
|
|
|
|
|
|
|
wxGDIReuse reuse(FALSE);
|
|
|
|
wxBrush brush(...);
|
|
|
|
|
|
|
|
which lasts until its scope ends. This might be needed e.g. if we
|
|
|
|
needed to ensure that the operation was maximally efficient
|
|
|
|
(creating a new object rather than searching may or may not be
|
|
|
|
more efficient).
|
|
|
|
|
1999-01-07 03:43:47 -05:00
|
|
|
Integrate Guilhem's multimedia classes: documentation, makefiles,
|
|
|
|
different platforms.
|
|
|
|
|
|
|
|
Rich text class.
|
1998-10-26 12:10:25 -05:00
|
|
|
|