Added geometry.cpp and made it compile,
Added empty dndcmn.cpp to avoid GNU link warnings, Fixed problem with event.Skip() in new tab code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,17 +1,25 @@
|
||||
|
||||
24th January '2000: wxWindows 2.1.13 released
|
||||
|
||||
Corrections to TAB handling in notebooks.
|
||||
|
||||
Added scroll event to indicate when the thumb has
|
||||
been released (as opposed to only changed).
|
||||
|
||||
Fixed crashes with GTK Pixmap theme.
|
||||
|
||||
Fixed endianness problems in image code.
|
||||
|
||||
Minor fixes for sockets related to GUI reentrance and others.
|
||||
Minor fixes for sockets related to GUI reentrance. Also
|
||||
improved the IPV address class and added more error
|
||||
checking and rekated things.
|
||||
|
||||
Many enhancements to wxHTML, more tags supported, better support
|
||||
for non-English texts etc.
|
||||
for non-western texts etc.
|
||||
|
||||
Corrected code handling mono-bitmaps and their conversion to
|
||||
wxImage etc.
|
||||
wxImage etc. Added experimental ConvertToMonoBitmap() to
|
||||
wxImage class.
|
||||
|
||||
Fixed a few minor problems in wxListCtrl.
|
||||
|
||||
@@ -19,7 +27,7 @@ The MIME-type code in now reads KDE and GNOME mime-type bindings
|
||||
including icon information. This is used in the file dialog.
|
||||
|
||||
Small fix for problems with code that didn't changed the size of a
|
||||
window, but not its client size.
|
||||
window, but its client size and thus sent no wxSizeEvent.
|
||||
|
||||
Fixed problem with shared contexts in OpenGl canvas.
|
||||
|
||||
@@ -34,6 +42,8 @@ Revamped code for TCP based connections between programs.
|
||||
|
||||
Updates to the ODBC classes (George Tasker).
|
||||
|
||||
Build-fixes for various platforms and compilers.
|
||||
|
||||
6th January '2000: wxWindows 2.1.12 released
|
||||
|
||||
Who has a BigEndian computer (e.g. Sparc or PowerPC) that runs a 15
|
||||
|
@@ -151,7 +151,7 @@ START-UP! Just always use egcs and be happy.
|
||||
|
||||
Please send comments and question about the OS/2 installation
|
||||
to Andrea Venturoli <a.ventu@flashnet.it> and patches to
|
||||
make to me (Robert Roebling) or the wxWindows mailing list.
|
||||
the wxWindows mailing list.
|
||||
|
||||
You'll need OS/2 Warp (4.00FP#6), X-Free86/2 (3.3.3 or newer),
|
||||
GTK+ (1.2.1 or newer), emx (0.9d fix 1), flex (2.5.4), yacc (1.8),
|
||||
@@ -238,7 +238,7 @@ you download wxGTK, it will default to --with-gtk etc. But
|
||||
if you use all of our CVS repository you have to choose a
|
||||
toolkit. You must do this by running configure with either of:
|
||||
|
||||
--without-gtk Don't use the GIMP ToolKit (GTK)
|
||||
--without-gtk Don't use the GIMP ToolKit (GTK)
|
||||
|
||||
--with-motif Use either Motif or Lesstif
|
||||
Configure will look for both.
|
||||
@@ -251,14 +251,14 @@ The following options handle the kind of library you want to build.
|
||||
|
||||
--enable-static Create static libraries.
|
||||
|
||||
--disable-optimise Do not optimise the code. Can
|
||||
--disable-optimise Do not optimise the code. Can
|
||||
sometimes be useful for debugging
|
||||
and is required on some architectures
|
||||
such as Sun with gcc 2.8.X which
|
||||
would otherwise produce segvs.
|
||||
|
||||
--enable-profile Add profiling info to the object
|
||||
files. Currently broken, I think.
|
||||
files. Currently broken, I think.
|
||||
|
||||
--enable-no_rtti Enable compilation without creation of
|
||||
C++ RTTI information in object files.
|
||||
@@ -283,11 +283,11 @@ The following options handle the kind of library you want to build.
|
||||
--enable-dmalloc Use the dmalloc memory debugger.
|
||||
Read more at www.letters.com/dmalloc/
|
||||
|
||||
--enable-debug_info Add debug info to object files and
|
||||
--enable-debug_info Add debug info to object files and
|
||||
executables for use with debuggers
|
||||
such as gdb (or its many frontends).
|
||||
|
||||
--enable-debug_flag Define __DEBUG__ and __WXDEBUG__ when
|
||||
--enable-debug_flag Define __DEBUG__ and __WXDEBUG__ when
|
||||
compiling. This enable wxWindows' very
|
||||
useful internal debugging tricks (such
|
||||
as automatically reporting illegal calls)
|
||||
@@ -307,19 +307,19 @@ drastically reduced by removing features from wxWindows that
|
||||
are not used in your program. The most relevant such features
|
||||
are
|
||||
|
||||
--without-libpng Disables PNG image format code.
|
||||
--without-libpng Disables PNG image format code.
|
||||
|
||||
--without-libjpeg Disables JPEG image format code.
|
||||
--without-libjpeg Disables JPEG image format code.
|
||||
|
||||
--disable-pnm Disables PNM image format code.
|
||||
--disable-pnm Disables PNM image format code.
|
||||
|
||||
--disable-gif Disables GIF image format code.
|
||||
--disable-gif Disables GIF image format code.
|
||||
|
||||
--disable-pcx Disables PCX image format code.
|
||||
--disable-pcx Disables PCX image format code.
|
||||
|
||||
--without-odbc Disables ODBC code.
|
||||
|
||||
--disable-resources Disables the use of *.wxr type
|
||||
--disable-resources Disables the use of *.wxr type
|
||||
resources.
|
||||
|
||||
--disable-threads Disables threads. Will also
|
||||
@@ -381,7 +381,7 @@ You can remove any traces of wxWindows by typing
|
||||
If you want to save disk space by removing unnecessary
|
||||
object-files:
|
||||
|
||||
make clean
|
||||
make clean
|
||||
|
||||
in the various directories will do the work for you.
|
||||
|
||||
@@ -420,6 +420,5 @@ and configure before you can type make.
|
||||
|
||||
In the hope that it will be useful,
|
||||
|
||||
Robert Roebling <roebling@sun2.ruf.uni-freiburg.de>
|
||||
|
||||
|
||||
Robert Roebling
|
||||
|
||||
|
@@ -1,22 +1,19 @@
|
||||
|
||||
Welcome to wxWindows/Gtk 2.1.13
|
||||
|
||||
you have downloaded version 2.1 of the GTK+ 1.2 port of
|
||||
you have downloaded a beta version of the GTK+ 1.2 port of
|
||||
the wxWindows GUI library. Although this is not yet the
|
||||
final stable release wxGTK 2.2, the current version has
|
||||
been tested carefully on many systems and has been found
|
||||
to work better than any other previous version.
|
||||
|
||||
Nonetheless, beware that major changes can happen before
|
||||
Nonetheless, beware that minor changes can happen before
|
||||
a final release.
|
||||
|
||||
wxWindows no longer supports GTK 1.0 (as did some early
|
||||
snapshots) so that you will need GTK 1.2 when using it.
|
||||
|
||||
Beginning with snapshot 9, wxWindows uses a completely
|
||||
new make file system on Unix which no longer uses the
|
||||
various GNU tools and I hope that I'll never again have
|
||||
to write any more makefiles.
|
||||
GTK 1.2.6 is recommended although many programs will work
|
||||
with GTK 1.2.3 onwards.
|
||||
|
||||
More information is available from my homepage at:
|
||||
|
||||
@@ -56,6 +53,8 @@ Please send problems concerning installation, feature requests,
|
||||
bug reports or comments to the wxWindows users list. Information
|
||||
on how to subscribe is available from my homepage.
|
||||
|
||||
Do NOT send any comments directly to me.
|
||||
|
||||
wxWindows/Gtk doesn't come with any guarantee whatsoever. It
|
||||
might crash your harddisk or destroy your monitor. It doesn't
|
||||
claim to be suitable for any special or general purpose.
|
||||
|
@@ -1,7 +1,7 @@
|
||||
|
||||
-------------------- High priority ---------------------
|
||||
|
||||
More testing of Unicode support.
|
||||
Finish and extend wxPlotWindow.
|
||||
|
||||
Improve, update translations. Install *.mo files somewehere.
|
||||
|
||||
@@ -14,14 +14,17 @@ Show accelerator control labels and actually implement them
|
||||
|
||||
Right aligned checkboxes: focus highlighting is wrong, tooltips can't be set can't be set
|
||||
|
||||
OwnerDraw for wxListCtrl and others
|
||||
More testing of Unicode support.
|
||||
-> Postponed.
|
||||
|
||||
OwnerDraw for wxListCtrl and others
|
||||
-> Hardly necessary.
|
||||
|
||||
Implement wxPalette
|
||||
-> I never understood that. Postponed.
|
||||
-> Postponed.
|
||||
|
||||
Implement different visuals and displays
|
||||
-> I never understood that. Postponed.
|
||||
-> I cannot test this. Postponed.
|
||||
|
||||
Cooperation with Qt
|
||||
-> Would be nice.
|
||||
|
Reference in New Issue
Block a user