1 /*
2  * Copyright (C) 2001,2002,2003,2009,2010 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 
19 #ifndef __NOVTE_DEPRECATED_H__
20 #define __NOVTE_DEPRECATED_H__
21 
22 #include "vteterminal.h"
23 
24 #define _VTE_DEPRECATED
25 
26 G_BEGIN_DECLS
27 
28 _VTE_DEPRECATED
29 _VTE_PUBLIC
30 void vte_terminal_copy_clipboard(VteTerminal *terminal) _VTE_GNUC_NONNULL(1);
31 
32 _VTE_DEPRECATED
33 _VTE_PUBLIC
34 void vte_terminal_get_geometry_hints(VteTerminal *terminal,
35                                      GdkGeometry *hints,
36                                      int min_rows,
37                                      int min_columns) _VTE_GNUC_NONNULL(1) _VTE_GNUC_NONNULL(2);
38 
39 _VTE_DEPRECATED
40 _VTE_PUBLIC
41 void vte_terminal_set_geometry_hints_for_window(VteTerminal *terminal,
42                                                 GtkWindow *window) _VTE_GNUC_NONNULL(1) _VTE_GNUC_NONNULL(2);
43 
44 G_END_DECLS
45 
46 #undef _VTE_DEPRECATED
47 
48 #endif /* !__NOVTE_DEPRECATED__H__ */
49