summaryrefslogtreecommitdiffstats
path: root/gedit/gedit-tab-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'gedit/gedit-tab-private.h')
-rw-r--r--gedit/gedit-tab-private.h81
1 files changed, 81 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+ */
+
+#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: */