forked from AuroraMiddleware/gtk
87620764ae
Fri Jan 15 19:16:42 1999 Tim Janik <timj@gtk.org> * gtk/Makefile.am: define GTK_DISABLE_COMPAT_H for compilation of gtk code. * gtk/gtkrc.c (gtk_rc_style_unref): added an assertment. * gtk/gtkcompat.h: * gtk/gtklabel.h: don't provide compatibility defines if GTK_DISABLE_COMPAT_H is defined. * gtk/gtkstyle.h: * gtk/gtkstyle.c: coding style, indentation and alignment fixups. (gtk_draw_string): (gtk_paint_string): (gtk_draw_polygon): (gtk_style_set_background): fixed assertments. (gtk_default_draw_ramp): (gtk_default_draw_cross): (gtk_default_draw_oval): issue warnings since these functions aren't yet implemented. * gdk/gdkwindow.c: (gdk_window_hide): only unmap window if already mapped. (gdk_window_show): only map window if !mapped. (gdk_window_internal_destroy): destroyed windows can't be mapped. * gtk/gtkwidget.c (gtk_widget_event): don't ignore expose events just because a resize is queued on a widget, we rely on the expose events now.
52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
#ifndef __GTK_COMPAT_H__
|
|
#define __GTK_COMPAT_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* this file contains aliases that have to be kept for historical
|
|
* reasons, because a wide code base depends on them.
|
|
*/
|
|
|
|
#ifndef GTK_DISABLE_COMPAT_H
|
|
|
|
#define gtk_accel_label_accelerator_width gtk_accel_label_get_accel_width
|
|
#define gtk_container_border_width gtk_container_set_border_width
|
|
#define gtk_notebook_current_page gtk_notebook_get_current_page
|
|
#define gtk_packer_configure gtk_packer_set_child_packing
|
|
#define gtk_paned_gutter_size gtk_paned_set_gutter_size
|
|
#define gtk_paned_handle_size gtk_paned_set_handle_size
|
|
#define gtk_scale_value_width gtk_scale_get_value_width
|
|
#define gtk_window_position gtk_window_set_position
|
|
#define gtk_toggle_button_set_state gtk_toggle_button_set_active
|
|
|
|
#endif /* GTK_DISABLE_COMPAT_H */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* __GTK_COMPAT_H__ */
|