mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 19:25:37 +00:00
c2d4c12e67
like void Foobar (..., out int baz, ...) are turned into the more .NET like signature int Foobar (...), this fixes bug 46392 * generator/Signature.cs: Ditto * generator/MethodBody.cs: Ditto * gtk/ListStore.custom: Ditto * gtk/TextBuffer.custom: Ditto * gtk/TreeStore.custom: Ditto svn path=/trunk/gtk-sharp/; revision=22126
25 lines
599 B
Plaintext
25 lines
599 B
Plaintext
public string Text {
|
|
get {
|
|
return GetText (StartIter, EndIter, false);
|
|
}
|
|
|
|
set {
|
|
gtk_text_buffer_set_text (Handle, value,
|
|
System.Text.Encoding.UTF8.GetByteCount(value));
|
|
}
|
|
}
|
|
|
|
public void Clear ()
|
|
{
|
|
Delete (StartIter, EndIter);
|
|
}
|
|
|
|
// overload to paste clipboard contents at cursor editable by default.
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern void gtk_text_buffer_paste_clipboard (IntPtr raw, IntPtr clip, IntPtr iter, bool default_edit);
|
|
public void PasteClipboard (Gtk.Clipboard clipboard)
|
|
{
|
|
gtk_text_buffer_paste_clipboard(Handle, clipboard.Handle, IntPtr.Zero, true);
|
|
}
|
|
|