From d42ff66f686dccc4c7b530a99a6feca2e1e50f27 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Mon, 27 Jun 2005 16:00:17 +0000 Subject: [PATCH] 2005-06-27 Mike Kestner * gnome/CanvasBpath.custom : a BPath property to wrap the ugly Bpath IntPtr prop. [Fixes #75381] svn path=/trunk/gtk-sharp/; revision=46565 --- ChangeLog | 5 +++++ doc/en/Gnome/CanvasBpath.xml | 12 ++++++++++++ gnome/CanvasBpath.custom | 8 ++++++++ 3 files changed, 25 insertions(+) diff --git a/ChangeLog b/ChangeLog index 614ecba75..de9539b30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-27 Mike Kestner + + * gnome/CanvasBpath.custom : a BPath property to wrap the ugly Bpath + IntPtr prop. [Fixes #75381] + 2005-06-24 Mike Kestner * atk/Atk.metadata : couple of small api cleanups. diff --git a/doc/en/Gnome/CanvasBpath.xml b/doc/en/Gnome/CanvasBpath.xml index 3df742629..3d6d5f47d 100644 --- a/doc/en/Gnome/CanvasBpath.xml +++ b/doc/en/Gnome/CanvasBpath.xml @@ -118,5 +118,17 @@ To be added + + + Property + + Gnome.CanvasPathDef + + + The Path definition for this shape. + a describing the shape. + + + diff --git a/gnome/CanvasBpath.custom b/gnome/CanvasBpath.custom index 52ed7f0a9..204ff6f25 100644 --- a/gnome/CanvasBpath.custom +++ b/gnome/CanvasBpath.custom @@ -24,3 +24,11 @@ public CanvasBpath (Gnome.CanvasGroup group) : base (group, GType) { } +public CanvasPathDef BPath { + get { + return new CanvasPathDef (Bpath); + } + set { + Bpath = value.Handle; + } +}