Removed very out of date files in docs/msw
Changed version number in docs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
Installing wxWidgets 2.5.5
|
||||
Installing wxWidgets 2.6.0
|
||||
--------------------------
|
||||
|
||||
This is wxWidgets 2.5.5 for Microsoft Windows 9x/ME, Windows NT, Windows 2000
|
||||
and Windows XP. This is an unstable development release. Note that unstable in
|
||||
this context doesn't mean that it crashes a lot, just that the library API may
|
||||
change in backwards incompatible way during the 2.5 branch lifetime.
|
||||
This is wxWidgets 2.6.0 for Microsoft Windows 9x/ME, Windows NT, Windows 2000
|
||||
and Windows XP.
|
||||
|
||||
IMPORTANT NOTE: If you experience problems installing, please
|
||||
re-read this instructions and other related files (changes.txt,
|
||||
@@ -263,7 +261,7 @@ Metrowerks CodeWarrior compilation
|
||||
----------------------------------
|
||||
|
||||
1. CodeWarrior Pro7 project files in XML format are already
|
||||
included in wxMSW-2.5.5.zip and the setup version.
|
||||
included in wxMSW-2.6.0.zip and the setup version.
|
||||
|
||||
2. Review the file include\wx\msw\setup.h (or include\wx\msw\setup0.h if
|
||||
you are working from the CVS version) to make sure the settings reflect
|
||||
|
@@ -1,29 +0,0 @@
|
||||
Current issues and bugs
|
||||
-----------------------
|
||||
|
||||
Memory-checking subsystem
|
||||
-------------------------
|
||||
|
||||
This conflicts with wxUSE_IOSTREAMSH = 0 using MS VC++ 5.0
|
||||
(crashes the template code). It should be switched off if you
|
||||
wish to use wxUSE_IOSTREAMSH = 0.
|
||||
|
||||
BC++ in 16-bit mode
|
||||
-------------------
|
||||
|
||||
resource.cpp has to be split into two to compile (hence
|
||||
resourc2.cpp). Unfortunately we still get the error:
|
||||
|
||||
Segment TEXT_RESOURCE exceeds 64K.
|
||||
|
||||
The solution is probably to load wxResourceBitListTable
|
||||
dynamically using LoadString to load the names, and initialize the table
|
||||
at wxWidgets start-up.
|
||||
|
||||
Meanwhile the work-around is to switch wxUSE_WX_RESOURCES to 0
|
||||
(done in setup.h if BC++/16-bit mode is detected).
|
||||
|
||||
See also:
|
||||
http://www.inprise.com/devsupport/borlandcpp/ti_list/TI703.html
|
||||
http://www.inprise.com/devsupport/borlandcpp/ti/TI1007.html
|
||||
|
@@ -1,72 +0,0 @@
|
||||
|
||||
Todo on wxWin 2, Windows platform
|
||||
---------------------------------
|
||||
|
||||
HIGH PRIORITY
|
||||
-------------
|
||||
|
||||
Add automatic line wrap to wxStaticText
|
||||
|
||||
Add centring, right justify styles to wxStaticText.
|
||||
|
||||
Extend wxLocale to get more locale settings (currency,
|
||||
date/time, decimal separator and so on)
|
||||
|
||||
LOW PRIORITY (MEDIUM TERM)
|
||||
--------------------------
|
||||
|
||||
Supply VC++ project generator utility.
|
||||
|
||||
Add further controls and properties to Dialog Editor.
|
||||
|
||||
Write tutorial.
|
||||
|
||||
Add wxDC::DeviceToLogical -> wxPoint etc (convenience accessors).
|
||||
|
||||
Add GetIcon, GetBitmap to wxImageList. Perhaps store bitmaps
|
||||
in image list so we can get them later.
|
||||
|
||||
Merge dib.cpp, dibutils.cpp (see also some DIB code in bitmap.cpp).
|
||||
|
||||
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).
|
||||
|
||||
Implement wxDC floating point transformations.
|
||||
|
||||
WISH LIST (LONG TERM)
|
||||
---------------------
|
||||
|
||||
ActiveX support
|
||||
|
||||
Porting to WinCE
|
||||
|
||||
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).
|
||||
|
||||
Integrate Guilhem's multimedia classes: documentation, makefiles,
|
||||
different platforms.
|
||||
|
||||
Rich text class.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
|
||||
=================================================
|
||||
Welcome to wxWidgets/CE 2.5.5
|
||||
Welcome to wxWidgets/CE 2.6.0
|
||||
=================================================
|
||||
|
||||
You have downloaded version 2.5.5 of the Windows CE port of
|
||||
You have downloaded version 2.6.0 of the Windows CE port of
|
||||
the wxWidgets GUI library. This runs on Pocket PC 2002/2003,
|
||||
Smartphone 2002/2003, and Windows CE .NET 4.x.
|
||||
|
||||
|
Reference in New Issue
Block a user