I am trying to code a class that will allow rich text to be pasted into a Gtk.TextView. The application is in C#. I am using mono to run it.
But when I use, for example:
void OnInsertText (object sender, Gtk.InsertTextArgs args)
{
Gtk.TextTagTable table = new Gtk.TextTagTable ();
Gtk.TextBuffer aTextBuffer = new Gtk.TextBuffer (table);
clipboard.RequestRichText (aTextBuffer, OnRichTextReceived);
}
I get:
Stacktrace:
at (wrapper managed-to-native) Gtk.Clipboard.gtk_clipboard_request_rich_text (intptr,intptr,Gtk.Clipboard/RichTextReceivedFuncNative,intptr) at Gtk.Clipboard.RequestRichText (Gtk.TextBuffer,Gtk.Clipboard/RichTextReceivedFunc) at Tomboy.RichTextPasteWatcher.OnInsertText (object,Gtk.InsertTextArgs) [0x0000d] in /home/andrew/Projects/tomboy/stage/Tomboy/Watchers.cs:40 at (wrapper runtime-invoke) .runtime_invoke_void_this__object_object (object,intptr,intptr,intptr) at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) at System.Reflection.MonoMethod.Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x000d5] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System.Reflection/MonoMethod.cs:226 at System.Reflection.MethodBase.Invoke (object,object[]) [0x00000] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System.Reflection/MethodBase.cs:96 at System.Delegate.DynamicInvokeImpl (object[]) [0x000bf] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/Delegate.cs:408 at System.MulticastDelegate.DynamicInvokeImpl (object[]) [0x00018] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/MulticastDelegate.cs:70 at System.MulticastDelegate.DynamicInvokeImpl (object[]) [0x0000b] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/MulticastDelegate.cs:68 at System.MulticastDelegate.DynamicInvokeImpl (object[]) [0x0000b] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/MulticastDelegate.cs:68 at System.MulticastDelegate.DynamicInvokeImpl (object[]) [0x0000b] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/MulticastDelegate.cs:68 at System.Delegate.DynamicInvoke (object[]) [0x00000] in /build/buildd/mono-2.10.8.1/mcs/class/corlib/System/Delegate.cs:382 at GLib.Signal.ClosureInvokedCB (object,GLib.ClosureInvokedArgs) at GLib.SignalClosure.Invoke (GLib.ClosureInvokedArgs) at GLib.SignalClosure.MarshalCallback (intptr,intptr,uint,intptr,intptr,intptr) at (wrapper native-to-managed) GLib.SignalClosure.MarshalCallback (intptr,intptr,uint,intptr,intptr,intptr) at (wrapper managed-to-native) Gtk.Application.gtk_main () at Gtk.Application.Run () at Tomboy.GnomeApplication.StartMainLoop () [0x00000] in /home/andrew/Projects/tomboy/stage/Tomboy/GnomeApplication.cs:113 at Tomboy.Application.StartMainLoop () [0x00000] in /home/andrew/Projects/tomboy/stage/Tomboy/Utils.cs:1016 at Tomboy.Tomboy.StartTrayIcon () [0x0001e] in /home/andrew/Projects/tomboy/stage/Tomboy/Tomboy.cs:199 at Tomboy.Tomboy.Main (string[]) [0x0015a] in /home/andrew/Projects/tomboy/stage/Tomboy/Tomboy.cs:156 at (wrapper runtime-invoke) .runtime_invoke_void_object (object,intptr,intptr,intptr)
I must be using it wrong, but the GTK# documentation at http://docs.go-mono.com/?link=M%3aGtk.Clipboard.RequestRichText(Gtk.TextBuffer%2cGtk.Clipboard%2bRichTextReceivedFunc doesn't give any hints.