a) Using Visual C++ 6.0
- Simply open the src/wxBase.dsw file in MSDEV and build it. When it is
+ Simply open the build/msw/wx_base.dsp file in MSDEV and build it. When it is
done you can also open samples/console/console.dsp project and build it as
well.
c) Borland
Please refer to the docs/msw/install.txt. The console sample compiles and
- runs but does not pass all tests (04 sept 02)
+ runs but does not pass all tests.
d) Watcom
Hope you will find wxBase useful!
Vadim Zeitlin
-
-
-This file is accurate for the version 2.5.1 of wxBase. It was last modified on
-Jan 22, 2003.
-
-wxWidgets 2.5 for Mac installation
-----------------------------------
+wxWidgets 2.6.0 for Mac installation
+------------------------------------
On MacOS X, you can download Apple's free developer tools (gcc
and associated headers and libraries, such as the Carbon API).
-Welcome to wxWidgets/Mac 2
+Welcome to wxWidgets/Mac 2.6.0
More Information is available from the wxWidgets project home page at
Regards,
Stefan Csomor
+
-wxWidgets 2.5 for MGL installation
+wxWidgets 2.6.0 for MGL installation
------------------------------------
IMPORTANT NOTE:
When sending bug reports tell us what version of wxWidgets you are
using (including the beta) and what compiler on what system. One
- example: wxMGL 2.5.5, gcc 2.95.3, Redhat 7.0
+ example: wxMGL 2.6.0, gcc 2.95.3, Redhat 7.0
First steps
-----------
- Welcome to wxWidgets/MGL 2.3
+ Welcome to wxWidgets/MGL 2.6.0
-You have downloaded version 2.3 of the MGL port of
+You have downloaded version 2.6.0 of the MGL port of
the wxWidgets GUI library. This runs on top of SciTech MGL library
(http://www.scitechsoft.com) that is available for variety of
operating systems and comes with support for embedded devices.
-wxWidgets 2.5 for Motif installation
+wxWidgets 2.6.0 for Motif installation
------------------------------------
IMPORTANT NOTE:
When sending bug reports tell us what version of wxWidgets you are
using (including the beta) and what compiler on what system. One
- example: wxMotif 2.5.5, gcc 2.95.4, Redhat 6.1
+ example: wxMotif 2.6.0, gcc 2.95.4, Redhat 6.1
First steps
-----------
- Welcome to wxWidgets/Motif 2.5.5
+ Welcome to wxWidgets/Motif 2.6.0
-You have downloaded version 2.5.5 of the Motif port of
+You have downloaded version 2.6.0 of the Motif port of
the wxWidgets GUI library.
More information about the wxWidgets project as a whole
linked from the wxWidgets web page.
The library produced by the install process will be called
-libwx_motif.a (static) and libwx_motif-2.5.so.0.0.0 (shared) so that
+libwx_motif.a (static) and libwx_motif-2.6.so.0.0.0 (shared) so that
once a binary incompatible version of wxWidgets/Motif comes out
we'll augment the library version number to avoid linking problems.
-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,
----------------------------------
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
+++ /dev/null
-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
-
+++ /dev/null
-
-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.
-
=================================================
- 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.
-Installing wxWidgets 2.5.5
+Installing wxWidgets 2.6.0
--------------------------
-This is wxWidgets 2.5.5 for IBM OS/2 Warp3 and Warp4. This is an unstable
+This is wxWidgets 2.6.0 for IBM OS/2 Warp3 and Warp4. This is an unstable
development release and OS/2 is considered to be in beta.
IMPORTANT NOTE: If you experience problems installing, please
At this time there is no comprehensive setup.exe type installation program.
wxWidgets for OS/2 requires you download various .zip files and unpack them
to your desired location on your system. Pick a location say,
-C:\wx\wxWidgets-2.5.5, copy the .zip files to there and unzip them ensuring you
+C:\wx\wxWidgets-2.6.0, copy the .zip files to there and unzip them ensuring you
unzip the subdirectories as well. You will need:
- All common, generic and OS2-specific wxWidgets source;
- PNG library source;
- ZLIB library source;
-All but the documentation is included in wxOS2-2.5.5.zip, documentation
+All but the documentation is included in wxOS2-2.6.0.zip, documentation
must be downloaded separately from the wxWidgets Web site.
Other add-on packages are available from the wxWidgets Web site, such as:
After unzipping everything your directory tree should look something like
this:
-x:\wx\wxWidgets-2.5.5\docs (your HTML reference manual)
-x:\wx\wxWidgets-2.5.5\include\wx
-x:\wx\wxWidgets-2.5.5\include\wx\generic
-x:\wx\wxWidgets-2.5.5\include\wx\html
-x:\wx\wxWidgets-2.5.5\include\wx\os2
-x:\wx\wxWidgets-2.5.5\samples\.... (all the sample directories)
-x:\wx\wxWidgets-2.5.5\src
-x:\wx\wxWidgets-2.5.5\src\common
-x:\wx\wxWidgets-2.5.5\src\generic
-x:\wx\wxWidgets-2.5.5\src\html
-x:\wx\wxWidgets-2.5.5\src\jpeg
-x:\wx\wxWidgets-2.5.5\src\os2
-x:\wx\wxWidgets-2.5.5\src\png
-x:\wx\wxWidgets-2.5.5\src\tiff
-x:\wx\wxWidgets-2.5.5\src\zlib
+x:\wx\wxWidgets-2.6.0\docs (your HTML reference manual)
+x:\wx\wxWidgets-2.6.0\include\wx
+x:\wx\wxWidgets-2.6.0\include\wx\generic
+x:\wx\wxWidgets-2.6.0\include\wx\html
+x:\wx\wxWidgets-2.6.0\include\wx\os2
+x:\wx\wxWidgets-2.6.0\samples\.... (all the sample directories)
+x:\wx\wxWidgets-2.6.0\src
+x:\wx\wxWidgets-2.6.0\src\common
+x:\wx\wxWidgets-2.6.0\src\generic
+x:\wx\wxWidgets-2.6.0\src\html
+x:\wx\wxWidgets-2.6.0\src\jpeg
+x:\wx\wxWidgets-2.6.0\src\os2
+x:\wx\wxWidgets-2.6.0\src\png
+x:\wx\wxWidgets-2.6.0\src\tiff
+x:\wx\wxWidgets-2.6.0\src\zlib
If you are using VisualAge, you will also need to ensure you have a
-\lib directory as well, x:\wx\wxWidgets-2.5.5\lib
+\lib directory as well, x:\wx\wxWidgets-2.6.0\lib
and you will have to set a WXWIN environment variable in your
config.sys,
-SET WXWIN=X:\WX\WXWINDOWS-2.5.5;
+SET WXWIN=X:\WX\WXWINDOWS-2.6.0;
Compilation
-----------
update) e.g. wxGTK or wxX11 as well.
In the following, let's assume you decided to build in
-\wx\wxWidgets-2.5.5\build\pm. Now we need to set some environment
+\wx\wxWidgets-2.6.0\build\pm. Now we need to set some environment
variables, namely MAKESHELL (to a Unix like shell, let's assume ash)
and INSTALL (to point to the install script. If you omit this, configure
might find something like the system's tcpip\pcomos\install.exe which will
not do the thing you want), e.g.
SET MAKESHELL=ash
-SET INSTALL=/wx/wxWidgets-2.5.5/install-sh -c
+SET INSTALL=/wx/wxWidgets-2.6.0/install-sh -c
Be warned that depending on the precise version of your make, the
variable that needs to be set might be MAKE_SHELL instead of MAKESHELL.
essentially have to use the procedure described above, the only difference
being that you have to pass a switch to configure indicating which port
to build. If you do not do this in a separate build directory (e.g.
-\wxWidgets-2.5.5\build\gtk), you'll have to do a `make clean' first.
+\wxWidgets-2.6.0\build\gtk), you'll have to do a `make clean' first.
The magical switches that have to be passed to configure for the various
ports are --with-gtk (wxGTK), --with-motif (wxMotif), --with-x11 (wxX11),
and --disable-gui (wxBase). Note that contrary to the native, PM based
-Announcing wxWidgets 2.5.5: a cross-platform GUI toolkit
+Announcing wxWidgets 2.6.0: a cross-platform GUI toolkit
----------------------------------------------------------------
October 11th, 2004 -- the wxWidgets team is pleased to announce
-wxWidgets 2.5.5
+wxWidgets 2.6.0
---------------
-*** Please note that this is an UNSTABLE DEVELOPMENT SNAPSHOT.
-*** Unless you need the new features and bug fixes, you may wish to
-*** use the official 2.4.x stable series. You are still encouraged
-*** to try the releases from 2.5.x branch, of course, and unstable
-*** doesn't mean that they crash all the time -- just that the API
-*** may change in a backwards incompatible way. If this doesn't frighten
-*** you, do try this release and please let us know what you think!
-
Welcome to wxWidgets, a sophisticated cross-platform C++
framework for writing advanced GUI applications using (where
possible) the native controls.
features are not available on a platform, such as MDI and tree
controls on Unix, they are emulated.
-A detailed 1800-page reference manual is supplied in HTML, PDF
+A detailed 2000-page reference manual is supplied in HTML, PDF
and Windows Help form: see the docs hierarchy.
For a quick start, point your Web browser at docs/html/index.htm
======================================
-Please use wxWidgets 2.4.x - this is not currently supported in wxWidgets 2.5.5
+Please use wxWidgets 2.4.x - this is not currently supported in wxWidgets 2.6.0
- Welcome to wxWidgets/Wine 2.1 snapshot 7,
+ Welcome to wxWidgets/Wine 2.6.0
-you have downloaded version 2.1 of the WINE port of
-the wxWidgets GUI library. This is a developers release
-and is it not suited for production development. Beware
-that major changes can happen before a final release.
+You have downloaded version 2.6.0 of the WINE port of
+the wxWidgets GUI library.
-More information is available from my homepage at:
-
- http://wesley.informatik.uni-freiburg.de/~wxxt
-
-and about the wxWidgets project as a whole (and the
-Windows and Motif ports in particular) can be found
-at Julian Smart's homepage at:
-
- http://web.ukonline.co.uk/julian.smart/wxwin
-
Information on how to install can be found in the file
-INSTALL.txt.
+install.txt.
-When you run into problems, please read the INSTALL.txt and
+When you run into problems, please read the install.txt and
follow those instructions. If you still don't have any success,
please send a bug report to one of our mailing lists (see
my homepage) INCLUDING A DESCRIPTION OF YOUR SYSTEM AND
YOUR PROBLEM, SUCH AS YOUR VERSION OF THE WINE SOURCES, WHAT
-DISTRIBUTION YOU USE AND WHAT ERROR WAS REPORTED. I know
-this has no effect, but I tried...
-
-The library produced by the install process will be called
-libwx_mse.a (static) and libwx_msw-2.1.so.0.0.0 (shared) so that
-once a binary incompatible version of wxWidgets/Gtk comes out
-we'll augment the library version number to avoid linking problems.
+DISTRIBUTION YOU USE AND WHAT ERROR WAS REPORTED.
Please send problems concerning installation, feature requests,
bug reports or comments to the wxWidgets users list. Information
crash your harddisk or destroy your monitor. It doesn't claim to be
suitable for any special or general purpose.
- Regards,
-
- Robert Roebling
-wxWidgets 2.5 for X11 installation
-----------------------------------
+wxWidgets 2.6.0 for X11 installation
+------------------------------------
IMPORTANT NOTE:
When sending bug reports tell us what version of wxWidgets you are
using (including the beta) and what compiler on what system. One
- example: wxX11 2.5.5, gcc 2.95.4, Redhat 6.2
+ example: wxX11 2.6.0, gcc 2.95.4, Redhat 6.2
First steps
-----------
wx-dev@lists.wxwindows.org
-Julian Smart, Robert Roebling and Vadim Zeitlin, February 2002.
- Welcome to wxWidgets/X11 2.5.5
+ Welcome to wxWidgets/X11 2.6.0
-You have downloaded version 2.5.5 of the X11 port of
+You have downloaded version 2.6.0 of the X11 port of
the wxWidgets GUI library. This runs on X11 with no
Motif, Xt, GTK+ or any other standard widget set --
instead it uses the wxUniversal widgets. The intention