2014-05-27 17:19:32 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimppropgui-constructors.h
|
|
|
|
* Copyright (C) 2002-2014 Michael Natterer <mitch@gimp.org>
|
|
|
|
* Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_PROP_GUI_CONSTRUCTORS_H__
|
|
|
|
#define __GIMP_PROP_GUI_CONSTRUCTORS_H__
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget * _gimp_prop_gui_new_generic (GObject *config,
|
|
|
|
GParamSpec **param_specs,
|
|
|
|
guint n_param_specs,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpCreatePickerFunc create_picker_func,
|
|
|
|
gpointer picker_creator);
|
|
|
|
|
2014-05-28 07:00:50 +08:00
|
|
|
GtkWidget * _gimp_prop_gui_new_color_rotate
|
|
|
|
(GObject *config,
|
|
|
|
GParamSpec **param_specs,
|
|
|
|
guint n_param_specs,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpCreatePickerFunc create_picker_func,
|
|
|
|
gpointer picker_creator);
|
|
|
|
|
2014-05-28 04:09:40 +08:00
|
|
|
GtkWidget * _gimp_prop_gui_new_convolution_matrix
|
|
|
|
(GObject *config,
|
|
|
|
GParamSpec **param_specs,
|
|
|
|
guint n_param_specs,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpCreatePickerFunc create_picker_func,
|
|
|
|
gpointer picker_creator);
|
|
|
|
|
2014-12-08 01:25:11 +08:00
|
|
|
GtkWidget * _gimp_prop_gui_new_channel_mixer
|
|
|
|
(GObject *config,
|
|
|
|
GParamSpec **param_specs,
|
|
|
|
guint n_param_specs,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpCreatePickerFunc create_picker_func,
|
|
|
|
gpointer picker_creator);
|
2014-05-27 17:19:32 +08:00
|
|
|
|
2015-02-07 02:43:49 +08:00
|
|
|
GtkWidget * _gimp_prop_gui_new_diffraction_patterns
|
|
|
|
(GObject *config,
|
|
|
|
GParamSpec **param_specs,
|
|
|
|
guint n_param_specs,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpCreatePickerFunc create_picker_func,
|
|
|
|
gpointer picker_creator);
|
|
|
|
|
2014-05-27 17:19:32 +08:00
|
|
|
#endif /* __GIMP_PROP_GUI_CONSTRUCTORS_H__ */
|