mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-17 23:50:16 +00:00
Split off a private header for GtkTextBuffer
This avoids polluting the installed header with private symbols.
This commit is contained in:
parent
af8c2d2f7b
commit
c264cd6785
@ -515,6 +515,7 @@ gtk_private_h_sources = \
|
||||
gtkstyleproviderprivate.h \
|
||||
gtktextattributesprivate.h \
|
||||
gtktextbtree.h \
|
||||
gtktextbufferprivate.h \
|
||||
gtktextbufferserialize.h \
|
||||
gtktextchildprivate.h \
|
||||
gtktexthandleprivate.h \
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include <glib/gstdio.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include "gtktextviewaccessibleprivate.h"
|
||||
#include "gtktextbufferprivate.h"
|
||||
#include "gtk/gtkwidgetprivate.h"
|
||||
|
||||
struct _GtkTextViewAccessiblePrivate
|
||||
|
@ -58,6 +58,7 @@
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "gtktextbufferprivate.h"
|
||||
#include "gtktexttag.h"
|
||||
#include "gtktexttagprivate.h"
|
||||
#include "gtktexttagtable.h"
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include "gtkinvisible.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtktextbuffer.h"
|
||||
#include "gtktextbufferprivate.h"
|
||||
#include "gtktextbufferrichtext.h"
|
||||
#include "gtktextbtree.h"
|
||||
#include "gtktextiterprivate.h"
|
||||
|
@ -468,33 +468,6 @@ GtkTargetList * gtk_text_buffer_get_copy_target_list (GtkTextBuffer *buffer);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GtkTargetList * gtk_text_buffer_get_paste_target_list (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);
|
||||
|
||||
void _gtk_text_buffer_notify_will_remove_tag (GtkTextBuffer *buffer,
|
||||
GtkTextTag *tag);
|
||||
|
||||
void _gtk_text_buffer_get_text_before (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
void _gtk_text_buffer_get_text_at (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
void _gtk_text_buffer_get_text_after (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
55
gtk/gtktextbufferprivate.h
Normal file
55
gtk/gtktextbufferprivate.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* gtktextbufferprivate.h Copyright (C) 2015 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_TEXT_BUFFER_PRIVATE_H__
|
||||
#define __GTK_TEXT_BUFFER_PRIVATE_H__
|
||||
|
||||
#include <gtk/gtktextbuffer.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
||||
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);
|
||||
|
||||
void _gtk_text_buffer_notify_will_remove_tag (GtkTextBuffer *buffer,
|
||||
GtkTextTag *tag);
|
||||
|
||||
void _gtk_text_buffer_get_text_before (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
void _gtk_text_buffer_get_text_at (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
void _gtk_text_buffer_get_text_after (GtkTextBuffer *buffer,
|
||||
AtkTextBoundary boundary_type,
|
||||
GtkTextIter *position,
|
||||
GtkTextIter *start,
|
||||
GtkTextIter *end);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
@ -26,6 +26,7 @@
|
||||
#include "config.h"
|
||||
#include "gtktextiter.h"
|
||||
#include "gtktextbtree.h"
|
||||
#include "gtktextbufferprivate.h"
|
||||
#include "gtktextiterprivate.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkdebug.h"
|
||||
|
@ -80,6 +80,7 @@
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtktextlayout.h"
|
||||
#include "gtktextbtree.h"
|
||||
#include "gtktextbufferprivate.h"
|
||||
#include "gtktextiterprivate.h"
|
||||
#include "gtktextattributesprivate.h"
|
||||
#include "gtktextutil.h"
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "gtkbuildable.h"
|
||||
#include "gtktexttagprivate.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtktextbuffer.h" /* just for the lame notify_will_remove_tag hack */
|
||||
#include "gtktextbufferprivate.h" /* just for the lame notify_will_remove_tag hack */
|
||||
#include "gtkintl.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
Loading…
Reference in New Issue
Block a user