Here it comes:

Doc updates
  Makefile doesn't strip anylonger
  Makefile adapted to /src/unix etc
  Added wxLB_ALWAYS_SB
  Added MWM window manager hints
  Fixed event handling bugs that (among others) caused
    the wxListBox misbeahiour
  Rwwrote GtkmyFixed for GTK 1.2
  Made data requests etc in wxClipboadr asynchronous
  Added underscores to menus (some)
  Tried in vain to make wxTextCtrl (and its GtkTable)
    behave correctly. The bottom text control in the
    controls samples still misbehaves upon start-up.
  did I change notebook.cpp ?


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-04-09 18:01:17 +00:00
parent c84fb40aab
commit 034be8882c
40 changed files with 1338 additions and 664 deletions

View File

@@ -6,12 +6,16 @@ like to read install instructions just do (in the base dir):
./configure
make
su <type root password>
make install
ldconfig
exit
* The most simple errors
------------------------
configure reports, that you don't have GTK 1.0.X installed
configure reports, that you don't have GTK 1.X installed
although you are certainly sure you have. Well, you have
installed it, but you also have another version of the
GTK installed, which you may need to removed including
@@ -53,18 +57,16 @@ this has no effect, but I tried...
-----------------------
wxWindows/GTK requires the GTK+ library to be installed on your system.
It has to be a stable version, preferebly version 1.0.6. When using
a version previous to 1.0.6 you'll might get crashes here and there.
It has to be a stable version, preferebly version 1.2.1. It might also
work with the 1.0 series, but I didn't test that any longer.
wxWindows/GTK does NOT work with the 1.1.X versions of the GTK+ library
and we will wait until the 1.2 version comes out and has stabilized
until we'll work with that library.
wxWindows/GTK does NOT work with the 1.1.X versions of the GTK+ library.
You can get the newest version of the GTK+ from the GTK homepage
at
http://www.gtk.org
We also mirror GTK+ 1.0.6 at my ftp site. You'll find information
We also mirror GTK+ 1.2.1 at my ftp site. You'll find information
about downloading at my homepage.
* Additional libraries
@@ -92,7 +94,10 @@ You can enable thread support by running
./configure "--with-threads"
make clean
make
su <type root password>
make install
ldconfig
exit
NB: I included thread support in wxWindows/Gtk, as this
problem will disappear in the near future when all major

View File

@@ -1,8 +1,11 @@
Welcome to wxWindows/Gtk 2.0.1,
Welcome to wxWindows/Gtk 2.1 beta 1,
you have downloaded version 2.0.1 of the GTK+ 1.0 port of
the wxWindows GUI library.
you have downloaded version 2.1 of the GTK+ 1.2 port of
the wxWindows 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 -
Particularly the makefile system will change entirly.
More information is available from my homepage at:
@@ -20,7 +23,10 @@ all systems
./configure
make
su <type root password>
ldconfig
make install
exit
Type the following to make the samples
@@ -42,7 +48,7 @@ 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_gtk2.a (static) and libwx_gtk2.so.0.1 (shared) so that
libwx_gtk2.a (static) and libwx_gtk2.so.1.0 (shared) so that
once a binary incompatible version of wxWindows/Gtk comes out
we'll augment library version number to avoid linking problems.

View File

@@ -1,10 +1,13 @@
-------------------- High priority ---------------------
DnD
-> Must be rewritten for GTK+ 1.2
-------------------- Medium priority ---------------------
Show accelerator in menus and control labels and actually implement them
-> Changed in GTK 1.2 (so let's do it for 1.2). Postponed.
Show accelerator control labels and actually implement them
-> Changed in GTK 1.2 (so let's do it for 1.2). Difficult.
-------------------- Low priority ---------------------
@@ -13,9 +16,6 @@ Right aligned checkboxes: focus highlighting is wrong, tooltips can't be set
OwnerDraw for wxListCtrl and others
-> Postponed.
DnD
-> Must be rewritten for GTK+ 1.2
Implement wxPalette
-> I never understood that. Postponed.