From 498028ccb02e831e5ac600a060563476916cbf72 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Tue, 17 Jan 2006 19:19:58 +0000 Subject: [PATCH] 2005-01-17 Mike Kestner * gnome/Canvas.custom : add a ctor (bool is_aa) using the construct-only prop. [Fixes #77017] svn path=/trunk/gtk-sharp/; revision=55690 --- ChangeLog | 6 ++++++ doc/en/GLib/Thread.xml | 12 ++++++++++++ doc/en/Gdk/Window.xml | 2 +- doc/en/Gnome/Canvas.xml | 13 +++++++++++++ doc/en/Gtk.DotNet/Graphics.xml | 2 +- doc/en/Gtk/AccelGroup.xml | 2 +- doc/en/Gtk/ItemFactory.xml | 2 +- doc/en/Gtk/Table.xml | 2 +- doc/en/Gtk/TextBuffer.xml | 2 +- doc/en/Gtk/Window.xml | 2 +- doc/en/Pango/Script.xml | 14 +++++++------- gnome/Canvas.custom | 13 +++++++++++-- 12 files changed, 56 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index cd9e555a8..b9ea255de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-01-17 Mike Kestner + + * gnome/Canvas.custom : add a ctor (bool is_aa) using the + construct-only prop. + [Fixes #77017] + 2006-01-17 Wade Berrier * Have vte-sharp only depend on gtk-sharp instead of gnome-sharp diff --git a/doc/en/GLib/Thread.xml b/doc/en/GLib/Thread.xml index 504b1ef4b..b7b9940a8 100644 --- a/doc/en/GLib/Thread.xml +++ b/doc/en/GLib/Thread.xml @@ -28,5 +28,17 @@ To be added + + + Property + + System.Boolean + + + To be added. + To be added. + To be added. + + diff --git a/doc/en/Gdk/Window.xml b/doc/en/Gdk/Window.xml index 9e8ed97d7..991eeb318 100644 --- a/doc/en/Gdk/Window.xml +++ b/doc/en/Gdk/Window.xml @@ -2028,4 +2028,4 @@ The color must be allocated; - \ No newline at end of file + diff --git a/doc/en/Gnome/Canvas.xml b/doc/en/Gnome/Canvas.xml index ccbdcbb7e..22a7bcce6 100644 --- a/doc/en/Gnome/Canvas.xml +++ b/doc/en/Gnome/Canvas.xml @@ -956,5 +956,18 @@ Override this method in a subclass to provide a default handler for the event. + + + Constructor + + + + + if an antialiased canvas should be created. + Constructs a canvas with or without antialiasing. + + + + diff --git a/doc/en/Gtk.DotNet/Graphics.xml b/doc/en/Gtk.DotNet/Graphics.xml index 7cb472476..0a2b96846 100644 --- a/doc/en/Gtk.DotNet/Graphics.xml +++ b/doc/en/Gtk.DotNet/Graphics.xml @@ -81,4 +81,4 @@ class PrettyGraphic : DrawingArea { - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelGroup.xml b/doc/en/Gtk/AccelGroup.xml index 7c92b4067..58766d003 100644 --- a/doc/en/Gtk/AccelGroup.xml +++ b/doc/en/Gtk/AccelGroup.xml @@ -362,4 +362,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemFactory.xml b/doc/en/Gtk/ItemFactory.xml index 64909bff7..eda96d7ec 100644 --- a/doc/en/Gtk/ItemFactory.xml +++ b/doc/en/Gtk/ItemFactory.xml @@ -543,4 +543,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Table.xml b/doc/en/Gtk/Table.xml index 72cb9353e..97e8e1138 100644 --- a/doc/en/Gtk/Table.xml +++ b/doc/en/Gtk/Table.xml @@ -379,4 +379,4 @@ public Widget MakeTableTester() - \ No newline at end of file + diff --git a/doc/en/Gtk/TextBuffer.xml b/doc/en/Gtk/TextBuffer.xml index 9f487b73d..83157c333 100644 --- a/doc/en/Gtk/TextBuffer.xml +++ b/doc/en/Gtk/TextBuffer.xml @@ -1886,4 +1886,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Window.xml b/doc/en/Gtk/Window.xml index 6aac466e3..3067b6f15 100644 --- a/doc/en/Gtk/Window.xml +++ b/doc/en/Gtk/Window.xml @@ -1947,4 +1947,4 @@ Sometimes when you think you want to use allow_shrink, the real problem is that - \ No newline at end of file + diff --git a/doc/en/Pango/Script.xml b/doc/en/Pango/Script.xml index f0ffcaef3..75bdba073 100644 --- a/doc/en/Pango/Script.xml +++ b/doc/en/Pango/Script.xml @@ -795,7 +795,7 @@ Kharoshthi - + @@ -806,7 +806,7 @@ NewTaiLue - + @@ -817,7 +817,7 @@ Tifinagh - + @@ -828,7 +828,7 @@ Buginese - + @@ -839,7 +839,7 @@ Glagolitic - + @@ -850,7 +850,7 @@ OldPersian - + @@ -861,7 +861,7 @@ SylotiNagri - + diff --git a/gnome/Canvas.custom b/gnome/Canvas.custom index 292167b79..74336456f 100644 --- a/gnome/Canvas.custom +++ b/gnome/Canvas.custom @@ -2,10 +2,10 @@ // Gnome.Canvas.custom - Gnome Canvas class customizations // // Author: Duncan Mak (duncan@ximian.com) -// Mike Kestner +// Mike Kestner // // Copyright (C) 2003 Duncan Mak -// Copyright (C) 2004 Novell, Inc. +// Copyright (C) 2004-2006 Novell, Inc. // // This code is inserted after the automatically generated code. // @@ -32,3 +32,12 @@ affine = new double [6]; gnome_canvas_w2c_affine(Handle, affine); } + + public Canvas (bool is_aa) : base (IntPtr.Zero) + { + string[] names = {"aa"}; + GLib.Value[] vals = new GLib.Value [1]; + vals [0] = new GLib.Value (is_aa); + CreateNativeObject (names, vals); + } +