summaryrefslogtreecommitdiffstats
path: root/gedit/gedit-tab-private.h
blob: 1b84f13d11c8b6e9b91cb0d657b21e66351173d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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: */