1 | /* GTK - The GIMP Toolkit |
---|
2 | * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald |
---|
3 | * |
---|
4 | * This library is free software; you can redistribute it and/or |
---|
5 | * modify it under the terms of the GNU Library General Public |
---|
6 | * License as published by the Free Software Foundation; either |
---|
7 | * version 2 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 | * Library General Public License for more details. |
---|
13 | * |
---|
14 | * You should have received a copy of the GNU Library General Public |
---|
15 | * License along with this library; if not, write to the |
---|
16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
17 | * Boston, MA 02111-1307, USA. |
---|
18 | */ |
---|
19 | |
---|
20 | /* |
---|
21 | * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS |
---|
22 | * file for a list of people on the GTK+ Team. See the ChangeLog |
---|
23 | * files for a list of changes. These files are distributed with |
---|
24 | * GTK+ at ftp://ftp.gtk.org/pub/gtk/. |
---|
25 | */ |
---|
26 | |
---|
27 | #ifndef __GTK_COMPAT_H__ |
---|
28 | #define __GTK_COMPAT_H__ |
---|
29 | |
---|
30 | |
---|
31 | #ifdef __cplusplus |
---|
32 | extern "C" { |
---|
33 | #endif /* __cplusplus */ |
---|
34 | |
---|
35 | |
---|
36 | /* this file contains aliases that have to be kept for historical |
---|
37 | * reasons, because a wide code base depends on them. |
---|
38 | */ |
---|
39 | |
---|
40 | #ifndef GTK_DISABLE_COMPAT_H |
---|
41 | |
---|
42 | #define gtk_accel_label_accelerator_width gtk_accel_label_get_accel_width |
---|
43 | #define gtk_container_border_width gtk_container_set_border_width |
---|
44 | #define gtk_notebook_current_page gtk_notebook_get_current_page |
---|
45 | #define gtk_packer_configure gtk_packer_set_child_packing |
---|
46 | #define gtk_paned_gutter_size gtk_paned_set_gutter_size |
---|
47 | #define gtk_paned_handle_size gtk_paned_set_handle_size |
---|
48 | #define gtk_scale_value_width gtk_scale_get_value_width |
---|
49 | #define gtk_window_position gtk_window_set_position |
---|
50 | #define gtk_toggle_button_set_state gtk_toggle_button_set_active |
---|
51 | #define gtk_check_menu_item_set_state gtk_check_menu_item_set_active |
---|
52 | |
---|
53 | /* strongly deprecated: */ |
---|
54 | #define gtk_ctree_set_reorderable(t,r) gtk_clist_set_reorderable((GtkCList*) (t),(r)) |
---|
55 | #define gtk_style_apply_default_pixmap(s,gw,st,a,x,y,w,h) \ |
---|
56 | gtk_style_apply_default_background (s,gw,TRUE,st,a,x,y,w,h) |
---|
57 | |
---|
58 | #endif /* GTK_DISABLE_COMPAT_H */ |
---|
59 | |
---|
60 | #ifdef __cplusplus |
---|
61 | } |
---|
62 | #endif /* __cplusplus */ |
---|
63 | |
---|
64 | |
---|
65 | #endif /* __GTK_COMPAT_H__ */ |
---|