2000-01-13 23:39:26 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpwidgets.h
|
|
|
|
* Copyright (C) 2000 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser 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 __GIMP_WIDGETS_H__
|
|
|
|
#define __GIMP_WIDGETS_H__
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
#include "gimpsizeentry.h"
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Widget Constructors
|
|
|
|
*/
|
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
GtkWidget * gimp_option_menu_new (gboolean menu_only,
|
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* GtkSignalFunc callback,
|
|
|
|
* gpointer data,
|
|
|
|
* gpointer user_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
* gboolean active
|
|
|
|
*/
|
|
|
|
|
|
|
|
...);
|
|
|
|
|
|
|
|
GtkWidget * gimp_option_menu_new2 (gboolean menu_only,
|
|
|
|
GtkSignalFunc menu_item_callback,
|
2000-01-13 23:39:26 +08:00
|
|
|
gpointer data,
|
|
|
|
gpointer initial, /* user_data */
|
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* gpointer user_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
*/
|
|
|
|
|
|
|
|
...);
|
|
|
|
|
2000-02-14 06:26:41 +08:00
|
|
|
void gimp_option_menu_set_history (GtkOptionMenu *option_menu,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkWidget * gimp_radio_group_new (gboolean in_frame,
|
|
|
|
gchar *frame_title,
|
|
|
|
|
|
|
|
/* specify radio buttons as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* GtkSignalFunc callback,
|
|
|
|
* gpointer data,
|
|
|
|
* gpointer user_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
* gboolean active,
|
|
|
|
*/
|
|
|
|
|
|
|
|
...);
|
|
|
|
|
|
|
|
GtkWidget * gimp_radio_group_new2 (gboolean in_frame,
|
|
|
|
gchar *frame_title,
|
2000-01-27 09:22:27 +08:00
|
|
|
GtkSignalFunc radio_button_callback,
|
2000-01-13 23:39:26 +08:00
|
|
|
gpointer data,
|
|
|
|
gpointer initial, /* user_data */
|
|
|
|
|
|
|
|
/* specify radio buttons as va_list:
|
|
|
|
* gchar *label,
|
|
|
|
* gpointer user_data,
|
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
*/
|
|
|
|
|
|
|
|
...);
|
|
|
|
|
|
|
|
GtkWidget * gimp_spin_button_new (/* return value: */
|
|
|
|
GtkObject **adjustment,
|
|
|
|
|
|
|
|
gfloat value,
|
|
|
|
gfloat lower,
|
|
|
|
gfloat upper,
|
|
|
|
gfloat step_increment,
|
|
|
|
gfloat page_increment,
|
|
|
|
gfloat page_size,
|
|
|
|
gfloat climb_rate,
|
|
|
|
guint digits);
|
|
|
|
|
|
|
|
GtkObject * gimp_scale_entry_new (GtkTable *table,
|
|
|
|
gint column,
|
|
|
|
gint row,
|
|
|
|
gchar *text,
|
|
|
|
gint scale_usize,
|
|
|
|
gint spinbutton_usize,
|
|
|
|
gfloat value,
|
|
|
|
gfloat lower,
|
|
|
|
gfloat upper,
|
|
|
|
gfloat step_increment,
|
|
|
|
gfloat page_increment,
|
|
|
|
guint digits,
|
2000-02-04 23:12:17 +08:00
|
|
|
gboolean constrain,
|
|
|
|
gfloat unconstrained_lower,
|
|
|
|
gfloat unconstrained_upper,
|
2000-01-13 23:39:26 +08:00
|
|
|
gchar *tooltip,
|
|
|
|
gchar *private_tip);
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
GtkWidget * gimp_random_seed_new (gint *seed,
|
2000-02-04 23:12:17 +08:00
|
|
|
GtkWidget **seed_spinbutton,
|
2000-01-26 01:46:56 +08:00
|
|
|
gint *use_time,
|
2000-02-04 23:12:17 +08:00
|
|
|
GtkWidget **time_button,
|
2000-01-26 01:46:56 +08:00
|
|
|
gint time_true,
|
|
|
|
gint time_false);
|
|
|
|
|
2000-02-08 04:35:13 +08:00
|
|
|
GtkWidget * gimp_coordinates_new (GimpUnit unit,
|
2000-02-01 04:47:44 +08:00
|
|
|
gchar *unit_format,
|
|
|
|
gboolean menu_show_pixels,
|
|
|
|
gboolean menu_show_percent,
|
|
|
|
gint spinbutton_usize,
|
2000-02-08 04:35:13 +08:00
|
|
|
GimpSizeEntryUpdatePolicy update_policy,
|
2000-02-01 04:47:44 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
gboolean chainbutton_active,
|
|
|
|
gboolean chain_constrains_ratio,
|
|
|
|
/* return value: */
|
|
|
|
GtkWidget **chainbutton,
|
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
gchar *xlabel,
|
|
|
|
gdouble x,
|
|
|
|
gdouble xres,
|
2000-02-03 01:59:44 +08:00
|
|
|
gdouble lower_boundary_x,
|
|
|
|
gdouble upper_boundary_x,
|
|
|
|
gdouble xsize_0, /* % */
|
|
|
|
gdouble xsize_100, /* % */
|
2000-02-01 04:47:44 +08:00
|
|
|
|
|
|
|
gchar *ylabel,
|
|
|
|
gdouble y,
|
|
|
|
gdouble yres,
|
2000-02-03 01:59:44 +08:00
|
|
|
gdouble lower_boundary_y,
|
|
|
|
gdouble upper_boundary_y,
|
|
|
|
gdouble ysize_0, /* % */
|
|
|
|
gdouble ysize_100 /* % */);
|
2000-02-01 04:47:44 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
/*
|
|
|
|
* Standard Callbacks
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gimp_toggle_button_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
void gimp_menu_item_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
void gimp_radio_button_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
void gimp_int_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data);
|
|
|
|
|
2000-01-15 23:32:28 +08:00
|
|
|
void gimp_float_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data);
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
void gimp_double_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data);
|
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
void gimp_unit_menu_update (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
/*
|
|
|
|
* Helper Functions
|
|
|
|
*/
|
|
|
|
|
2000-01-28 03:26:00 +08:00
|
|
|
/* add aligned label & widget to a table */
|
2000-01-31 11:13:02 +08:00
|
|
|
void gimp_table_attach_aligned (GtkTable *table,
|
|
|
|
gint column,
|
2000-01-28 03:26:00 +08:00
|
|
|
gint row,
|
|
|
|
gchar *label_text,
|
|
|
|
gfloat xalign,
|
|
|
|
gfloat yalign,
|
|
|
|
GtkWidget *widget,
|
2000-01-31 11:13:02 +08:00
|
|
|
gint colspan,
|
|
|
|
gboolean left_align);
|
2000-01-28 03:26:00 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __GIMP_WIDGETS_H__ */
|