[gtkmm-documentation] Remove mentions of the removed gdk-drawing chapter.



commit e8f3babbda2ac5403668ea3109b173383fe1f822
Author: Murray Cumming <murrayc murrayc com>
Date:   Thu Feb 25 10:40:52 2010 +0100

    Remove mentions of the
    removed gdk-drawing chapter.

 ChangeLog                             |   11 +++++++++--
 docs/tutorial/C/gtkmm-tutorial-in.xml |   14 ++++----------
 2 files changed, 13 insertions(+), 12 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index de41a46..79d6191 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-02-25  Murray Cumming  <murrayc murrayc com>
+
+	* docs/tutorial/C/gtkmm-tutorial-in.xml: Remove mentions of the
+	removed gdk-drawing chapter.
+
+2.19.3:
+
 2010-02-11  Murray Cumming  <murrayc murrayc com>
 
 	Basics: Add mixing C and C++ APIs section.
@@ -24,10 +31,10 @@
 2010-01-31  Murray Cumming  <murrayc murrayc com>
 
   menus_and_toolbars example: Minor improvement.
-  
+
 	* examples/book/menus_and_toolbars/examplewindow.cc: add_stock_item():
   Do not use a null pixbuf, if the icon file can't be loaded.
-  
+
 2010-01-27  Murray Cumming  <murrayc murrayc com>
 
 	Remove FAQ - moved to live.gnome.org/gtkmm/FAQ
diff --git a/docs/tutorial/C/gtkmm-tutorial-in.xml b/docs/tutorial/C/gtkmm-tutorial-in.xml
index aca6e5f..abfd914 100644
--- a/docs/tutorial/C/gtkmm-tutorial-in.xml
+++ b/docs/tutorial/C/gtkmm-tutorial-in.xml
@@ -4377,17 +4377,11 @@ font.
     most often done by overriding the virtual
     <methodname>on_expose_event()</methodname> member function.
   </para>
-  <note>
+
   <para>
-      Before &gtkmm; version 2.10, drawing was mostly done with Graphics Contexts
-      (<classname>Gdk::GC</classname>) and other GDK drawing functions, but this
-      has been largely superceded by the <ulink
-          url="http://cairographics.org";>Cairo</ulink> graphics library and its
-      C++ binding <application>Cairomm</application>. See the <link linkend="chapter-gdk-drawing">Gdk Appendix</link> for a description of the deprecated GDK techniques. In general, the Cairo drawing API is simpler than the GDK one, and it is
-      generally recommended to use the Cairo drawing methods wherever possible
-      in preference to the older GDK drawing methods.
+      GTK+ uses the <ulink url="http://cairographics.org";>Cairo</ulink> drawing API.
+      With gtkmm, you may use the <ulink url="http://www.cairographics.org/cairomm/";>cairomm</ulink> C++ API for cairo.
   </para>
-  </note>
 
   <para>
       You can draw very sophisticated shapes using Cairo, but the methods to do
@@ -4461,7 +4455,7 @@ myContext->set_line_width(2.0);</programlisting>
         <methodname>set_font_face()</methodname> and others).
         There are many other settings as well, such as transformation matrices,
         fill rules, whether to perform antialiasing, and others.  For further
-        information, see the Cairomm API documentation.
+        information, see the <ulink url="http://www.cairographics.org/cairomm/";>cairomm</ulink> API documentation.
     </para>
     <para>
         The current state of a <classname>Cairo::Context</classname> can be



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]