2004-04-20 22:37:12 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpoldwidgets.h
|
|
|
|
* Copyright (C) 2000 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-04-20 22:37:12 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-04-20 22:37:12 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
2004-04-20 22:37:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* These functions are deprecated and should not be used in newly
|
|
|
|
* written code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GIMP_DISABLE_DEPRECATED
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __GIMP_OLD_WIDGETS_H__
|
|
|
|
#define __GIMP_OLD_WIDGETS_H__
|
2004-04-20 22:37:12 +08:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
|
2004-04-20 22:37:12 +08:00
|
|
|
/*
|
|
|
|
* Widget Constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
GtkWidget * gimp_int_option_menu_new (gboolean menu_only,
|
|
|
|
GCallback menu_item_callback,
|
|
|
|
gpointer menu_item_callback_data,
|
|
|
|
gint initial, /* item_data */
|
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* gint item_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
*/
|
|
|
|
|
2005-09-28 01:11:01 +08:00
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2004-04-20 22:37:12 +08:00
|
|
|
|
|
|
|
void gimp_int_option_menu_set_history (GtkOptionMenu *option_menu,
|
|
|
|
gint item_data);
|
|
|
|
|
2011-04-28 20:53:49 +08:00
|
|
|
typedef gboolean (* GimpIntOptionMenuSensitivityCallback) (gint item_data,
|
|
|
|
gpointer callback_data);
|
|
|
|
|
2004-04-20 22:37:12 +08:00
|
|
|
void gimp_int_option_menu_set_sensitive (GtkOptionMenu *option_menu,
|
|
|
|
GimpIntOptionMenuSensitivityCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget * gimp_option_menu_new (gboolean menu_only,
|
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* GCallback callback,
|
|
|
|
* gpointer callback_data,
|
|
|
|
* gpointer item_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
* gboolean active
|
|
|
|
*/
|
|
|
|
|
2005-09-28 01:11:01 +08:00
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2004-04-20 22:37:12 +08:00
|
|
|
GtkWidget * gimp_option_menu_new2 (gboolean menu_only,
|
|
|
|
GCallback menu_item_callback,
|
|
|
|
gpointer menu_item_callback_data,
|
|
|
|
gpointer initial, /* item_data */
|
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* gpointer item_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
*/
|
2005-09-28 01:11:01 +08:00
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2004-04-20 22:37:12 +08:00
|
|
|
void gimp_option_menu_set_history (GtkOptionMenu *option_menu,
|
|
|
|
gpointer item_data);
|
|
|
|
|
|
|
|
|
2011-04-28 20:53:49 +08:00
|
|
|
typedef gboolean (* GimpOptionMenuSensitivityCallback) (gpointer item_data,
|
|
|
|
gpointer callback_data);
|
2004-04-20 22:37:12 +08:00
|
|
|
|
|
|
|
void gimp_option_menu_set_sensitive (GtkOptionMenu *option_menu,
|
|
|
|
GimpOptionMenuSensitivityCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
|
|
|
|
|
2011-04-28 20:53:49 +08:00
|
|
|
void gimp_menu_item_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
GtkWidget * gimp_pixmap_button_new (gchar **xpm_data,
|
|
|
|
const gchar *text);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Standard Callbacks
|
|
|
|
*/
|
|
|
|
|
2011-05-12 04:12:26 +08:00
|
|
|
void gimp_toggle_button_sensitive_update (GtkToggleButton *toggle_button);
|
|
|
|
|
|
|
|
void gimp_unit_menu_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
2004-04-20 22:37:12 +08:00
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
|
2004-04-20 22:37:12 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#endif /* __GIMP_OLD_WIDGETS_H__ */
|
2004-04-20 22:37:12 +08:00
|
|
|
|
|
|
|
#endif /* GIMP_DISABLE_DEPRECATED */
|