From ba429d344132c088177e853cce8ff7181570b221 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 19:42:51 +0200 Subject: Adding upstream version 44.2. Signed-off-by: Daniel Baumann --- gedit/gedit-tab-private.h | 81 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 gedit/gedit-tab-private.h (limited to 'gedit/gedit-tab-private.h') diff --git a/gedit/gedit-tab-private.h b/gedit/gedit-tab-private.h new file mode 100644 index 0000000..1b84f13 --- /dev/null +++ b/gedit/gedit-tab-private.h @@ -0,0 +1,81 @@ +/* + * gedit-tab.h + * This file is part of gedit + * + * Copyright (C) 2005 - Paolo Maggi + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ + +#ifndef GEDIT_TAB_PRIVATE_H +#define GEDIT_TAB_PRIVATE_H + +#include "gedit-tab.h" +#include "gedit-view-frame.h" + +G_BEGIN_DECLS + +GeditTab *_gedit_tab_new (void); + +gchar *_gedit_tab_get_name (GeditTab *tab); + +gchar *_gedit_tab_get_tooltip (GeditTab *tab); + +GdkPixbuf *_gedit_tab_get_icon (GeditTab *tab); + +void _gedit_tab_load (GeditTab *tab, + GFile *location, + const GtkSourceEncoding *encoding, + gint line_pos, + gint column_pos, + gboolean create); + +void _gedit_tab_load_stream (GeditTab *tab, + GInputStream *location, + const GtkSourceEncoding *encoding, + gint line_pos, + gint column_pos); + +void _gedit_tab_revert (GeditTab *tab); + +void _gedit_tab_save_async (GeditTab *tab, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +gboolean _gedit_tab_save_finish (GeditTab *tab, + GAsyncResult *result); + +void _gedit_tab_save_as_async (GeditTab *tab, + GFile *location, + const GtkSourceEncoding *encoding, + GtkSourceNewlineType newline_type, + GtkSourceCompressionType compression_type, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +void _gedit_tab_print (GeditTab *tab); + +void _gedit_tab_mark_for_closing (GeditTab *tab); + +gboolean _gedit_tab_get_can_close (GeditTab *tab); + +GeditViewFrame *_gedit_tab_get_view_frame (GeditTab *tab); + +G_END_DECLS + +#endif /* GEDIT_TAB_PRIVATE_H */ + +/* ex:set ts=8 noet: */ -- cgit v1.2.3