2003-07-01 23:06:06 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpgradientmenu.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2003-07-01 23:06:06 +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.
|
2003-07-01 23:06:06 +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/>.
|
2003-07-01 23:06:06 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_UI_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimpui.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2003-07-01 23:06:06 +08:00
|
|
|
#ifndef __GIMP_GRAIDENT_MENU_H__
|
|
|
|
#define __GIMP_GRADIENT_MENU_H__
|
|
|
|
|
2006-06-26 09:47:22 +08:00
|
|
|
/* These functions are deprecated and should not be used in newly
|
|
|
|
* written code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GIMP_DISABLE_DEPRECATED
|
|
|
|
|
2003-07-01 23:06:06 +08:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget * gimp_gradient_select_widget_new (const gchar *title,
|
2003-12-05 23:55:15 +08:00
|
|
|
const gchar *gradient_name,
|
2003-07-01 23:06:06 +08:00
|
|
|
GimpRunGradientCallback callback,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
void gimp_gradient_select_widget_close (GtkWidget *widget);
|
|
|
|
void gimp_gradient_select_widget_set (GtkWidget *widget,
|
|
|
|
const gchar *gradient_name);
|
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2006-06-26 09:47:22 +08:00
|
|
|
#endif /* GIMP_DISABLE_DEPRECATED */
|
|
|
|
|
2003-07-01 23:06:06 +08:00
|
|
|
#endif /* __GIMP_GRADIENT_MENU_H__ */
|