2004-08-13 17:33:46 +00:00
|
|
|
// TextBuffer.custom - customizations to Gtk.TextBuffer.
|
|
|
|
//
|
|
|
|
// Authors: Mike Kestner <mkestner@ximian.com>
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004 Novell, Inc.
|
2004-06-25 18:42:19 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2004-08-13 17:33:46 +00:00
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_text_buffer_set_text (IntPtr raw, string text, int len);
|
|
|
|
|
2002-11-29 18:08:54 +00:00
|
|
|
public string Text {
|
|
|
|
get {
|
|
|
|
return GetText (StartIter, EndIter, false);
|
|
|
|
}
|
|
|
|
set {
|
2004-08-13 17:33:46 +00:00
|
|
|
gtk_text_buffer_set_text (Handle, value, -1);
|
2002-11-29 18:08:54 +00:00
|
|
|
}
|
2002-08-25 05:49:38 +00:00
|
|
|
}
|
2003-01-05 23:48:45 +00:00
|
|
|
|
|
|
|
public void Clear ()
|
|
|
|
{
|
2004-12-03 18:00:30 +00:00
|
|
|
Gtk.TextIter start = StartIter, end = EndIter;
|
|
|
|
Delete (ref start, ref end);
|
2003-01-05 23:48:45 +00:00
|
|
|
}
|
2003-02-27 05:41:32 +00:00
|
|
|
|
2003-07-12 04:09:00 +00:00
|
|
|
// overload to paste clipboard contents at cursor editable by default.
|
2004-01-27 21:01:08 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_text_buffer_paste_clipboard (IntPtr raw, IntPtr clip, IntPtr iter, bool default_edit);
|
2004-08-13 17:33:46 +00:00
|
|
|
|
2003-07-12 04:09:00 +00:00
|
|
|
public void PasteClipboard (Gtk.Clipboard clipboard)
|
|
|
|
{
|
|
|
|
gtk_text_buffer_paste_clipboard(Handle, clipboard.Handle, IntPtr.Zero, true);
|
|
|
|
}
|
|
|
|
|
2004-08-13 17:33:46 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_text_buffer_insert (IntPtr raw, ref Gtk.TextIter iter, string text, int len);
|
|
|
|
|
2004-12-03 18:00:30 +00:00
|
|
|
public void Insert (ref Gtk.TextIter iter, string text)
|
2004-08-13 17:33:46 +00:00
|
|
|
{
|
|
|
|
gtk_text_buffer_insert (Handle, ref iter, text, -1);
|
|
|
|
}
|
|
|
|
|
2004-12-03 18:00:30 +00:00
|
|
|
public void InsertWithTags (ref TextIter iter, string text, params TextTag[] tags)
|
2004-02-19 23:18:43 +00:00
|
|
|
{
|
2004-02-23 17:43:13 +00:00
|
|
|
TextIter start;
|
|
|
|
int offset = iter.Offset;
|
2004-12-03 18:00:30 +00:00
|
|
|
Insert (ref iter, text);
|
2004-02-23 17:43:13 +00:00
|
|
|
|
|
|
|
start = GetIterAtOffset (offset);
|
|
|
|
iter = GetIterAtOffset (offset + text.Length);
|
2004-02-19 23:18:43 +00:00
|
|
|
|
|
|
|
foreach (TextTag t in tags)
|
2004-02-23 17:43:13 +00:00
|
|
|
this.ApplyTag (t, start, iter);
|
2004-02-19 23:18:43 +00:00
|
|
|
}
|
|
|
|
|
2004-12-03 18:00:30 +00:00
|
|
|
public void InsertWithTagsByName (ref TextIter iter, string text, params string[] tagnames)
|
|
|
|
{
|
|
|
|
TextIter start;
|
|
|
|
int offset = iter.Offset;
|
|
|
|
Insert (ref iter, text);
|
|
|
|
|
|
|
|
start = GetIterAtOffset (offset);
|
|
|
|
iter = GetIterAtOffset (offset + text.Length);
|
|
|
|
|
|
|
|
foreach (string tagname in tagnames) {
|
|
|
|
TextTag tag = TagTable.Lookup (tagname);
|
|
|
|
if (tag != null)
|
|
|
|
this.ApplyTag (tag, start, iter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-05 18:54:51 +00:00
|
|
|
[Obsolete("Use the TextBuffer.Text property's setter")]
|
2004-08-13 17:33:46 +00:00
|
|
|
public void SetText (string text)
|
|
|
|
{
|
2005-01-05 18:12:16 +00:00
|
|
|
Text = text;
|
2004-08-13 17:33:46 +00:00
|
|
|
}
|
|
|
|
|
2004-08-19 15:42:15 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern bool gtk_text_buffer_insert_interactive(IntPtr raw, ref Gtk.TextIter iter, string text, int len, bool default_editable);
|
|
|
|
|
2004-12-03 18:00:30 +00:00
|
|
|
public bool InsertInteractive(ref Gtk.TextIter iter, string text, bool default_editable)
|
2004-08-19 15:42:15 +00:00
|
|
|
{
|
|
|
|
return gtk_text_buffer_insert_interactive(Handle, ref iter, text, -1, default_editable);
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern bool gtk_text_buffer_insert_interactive_at_cursor(IntPtr raw, string text, int len, bool default_editable);
|
|
|
|
|
|
|
|
public bool InsertInteractiveAtCursor(string text, bool default_editable)
|
|
|
|
{
|
|
|
|
return gtk_text_buffer_insert_interactive_at_cursor(Handle, text, -1, default_editable);
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_text_buffer_insert_at_cursor(IntPtr raw, string text, int len);
|
|
|
|
|
|
|
|
public void InsertAtCursor(string text)
|
|
|
|
{
|
|
|
|
gtk_text_buffer_insert_at_cursor(Handle, text, -1);
|
|
|
|
}
|
2004-10-29 20:33:07 +00:00
|
|
|
|