Updated some comments.
authorRobert Roebling <robert@roebling.de>
Sat, 14 Sep 2002 20:49:50 +0000 (20:49 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 14 Sep 2002 20:49:50 +0000 (20:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/gtk/changes.txt
docs/gtk/install.txt

index 5866bf65b033b587d8959f4ba649153724a620b4..09443b5f32ed9306aa6fea33a56b8e4c21f72a1f 100644 (file)
@@ -1,7 +1,19 @@
 
 *** wxWindows 2.3.3 ***
 
-Beta support for GTK 2.0.
+Look at the General changes file for more encompassing on
+the changes that have taken place in 2.3.3. This file has
+not been kept uptodate. RR.
+
+Beta support for GTK 2.0. Use "configure --enable-gtk2 --enable-unicode".
+
+Lots of work locale/encoding conversion classes.
+
+Large changes in wxThread/wxCondition code.
+
+wxLocale detects the system language on all ports.
+
+Corrected wxFrame::ShowFullScreen().
 
 Added wxArtProvider for changing default icons and more.
 
@@ -54,7 +66,8 @@ wxFont's accessors.
 
 Added IFF image handler.
 
-Added ICO, CUR and ANI image handler.
+Added ICO, CUR and ANI image handler. Added image handler
+for several image per file (GIF, TIFF).
 
 wxFrame::SetMenuBar() corrected (for NULL etc.)
 
index 168a270a2b08e2425a4674a6d05f1884a8855031..e57ebdf5d115007567767d4f596e58f01635d88e 100644 (file)
@@ -41,6 +41,30 @@ If you want to remove wxWindows on Unix you can do this:
 > ldconfig
 > exit
 
+* The GTK+ 2 case
+-----------------
+
+wxGTK 2.3.3 has support for the new version 2.0.X of GTK+. This means
+that wxGTK apps can now make use Unicode as the underlying encoding
+for all text operations. This is a very fundamental change and will
+need time to stabilize, so be careful. Anyways, after installing a
+recent version of GTK+ 2.0, do this
+
+> ./configure --with-gtk --enable-gtk2 --enable-unicode
+> make
+> su <type root password>
+> make install
+> ldconfig
+> exit
+
+If you are adventurous, you can install the FcConfig 2.0 package
+and the Pango library from CVS (or a very recent snapshot from
+the upcoming 1.2 series) and set do "export GDK_USE_XFT=1" so
+that the display as well as the printing code will use render
+using the same FreeType code even for Far Eastern encodings.
+
+Expect problems.
+
 * The expert case
 -----------------