forked from AuroraMiddleware/gtk
b4e4a0ed9d
2001-05-04 Havoc Pennington <hp@redhat.com> * configure.in: fix some shell typos * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix * gtk/gtkimage.c: handle animations * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request border_width * 2, not just border_width * gtk/gtkscale.c: add "format_value" signal to allow people to override the way values are drawn. (gtk_scale_get_value_size): fix width/height mistake, and compute size from actual displayed text, not from made-up text. * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in signal registration * tests/testtext.c: Add "Remove all tags" menu item for testing * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement * demos/gtk-demo/main.c (main): add hack so we can find modules without installing gtk * demos/gtk-demo/textview.c (insert_text): demo font scaling * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling factor) (gtk_cell_renderer_text_set_property): remove some bogus g_object_notify * gtk/gtktexttag.c: add "scale" property which is a font scaling factor * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute to layout * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from gtk_text_iter_is_first 2001-05-04 Havoc Pennington <hp@redhat.com> * pixops/pixops.c (pixops_process): merge fix from stable: Patch from hoshem@mel.comcen.com.au to fix nonzero X offsets. Fixes bug #50371. * gdk-pixbuf/pixops/pixops.c (pixops_composite_nearest): merge from stable: Patch from OKADA Mitsuru <m-okada@fjb.co.jp> to fix confusion of using "src" instead of "p". (pixops_composite_color_nearest): Use a more accurate (and correct, to begin with) compositing method. This cures checks showing through on images with no alpha. * gdk-pixbuf.c (gdk_pixbuf_fill): fix bug that left some trailing bytes unfilled. * gdk-pixbuf-io.h: fix UpdatedNotifyFunc to use signed ints * gdk-pixbuf-loader.h (struct _GdkPixbufLoaderClass): Change area_updated signal to use signed ints. Removed animation-related signals. * io-gif.c, io-gif-animation.h, io-gif-animation.c: Massive rewrite action * gdk-pixbuf-animation.c: Add GdkPixbufAnimationIter to abstract all the pesky details. Remove old frame-based API. Make GdkPixbufAnimation an abstract base class, derived by the loaders.
359 lines
17 KiB
C
359 lines
17 KiB
C
/* GTK - The GIMP Toolkit
|
|
* gtktextbuffer.h Copyright (C) 2000 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
* files for a list of changes. These files are distributed with
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
*/
|
|
|
|
#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>
|
|
#include <gtk/gtktextchild.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;
|
|
|
|
typedef struct _GtkTextLogAttrCache GtkTextLogAttrCache;
|
|
|
|
#define GTK_TYPE_TEXT_BUFFER (gtk_text_buffer_get_type ())
|
|
#define GTK_TEXT_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TEXT_BUFFER, GtkTextBuffer))
|
|
#define GTK_TEXT_BUFFER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TEXT_BUFFER, GtkTextBufferClass))
|
|
#define GTK_IS_TEXT_BUFFER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TEXT_BUFFER))
|
|
#define GTK_IS_TEXT_BUFFER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TEXT_BUFFER))
|
|
#define GTK_TEXT_BUFFER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TEXT_BUFFER, GtkTextBufferClass))
|
|
|
|
typedef struct _GtkTextBufferClass GtkTextBufferClass;
|
|
|
|
struct _GtkTextBuffer
|
|
{
|
|
GObject parent_instance;
|
|
|
|
GtkTextTagTable *tag_table;
|
|
GtkTextBTree *btree;
|
|
|
|
GtkTextBuffer *clipboard_contents;
|
|
|
|
GtkTextLogAttrCache *log_attr_cache;
|
|
|
|
guint user_action_count;
|
|
|
|
/* Whether the buffer has been modified since last save */
|
|
guint modified : 1;
|
|
};
|
|
|
|
struct _GtkTextBufferClass
|
|
{
|
|
GObjectClass parent_class;
|
|
|
|
void (* insert_text) (GtkTextBuffer *buffer,
|
|
GtkTextIter *pos,
|
|
const gchar *text,
|
|
gint length);
|
|
|
|
void (* insert_pixbuf) (GtkTextBuffer *buffer,
|
|
GtkTextIter *pos,
|
|
GdkPixbuf *pixbuf);
|
|
|
|
void (* insert_child_anchor) (GtkTextBuffer *buffer,
|
|
GtkTextIter *pos,
|
|
GtkTextChildAnchor *anchor);
|
|
|
|
void (* delete_range) (GtkTextBuffer *buffer,
|
|
GtkTextIter *start,
|
|
GtkTextIter *end);
|
|
|
|
/* Only for text/widgets/pixbuf 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);
|
|
|
|
/* Called at the start and end of an atomic user action */
|
|
void (* begin_user_action) (GtkTextBuffer *buffer);
|
|
void (* end_user_action) (GtkTextBuffer *buffer);
|
|
};
|
|
|
|
GType 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);
|
|
|
|
/* Delete whole buffer, then insert */
|
|
void gtk_text_buffer_set_text (GtkTextBuffer *buffer,
|
|
const gchar *text,
|
|
gint len);
|
|
|
|
/* 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);
|
|
|
|
void gtk_text_buffer_insert_range (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
gboolean gtk_text_buffer_insert_range_interactive (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end,
|
|
gboolean default_editable);
|
|
|
|
void gtk_text_buffer_insert_with_tags (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const gchar *text,
|
|
gint len,
|
|
GtkTextTag *first_tag,
|
|
...);
|
|
|
|
void gtk_text_buffer_insert_with_tags_by_name (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
const gchar *text,
|
|
gint len,
|
|
const gchar *first_tag_name,
|
|
...);
|
|
|
|
/* 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 pixbuf */
|
|
void gtk_text_buffer_insert_pixbuf (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
GdkPixbuf *pixbuf);
|
|
|
|
/* Insert a child anchor */
|
|
void gtk_text_buffer_insert_child_anchor (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
GtkTextChildAnchor *anchor);
|
|
|
|
/* Convenience, create and insert a child anchor */
|
|
GtkTextChildAnchor *gtk_text_buffer_create_child_anchor (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter);
|
|
|
|
/* 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);
|
|
|
|
void gtk_text_buffer_move_mark_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name,
|
|
const GtkTextIter *where);
|
|
void gtk_text_buffer_delete_mark_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name);
|
|
|
|
GtkTextMark* gtk_text_buffer_get_insert (GtkTextBuffer *buffer);
|
|
GtkTextMark* gtk_text_buffer_get_selection_bound (GtkTextBuffer *buffer);
|
|
|
|
/* 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,
|
|
const GtkTextIter *end);
|
|
void gtk_text_buffer_remove_tag (GtkTextBuffer *buffer,
|
|
GtkTextTag *tag,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
void gtk_text_buffer_apply_tag_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
void gtk_text_buffer_remove_tag_by_name (GtkTextBuffer *buffer,
|
|
const gchar *name,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
void gtk_text_buffer_remove_all_tags (GtkTextBuffer *buffer,
|
|
const GtkTextIter *start,
|
|
const GtkTextIter *end);
|
|
|
|
|
|
/* 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,
|
|
const gchar *first_property_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_line_index (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
gint line_number,
|
|
gint byte_index);
|
|
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_end_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);
|
|
|
|
void gtk_text_buffer_get_iter_at_child_anchor (GtkTextBuffer *buffer,
|
|
GtkTextIter *iter,
|
|
GtkTextChildAnchor *anchor);
|
|
|
|
/* There's no get_first_iter because you just get the iter for
|
|
line or char 0 */
|
|
|
|
/* 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_get_modified (GtkTextBuffer *buffer);
|
|
void gtk_text_buffer_set_modified (GtkTextBuffer *buffer,
|
|
gboolean setting);
|
|
|
|
void gtk_text_buffer_paste_primary (GtkTextBuffer *buffer,
|
|
const 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);
|
|
|
|
/* Called to specify atomic user actions, used to implement undo */
|
|
void gtk_text_buffer_begin_user_action (GtkTextBuffer *buffer);
|
|
void gtk_text_buffer_end_user_action (GtkTextBuffer *buffer);
|
|
|
|
/* INTERNAL private stuff */
|
|
void _gtk_text_buffer_spew (GtkTextBuffer *buffer);
|
|
|
|
GtkTextBTree* _gtk_text_buffer_get_btree (GtkTextBuffer *buffer);
|
|
|
|
const PangoLogAttr* _gtk_text_buffer_get_line_log_attrs (GtkTextBuffer *buffer,
|
|
const GtkTextIter *anywhere_in_line,
|
|
gint *char_len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|