]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/readme.txt
Compilation fix for wxMSW with wxUSE_MSGBOX_HOOK==0.
[wxWidgets.git] / docs / readme.txt
... / ...
CommitLineData
1 wxWidgets 2.9.5 Release Notes
2 =============================
3
4Welcome to the latest release of wxWidgets, a free cross-platform C++
5framework for writing advanced GUI applications using native controls.
6
7
8In addition to common and advanced GUI facilities such as frames,
9scrolling windows, toolbars, tree controls, icons, device contexts,
10printing, splitter windows and so on, there are wrappers for common
11file operations, facilities for writing network applications,
12thread handling, and so on. You can learn more about wxWidgets at
13
14 http://www.wxwidgets.org/
15
16
17wxWidgets sources are available for download from
18
19 https://sourceforge.net/projects/wxwindows/files/2.9.5/
20
21or
22
23 ftp://ftp.wxwidgets.org/pub/2.9.5/
24
25Please see the "Files" section below for the description of various
26files available at these locations.
27
28
29A detailed reference manual including in-depth overviews for various
30topics is supplied in various formats and can be accessed online at
31
32 http://docs.wxwidgets.org/2.9.5/
33
34
35Note about naming: while 2.9.5 is called a "development" release,
36this only means that API is not guaranteed to remain unchanged in the
37subsequent 2.9.x releases (although it is still likely that it will),
38unlike in the stable 2.8.x branch. We believe the current version is
39stable and suitable for use in production environment.
40
41
42
43Changes in this release
44-----------------------
45
46This release contains several years worth of improvements compared
47to 2.8 version. Notably, Unicode support has been completely
48overhauled and made much easier to use. Debugging support, including
49when using a release build of the library, was much improved making
50it less likely that you use the library incorrectly. Many new GUI
51and base classes have been added or improved.
52
53Compared to the previous 2.9.4 release the most important change at
54the API level is the introduction of new, shorter constants for the
55event types making code using Bind() for dynamic event handling easier
56to both write and read. But the main focus of this release is on
57incremental improvements and fixing defects in preparation for 3.0
58release. In particular, wxOSX/Cocoa port has been significantly
59improved. And there were fixes to the still exprimental wxGTK3 port
60which now also support GTK+ Broadway (HTML5-based) backend.
61
62Please see the file docs/changes.txt for more details and make sure
63to read the section "Incompatible changes since 2.8" if you upgrade
64from a previous wxWidgets release.
65
66This release introduces many important changes and we are looking
67forward to your feedback about them. In particular please let us
68know about any regressions compared to the previous versions (see
69the section "Bug reporting" below) so that we could fix them before
703.0 release.
71
72
73Platforms supported
74-------------------
75
76wxWidgets currently supports the following primary platforms:
77
78- Windows 95/98/ME, NT, 2000, XP, Vista, 7
79- Most Unix variants using the GTK+ toolkit (version 2.6 or newer)
80- Mac OS X (10.5 or newer) using either Carbon or Cocoa
81
82There is some support for the following platforms:
83
84- Most Unix variants with X11
85- Most Unix variants with Motif/Lesstif
86- Most Unix variants with GTK+ 1.2
87- Most Unix variants with GTK+ 3 (still in development)
88- OS/2
89- Windows CE (Pocket PC)
90
91Most popular C++ compilers are supported; see the install.txt
92file for each platform (available via docs/html/index.htm) and
93http://wiki.wxwidgets.org/Supported_Platforms for the most up to
94date status.
95
96
97Files
98-----
99
100wxWidgets is distributed in source form in several archive formats.
101ZIP and 7z archives are for Microsoft Windows users and contain the
102files with DOS/Windows line endings while the compressed tar archives
103for Unix systems users (including OS X) and contain the files with
104Unix line endings. Please notice that some Windows tools still don't
105accept files with Unix line endings and that compiling sources with
106DOS line endings under Unix will fail, so please choose the correct
107file for your system.
108
109In addition to the sources, documentation in HTML, CHM and HTB
110(wxWidgets help viewer) formats is provided as well as an installer
111for Microsoft Windows. Notice that you will still need to compile
112wxWidgets even when using the installer.
113
114Experimentally, we also supply binaries of wxMSW libraries built
115with several versions of Microsoft Visual C++ compiler for this
116release. They are available in the "binaries" subdirectory, see
117the description of the files in the README file there.
118
119
120Installation
121------------
122
123wxWidgets needs to be compiled before you can test out the samples
124or write your own applications. For installation information, please
125see the install.txt file in the docs subdirectory appropriate for
126the platform you use.
127
128
129Licence information
130-------------------
131
132For licensing information, please see the files:
133
134 docs/preamble.txt
135 docs/licence.txt
136 docs/licendoc.txt
137 docs/gpl.txt
138 docs/lgpl.txt
139 docs/xserver.txt
140
141Although this may seem complex, it is there to allow authors of
142proprietary/commercial applications to use wxWidgets in addition
143to those writing GPL'ed applications. In summary, the licence is
144LGPL plus a clause allowing unrestricted distribution of
145application binaries. To answer a FAQ, you don't have to
146distribute any source if you wish to write commercial
147applications using wxWidgets.
148
149However, if you distribute wxGTK or wxMotif (with Lesstif)
150version of your application, don't forget that it is linked
151against GTK+ (or Lesstif) which is covered by LGPL *without*
152exception notice. Under Linux systems your app is probably linked
153against LGPL glibc as well. Please read carefully LGPL, section
1546. which describes conditions for distribution of closed source
155applications linked against LGPL library. Basically you should
156link dynamically and include source code of LGPL libraries with
157your product (unless it is already present in user's system -
158like glibc usually is).
159
160If you use TIFF image handler, please see src/tiff/COPYRIGHT
161for libtiff licence details.
162
163If you use JPEG image handler, documentation for your program
164should contain following sentence: "This software is based in
165part on the work of the Independent JPEG Group". See
166src/jpeg/README for details.
167
168If you use wxRegEx class on a system without native regular
169expressions support (i.e. MS Windows), see src/regex/COPYRIGHT
170file for Henry Spencer's regular expression library copyright.
171
172If you use wxXML classes or XRC, see src/expat/COPYING for licence details.
173
174
175Documentation
176-------------
177
178wxWidgets documentation is available online at
179http://docs.wxwidgets.org/2.9.5/ and can also be downloaded in HTML
180format. To generate documentation in other formats (PDF, CHM, ...)
181please use the scripts in docs/doxygen directory.
182
183
184Bug reporting
185-------------
186
187The wxWidgets bug tracker can be browsed at:
188
189 http://trac.wxwidgets.org/report
190
191Please use the search function of our Trac installation to find
192any possibly relevant bugs before reporting new ones. Also please
193notice that often trying to correct the bug yourself is the
194quickest way to fix it. Even if you fail to do it, you may
195discover valuable information allowing us to fix it while doing
196it. We also give much higher priority to bug reports with patches
197fixing the problems so this ensures that your report will be
198addressed sooner.
199
200
201Further information
202-------------------
203
204The wxWidgets Web site is located at:
205
206 http://www.wxwidgets.org/
207
208The main wxWidgets ftp site is at:
209
210 ftp://ftp.wxwidgets.org/pub/
211
212A wxWidgets CD-ROM with the latest distribution plus an HTML
213front-end and hundreds of MB of compilers, utilities and other
214material may be ordered from the CD-ROM page: see the wxWidgets
215web site.
216
217Have fun!
218
219The wxWidgets Team, July 2013