[Mono-bugs] [Bug 74585][Wis] Changed - [PATCH] Mono.Cairo binding to add 2 functions
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 14 Apr 2005 15:36:25 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by pedro@kiefer.com.br.
http://bugzilla.ximian.com/show_bug.cgi?id=74585
--- shadow/74585 2005-04-12 18:58:02.000000000 -0400
+++ shadow/74585.tmp.7987 2005-04-14 15:36:25.000000000 -0400
@@ -1,16 +1,16 @@
Bug#: 74585
Product: Mono: Class Libraries
Version: 1.0
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Wishlist
-Component: CORLIB
+Component: Sys.Drawing.
AssignedTo: mono-bugs@ximian.com
ReportedBy: pedro@kiefer.com.br
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
@@ -61,6 +61,60 @@
+ return CairoAPI.cairo_in_fill (state, x, y);
+ }
+
#endregion
public void Clip ()
+
+------- Additional Comments From pedro@kiefer.com.br 2005-04-14 15:36 -------
+I've made a small mistake while copying-pasting the functions to
+maintain its identing. This is the correct patch.
+
+--- cut ---
+
+diff -Nura Mono.Cairo.Original/Mono.Cairo/Cairo.cs
+Mono.Cairo/Mono.Cairo/Cairo.cs
+--- Mono.Cairo.Original/Mono.Cairo/Cairo.cs 2004-06-22
+00:46:33.000000000 -0300
++++ Mono.Cairo/Mono.Cairo/Cairo.cs 2005-04-12 18:30:53.341837552
+-0300
+@@ -269,6 +269,14 @@
+ IntPtr cr, out double x, out double y);
+
+ [DllImport (CairoImp)]
++ public static extern bool cairo_in_stroke (
++ IntPtr cr, double x, double y);
++
++ [DllImport (CairoImp)]
++ public static extern bool cairo_in_fill (
++ IntPtr cr, double x, double y);
++
++ [DllImport (CairoImp)]
+ public static extern Cairo.FillRule
+cairo_current_fill_rule
+(IntPtr cr);
+
+ [DllImport (CairoImp)]
+diff -Nura Mono.Cairo.Original/Mono.Cairo/Graphics.cs
+Mono.Cairo/Mono.Cairo/Graphics.cs
+--- Mono.Cairo.Original/Mono.Cairo/Graphics.cs 2004-06-22
+00:46:33.000000000 -0300
++++ Mono.Cairo/Mono.Cairo/Graphics.cs 2005-04-12 18:30:23.983300728
+-0300
+@@ -309,6 +309,16 @@
+ CairoAPI.cairo_fill (state);
+ }
+
++ public bool InStroke (double x, double y)
++ {
++ return CairoAPI.cairo_in_stroke (state, x, y);
++ }
++
++ public bool InFill (double x, double y)
++ {
++ return CairoAPI.cairo_in_fill (state, x, y);
++ }
++
+ #endregion
+
+ public void Clip ()
+