2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-11-21 03:45:03 +08:00
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2002-11-23 05:08:04 +08:00
|
|
|
* gimppropwidgets.h
|
|
|
|
* Copyright (C) 2002 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2002-11-21 03:45:03 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-11-21 03:45:03 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-11-21 03:45:03 +08:00
|
|
|
*/
|
|
|
|
|
2005-02-05 04:47:42 +08:00
|
|
|
#ifndef __GIMP_APP_PROP_WIDGETS_H__
|
|
|
|
#define __GIMP_APP_PROP_WIDGETS_H__
|
2002-11-21 03:45:03 +08:00
|
|
|
|
|
|
|
|
2006-10-19 03:54:18 +08:00
|
|
|
/* GParamBoolean */
|
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_expanding_frame_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *button_label,
|
|
|
|
GtkWidget *child,
|
|
|
|
GtkWidget **button);
|
2006-10-19 03:54:18 +08:00
|
|
|
|
|
|
|
|
2005-02-05 07:19:31 +08:00
|
|
|
/* GParamEnum */
|
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_paint_mode_menu_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
gboolean with_behind_mode,
|
|
|
|
gboolean with_replace_modes);
|
2005-02-05 07:19:31 +08:00
|
|
|
|
|
|
|
|
2002-11-24 06:22:21 +08:00
|
|
|
/* GimpParamColor */
|
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_color_button_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *title,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpColorAreaType type);
|
2002-11-24 06:22:21 +08:00
|
|
|
|
|
|
|
|
2008-05-26 23:18:31 +08:00
|
|
|
/* GParamDouble */
|
2010-11-02 03:04:35 +08:00
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_scale_button_new (GObject *config,
|
|
|
|
const gchar *property_name);
|
|
|
|
GtkWidget * gimp_prop_spin_scale_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *label,
|
|
|
|
gdouble step_increment,
|
|
|
|
gdouble page_increment,
|
|
|
|
gint digits);
|
|
|
|
|
|
|
|
void gimp_prop_widget_set_factor (GtkWidget *widget,
|
|
|
|
gdouble factor,
|
2014-02-04 05:57:51 +08:00
|
|
|
gdouble step_increment,
|
|
|
|
gdouble page_increment,
|
2013-06-15 07:28:54 +08:00
|
|
|
gint digits);
|
2008-05-26 23:18:31 +08:00
|
|
|
|
2014-05-26 03:52:39 +08:00
|
|
|
GtkWidget * gimp_prop_angle_dial_new (GObject *config,
|
|
|
|
const gchar *property_name);
|
2014-05-28 06:59:44 +08:00
|
|
|
GtkWidget * gimp_prop_angle_range_dial_new (GObject *config,
|
|
|
|
const gchar *alpha_property_name,
|
|
|
|
const gchar *beta_property_name,
|
|
|
|
const gchar *clockwise_property_name);
|
2014-05-26 03:52:39 +08:00
|
|
|
|
2008-05-26 23:18:31 +08:00
|
|
|
|
2003-02-19 00:52:37 +08:00
|
|
|
/* GParamObject (GimpViewable) */
|
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_view_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
GimpContext *context,
|
|
|
|
gint size);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
2008-02-05 21:20:11 +08:00
|
|
|
|
2007-08-10 22:57:27 +08:00
|
|
|
/* GParamDouble, GParamDouble, GParamDouble, GParamDouble, GParamBoolean */
|
2007-08-09 02:08:24 +08:00
|
|
|
|
2013-06-15 07:28:54 +08:00
|
|
|
GtkWidget * gimp_prop_number_pair_entry_new (GObject *config,
|
|
|
|
const gchar *left_number_property,
|
|
|
|
const gchar *right_number_property,
|
|
|
|
const gchar *default_left_number_property,
|
|
|
|
const gchar *default_right_number_property,
|
|
|
|
const gchar *user_override_property,
|
|
|
|
gboolean connect_numbers_changed,
|
|
|
|
gboolean connect_ratio_changed,
|
|
|
|
const gchar *separators,
|
|
|
|
gboolean allow_simplification,
|
|
|
|
gdouble min_valid_value,
|
|
|
|
gdouble max_valid_value);
|
2007-08-09 02:08:24 +08:00
|
|
|
|
2013-05-30 22:33:30 +08:00
|
|
|
|
2009-08-05 03:26:32 +08:00
|
|
|
/* GParamString */
|
|
|
|
|
2013-03-11 02:48:32 +08:00
|
|
|
GtkWidget * gimp_prop_language_combo_box_new (GObject *config,
|
|
|
|
const gchar *property_name);
|
|
|
|
GtkWidget * gimp_prop_language_entry_new (GObject *config,
|
|
|
|
const gchar *property_name);
|
2009-08-05 03:26:32 +08:00
|
|
|
|
2013-03-11 02:48:32 +08:00
|
|
|
GtkWidget * gimp_prop_icon_picker_new (GimpViewable *viewable,
|
|
|
|
Gimp *gimp);
|
2007-02-08 23:35:49 +08:00
|
|
|
|
2008-02-05 21:20:11 +08:00
|
|
|
|
2013-05-30 22:33:30 +08:00
|
|
|
/* Utility functions */
|
|
|
|
|
|
|
|
gboolean _gimp_prop_widgets_get_numeric_values (GObject *object,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
gdouble *value,
|
|
|
|
gdouble *lower,
|
|
|
|
gdouble *upper,
|
|
|
|
const gchar *strloc);
|
2008-02-05 21:20:11 +08:00
|
|
|
|
|
|
|
|
2005-02-05 04:47:42 +08:00
|
|
|
#endif /* __GIMP_APP_PROP_WIDGETS_H__ */
|