forked from AuroraMiddleware/gtk
39339f14f5
Thu Sep 14 12:21:12 2000 Owen Taylor <otaylor@redhat.com> * gtk/gtktexttypes.[ch]: Remove g_convert (moved to glib) and now useless utf_to_latin1() latin1_to_utf() * gtk/gtktextview.[ch]: Change ::move_insert and ::delete_text action signals to ::move and ::delete; create the signals with the right enumeration type, not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d, C-v bindings, change Home, End to move to beginning/end of line, Add C-Home C-End to move to beginning/end of buffer. Change ::cut_text to ::cut_clipboard, etc; combine ::scroll_text into ::move; use new GtkSelectionData functions to simplify DND text handling. * gtk/gtkenums.h gtk/gtktextview.h: Move movement, deletion enumerations here, rename enumeration values to be consistently plural. * gtk/gtktextbuffer.c: Use new clipboard interfaces for cut/copy/paste and primary selection. * gtk/gtktextbuffer.[ch]: Remove excess time and 'interactive' arguments from cut/copy/paste; rename cut to cut_clipboard, etc; remove gtk_text_buffer_get_clipboard_contents(). * gtk/gtktextlayout.[ch]: Add gtk_text_layout_move_iter_to_line_end() to move the iter to line ends. * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text): Functions to set or get a UTF-8 string on the selection data. * gtk/gtkclipboard.[ch]: New, simplified selection handling interfaces. * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly created widgets - one of these is useless if we don't. * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export a public function clear all targets registered for the widget. * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt: Never call gtk_widget_realize() - that was just asking for bizarre side-effects. * gtk/gtkselection.c (gtk_selection_owner_set): Call gdk_selection_owner_set even if the widget is the same so that we reliably update the timestamp on the server. * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a gdk_x11_get_server_time() function. * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h: Add some tricky filtering on serial numbers for selection clear events to fix up long-standard race condition FIXME's in gtkselection.c. * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add routines to convert from utf8 to compound text or STRING and from a text property to UTF-8. * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add a convenience function gdk_get_current_event_time(). * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy and free selection_data->data properly
268 lines
12 KiB
C
268 lines
12 KiB
C
#ifndef GTK_TEXT_BUFFER_H
|
|
#define GTK_TEXT_BUFFER_H
|
|
|
|
#include <gtk/gtkwidget.h>
|
|
#include <gtk/gtktexttagtable.h>
|
|
#include <gtk/gtktextiter.h>
|
|
#include <gtk/gtktextmark.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/*
|
|
* This is the PUBLIC representation of a text buffer.
|
|
* GtkTextBTree is the PRIVATE internal representation of it.
|
|
*/
|
|
|
|
typedef struct _GtkTextBTree GtkTextBTree;
|
|
|
|
#define GTK_TYPE_TEXT_BUFFER (gtk_text_buffer_get_type())
|
|
#define GTK_TEXT_BUFFER(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_TEXT_BUFFER, GtkTextBuffer))
|
|
#define GTK_TEXT_BUFFER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TEXT_BUFFER, GtkTextBufferClass))
|
|
#define GTK_IS_TEXT_BUFFER(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_TEXT_BUFFER))
|
|
#define GTK_IS_TEXT_BUFFER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TEXT_BUFFER))
|
|
#define GTK_TEXT_BUFFER_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TEXT_BUFFER, GtkTextBufferClass))
|
|
|
|
typedef struct _GtkTextBufferClass GtkTextBufferClass;
|
|
|
|
struct _GtkTextBuffer {
|
|
GtkObject parent_instance;
|
|
|
|
GtkTextTagTable *tag_table;
|
|
GtkTextBTree *btree;
|
|
|
|
/* Whether the buffer has been modified since last save */
|
|
gboolean modified;
|
|
};
|
|
|
|
struct _GtkTextBufferClass {
|
|
GtkObjectClass parent_class;
|
|
|
|
void (* insert_text) (GtkTextBuffer *buffer,
|
|
GtkTextIter *pos,
|
|
const gchar *text,
|
|
gint length,
|
|
gboolean interactive);
|
|
|
|
|
|
void (* delete_text) (GtkTextBuffer *buffer,
|
|
GtkTextIter *start,
|
|
GtkTextIter *end,
|
|
gboolean interactive);
|
|
|
|
/* Only for text changed, marks/tags don't cause this
|
|
to be emitted */
|
|
void (* changed) (GtkTextBuffer *buffer);
|
|
|
|
|
|
/* New value for the modified flag */
|
|
void (* modified_changed) (GtkTextBuffer *buffer);
|
|
|
|
/* Mark moved or created */
|
|
void (* mark_set) (GtkTextBuffer *buffer,
|
|
const GtkTextIter *location,
|
|
GtkTextMark *mark);
|
|
|
|
void (* mark_deleted) (GtkTextBuffer *buffer,
|
|
GtkTextMark *mark);
|
|
|
|
void (* apply_tag) (GtkTextBuffer *buffer,
|
|
GtkTextTag *tag,
|
|
const GtkTextIter *start_char,
|
|
const GtkTextIter *end_char);
|
|
|
|
void (* remove_tag) (GtkTextBuffer *buffer,
|
|
GtkTextTag *tag,
|
|
const GtkTextIter *start_char,
|
|
const GtkTextIter *end_char);
|
|
|
|
};
|
|
|
|
GtkType gtk_text_buffer_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
/* table is NULL to create a new one */
|
|
GtkTextBuffer *gtk_text_buffer_new (GtkTextTagTable *table);
|
|
gint gtk_text_buffer_get_line_count (GtkTextBuffer *buffer);
|
|
gint gtk_text_buffer_get_char_count (GtkTextBuffer *buffer);
|
|
|
|
|
|
GtkTextTagTable* gtk_text_buffer_get_tag_table (GtkTextBuffer *buffer);
|
|
|
|
/* Insert into the buffer */
|
|
void gtk_text_buffer_insert (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const gchar *text,
|
|
gint len);
|
|
void gtk_text_buffer_insert_at_cursor (GtkTextBuffer *buffer,
|
|
const gchar *text,
|
|
gint len);
|
|
|
|
gboolean gtk_text_buffer_insert_interactive (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const gchar *text,
|
|
gint len,
|
|
gboolean default_editable);
|
|
gboolean gtk_text_buffer_insert_interactive_at_cursor (GtkTextBuffer *buffer,
|
|
const gchar *text,
|
|
gint len,
|
|
gboolean default_editable);
|
|
|
|
|
|
/* Delete from the buffer */
|
|
void gtk_text_buffer_delete (GtkTextBuffer *buffer,
|
|
GtkTextIter *start,
|
|
GtkTextIter *end);
|
|
gboolean gtk_text_buffer_delete_interactive (GtkTextBuffer *buffer,
|
|
GtkTextIter *start_iter,
|
|
GtkTextIter *end_iter,
|
|
gboolean default_editable);
|
|
|
|
|
|
|
|
/* Obtain strings from the buffer */
|
|
gchar *gtk_text_buffer_get_text (GtkTextBuffer *buffer,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end,
|
|
gboolean include_hidden_chars);
|
|
|
|
gchar *gtk_text_buffer_get_slice (GtkTextBuffer *buffer,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end,
|
|
gboolean include_hidden_chars);
|
|
|
|
/* Insert a pixmap */
|
|
void gtk_text_buffer_insert_pixmap (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
GdkPixmap *pixmap,
|
|
GdkBitmap *mask);
|
|
|
|
/* Mark manipulation */
|
|
GtkTextMark *gtk_text_buffer_create_mark (GtkTextBuffer *buffer,
|
|
const gchar *mark_name,
|
|
const GtkTextIter *where,
|
|
gboolean left_gravity);
|
|
void gtk_text_buffer_move_mark (GtkTextBuffer *buffer,
|
|
GtkTextMark *mark,
|
|
const GtkTextIter *where);
|
|
void gtk_text_buffer_delete_mark (GtkTextBuffer *buffer,
|
|
GtkTextMark *mark);
|
|
GtkTextMark *gtk_text_buffer_get_mark (GtkTextBuffer *buffer,
|
|
const gchar *name);
|
|
|
|
|
|
/* efficiently move insert and selection_bound to same location */
|
|
void gtk_text_buffer_place_cursor (GtkTextBuffer *buffer,
|
|
const GtkTextIter *where);
|
|
|
|
|
|
|
|
/* Tag manipulation */
|
|
void gtk_text_buffer_apply_tag (GtkTextBuffer *buffer,
|
|
GtkTextTag *tag,
|
|
const GtkTextIter *start_index,
|
|
const GtkTextIter *end_index);
|
|
void gtk_text_buffer_remove_tag (GtkTextBuffer *buffer,
|
|
GtkTextTag *tag,
|
|
const GtkTextIter *start_index,
|
|
const GtkTextIter *end_index);
|
|
void gtk_text_buffer_apply_tag_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name,
|
|
const GtkTextIter *start_index,
|
|
const GtkTextIter *end_index);
|
|
void gtk_text_buffer_remove_tag_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name,
|
|
const GtkTextIter *start_index,
|
|
const GtkTextIter *end_index);
|
|
|
|
|
|
/* You can either ignore the return value, or use it to
|
|
* set the attributes of the tag. tag_name can be NULL
|
|
*/
|
|
GtkTextTag *gtk_text_buffer_create_tag (GtkTextBuffer *buffer,
|
|
const gchar *tag_name);
|
|
|
|
/* Obtain iterators pointed at various places, then you can move the
|
|
iterator around using the GtkTextIter operators */
|
|
void gtk_text_buffer_get_iter_at_line_offset (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
gint line_number,
|
|
gint char_offset);
|
|
void gtk_text_buffer_get_iter_at_offset (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
gint char_offset);
|
|
void gtk_text_buffer_get_iter_at_line (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
gint line_number);
|
|
void gtk_text_buffer_get_last_iter (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter);
|
|
void gtk_text_buffer_get_bounds (GtkTextBuffer *buffer,
|
|
GtkTextIter *start,
|
|
GtkTextIter *end);
|
|
void gtk_text_buffer_get_iter_at_mark (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
GtkTextMark *mark);
|
|
|
|
|
|
|
|
/* There's no get_first_iter because you just get the iter for
|
|
line or char 0 */
|
|
|
|
GSList *gtk_text_buffer_get_tags (GtkTextBuffer *buffer,
|
|
const GtkTextIter *iter);
|
|
|
|
|
|
/* Used to keep track of whether the buffer needs saving; anytime the
|
|
buffer contents change, the modified flag is turned on. Whenever
|
|
you save, turn it off. Tags and marks do not affect the modified
|
|
flag, but if you would like them to you can connect a handler to
|
|
the tag/mark signals and call set_modified in your handler */
|
|
|
|
gboolean gtk_text_buffer_modified (GtkTextBuffer *buffer);
|
|
void gtk_text_buffer_set_modified (GtkTextBuffer *buffer,
|
|
gboolean setting);
|
|
|
|
void gtk_text_buffer_paste_primary (GtkTextBuffer *buffer,
|
|
GtkTextIter *override_location,
|
|
gboolean default_editable);
|
|
void gtk_text_buffer_cut_clipboard (GtkTextBuffer *buffer,
|
|
gboolean default_editable);
|
|
void gtk_text_buffer_copy_clipboard (GtkTextBuffer *buffer);
|
|
void gtk_text_buffer_paste_clipboard (GtkTextBuffer *buffer,
|
|
gboolean default_editable);
|
|
|
|
gboolean gtk_text_buffer_get_selection_bounds (GtkTextBuffer *buffer,
|
|
GtkTextIter *start,
|
|
GtkTextIter *end);
|
|
gboolean gtk_text_buffer_delete_selection (GtkTextBuffer *buffer,
|
|
gboolean interactive,
|
|
gboolean default_editable);
|
|
|
|
/* This function is not implemented. */
|
|
gboolean gtk_text_buffer_find_string(GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const gchar *str,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
|
|
#if 0
|
|
/* Waiting on glib 1.4 regexp facility */
|
|
gboolean gtk_text_buffer_find_regexp(GtkTextBuffer *buffer,
|
|
GRegexp *regexp,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
#endif
|
|
|
|
/* INTERNAL private stuff */
|
|
void gtk_text_buffer_spew (GtkTextBuffer *buffer);
|
|
|
|
GtkTextBTree* _gtk_text_buffer_get_btree (GtkTextBuffer *buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|