
2001-07-24 Michael Natterer <mitch@gimp.org> Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning) * configure.in: require glib/gtk+ >= 1.3.7, commented out the gtkxmhtml stuff. From now on, you will need glib, pango, atk and gtk+ HEAD from CVS to hack or use GIMP HEAD. Beware, it crashes randomly :) * app/core/Makefile.am * app/core/gimpmarshal.list: new file plus rules to generate gimpmarshal.[ch] from it. * app/core/* * app/tools/* * app/widgets/* * libgimpwidgets/*: started to use the glib object system. All core/ objects are still gtk objects however. All signals are created using g_signal_new(). There are many gtk+ artefacts left. Finally, we will _not_ use the gtk_signal_foo() wrappers and friends any more. * app/colormaps.c * app/devices.[ch] * app/disp_callbacks.c * app/errorconsole.c * app/file-save.[ch] * app/interface.c * app/module_db.c * app/nav_window.c * app/ops_buttons.c * app/scroll.c * app/user_install.c * app/gui/about-dialog.c * app/gui/brush-editor.c * app/gui/brushes-commands.c * app/gui/color-notebook.c * app/gui/colormap-dialog.c * app/gui/dialogs-commands.c * app/gui/dialogs-constructors.c * app/gui/file-commands.c * app/gui/file-dialog-utils.c * app/gui/file-new-dialog.c * app/gui/file-open-dialog.[ch] * app/gui/file-save-dialog.c * app/gui/gradient-editor.c * app/gui/gradients-commands.c * app/gui/image-commands.c * app/gui/info-dialog.[ch] * app/gui/layer-select.c * app/gui/layers-commands.c * app/gui/menus.c * app/gui/offset-dialog.c * app/gui/palette-editor.c * app/gui/palettes-commands.c * app/gui/patterns-commands.c * app/gui/preferences-dialog.c * app/gui/resize-dialog.[ch] * app/gui/splash.c * app/gui/tips-dialog.c * app/gui/tool-options-dialog.c * app/gui/toolbox.c * app/gui/tools-commands.c * libgimp/gimpbrushmenu.c * libgimp/gimpmenu.c * libgimp/gimppatternmenu.c * libgimp/gimpui.c * libgimpbase/gimpenv.c: tons and tons of changes like "const gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete and currently disables), lots of s/gtk_signal/g_signal/, removal/replacement of deprecated stuff, s/GtkSignalFunc/GCallback/ and lots of small changes and fixes while I was on it, zillions of warnings left... * modules/Makefile.am: disabled the water color selector temporarily (XInput issues). * plug-ins/Makefile.am * plug-ins/common/.cvsignore * plug-ins/common/Makefile.am * plug-ins/common/plugin-defs.pl: simply excluded all plug-ins which did not build (including Script-Fu). They are trivial to fix.
269 lines
8.9 KiB
C
269 lines
8.9 KiB
C
/* 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 <libgimpwidgets/gimpwidgetstypes.h>
|
|
|
|
#include <libgimpwidgets/gimpbutton.h>
|
|
#include <libgimpwidgets/gimpchainbutton.h>
|
|
#include <libgimpwidgets/gimpcolorarea.h>
|
|
#include <libgimpwidgets/gimpcolorbutton.h>
|
|
#include <libgimpwidgets/gimpdialog.h>
|
|
#include <libgimpwidgets/gimpfileselection.h>
|
|
#include <libgimpwidgets/gimphelpui.h>
|
|
#include <libgimpwidgets/gimpoffsetarea.h>
|
|
#include <libgimpwidgets/gimppatheditor.h>
|
|
#include <libgimpwidgets/gimppixmap.h>
|
|
#include <libgimpwidgets/gimpquerybox.h>
|
|
#include <libgimpwidgets/gimpsizeentry.h>
|
|
#include <libgimpwidgets/gimpunitmenu.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
/*
|
|
* Widget Constructors
|
|
*/
|
|
|
|
GtkWidget * gimp_option_menu_new (gboolean menu_only,
|
|
|
|
/* specify menu items as va_list:
|
|
* gchar *label,
|
|
* GCallback callback,
|
|
* gpointer data,
|
|
* gpointer user_data,
|
|
* GtkWidget **widget_ptr,
|
|
* gboolean active
|
|
*/
|
|
|
|
...);
|
|
|
|
GtkWidget * gimp_option_menu_new2 (gboolean menu_only,
|
|
GCallback menu_item_callback,
|
|
gpointer data,
|
|
gpointer initial, /* user_data */
|
|
|
|
/* specify menu items as va_list:
|
|
* gchar *label,
|
|
* gpointer user_data,
|
|
* GtkWidget **widget_ptr,
|
|
*/
|
|
|
|
...);
|
|
|
|
void gimp_option_menu_set_history (GtkOptionMenu *option_menu,
|
|
gpointer user_data);
|
|
|
|
GtkWidget * gimp_radio_group_new (gboolean in_frame,
|
|
const gchar *frame_title,
|
|
|
|
/* specify radio buttons as va_list:
|
|
* const gchar *label,
|
|
* GCallback callback,
|
|
* gpointer data,
|
|
* gpointer user_data,
|
|
* GtkWidget **widget_ptr,
|
|
* gboolean active,
|
|
*/
|
|
|
|
...);
|
|
|
|
GtkWidget * gimp_radio_group_new2 (gboolean in_frame,
|
|
const gchar *frame_title,
|
|
GCallback radio_button_callback,
|
|
gpointer data,
|
|
gpointer initial, /* user_data */
|
|
|
|
/* specify radio buttons as va_list:
|
|
* const 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);
|
|
|
|
#define GIMP_SCALE_ENTRY_LABEL(adj) \
|
|
GTK_LABEL (gtk_object_get_data (GTK_OBJECT(adj), "label"))
|
|
|
|
#define GIMP_SCALE_ENTRY_SCALE(adj) \
|
|
GTK_HSCALE (gtk_object_get_data (GTK_OBJECT(adj), "scale"))
|
|
#define GIMP_SCALE_ENTRY_SCALE_ADJ(adj) \
|
|
gtk_range_get_adjustment \
|
|
(GTK_RANGE (gtk_object_get_data (GTK_OBJECT (adj), "scale")))
|
|
|
|
#define GIMP_SCALE_ENTRY_SPINBUTTON(adj) \
|
|
GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (adj), "spinbutton"))
|
|
#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj) \
|
|
gtk_spin_button_get_adjustment \
|
|
(GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (adj), "spinbutton")))
|
|
|
|
GtkObject * gimp_scale_entry_new (GtkTable *table,
|
|
gint column,
|
|
gint row,
|
|
const gchar *text,
|
|
gint scale_usize,
|
|
gint spinbutton_usize,
|
|
gfloat value,
|
|
gfloat lower,
|
|
gfloat upper,
|
|
gfloat step_increment,
|
|
gfloat page_increment,
|
|
guint digits,
|
|
gboolean constrain,
|
|
gfloat unconstrained_lower,
|
|
gfloat unconstrained_upper,
|
|
const gchar *tooltip,
|
|
const gchar *help_data);
|
|
|
|
#define GIMP_RANDOM_SEED_SPINBUTTON(hbox) \
|
|
GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT( hbox), "spinbutton"))
|
|
#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox) \
|
|
gtk_spin_button_get_adjustment \
|
|
(GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (hbox), "spinbutton")))
|
|
|
|
#define GIMP_RANDOM_SEED_TOGGLEBUTTON(hbox) \
|
|
GTK_TOGGLE_BUTTON (gtk_object_get_data (GTK_OBJECT (hbox), \
|
|
"togglebutton"))
|
|
|
|
GtkWidget * gimp_random_seed_new (gint *seed,
|
|
gint *use_time,
|
|
gint time_true,
|
|
gint time_false);
|
|
|
|
#define GIMP_COORDINATES_CHAINBUTTON(sizeentry) \
|
|
GIMP_CHAIN_BUTTON (gtk_object_get_data (GTK_OBJECT (sizeentry), \
|
|
"chainbutton"))
|
|
|
|
GtkWidget * gimp_coordinates_new (GimpUnit unit,
|
|
const gchar *unit_format,
|
|
gboolean menu_show_pixels,
|
|
gboolean menu_show_percent,
|
|
gint spinbutton_usize,
|
|
GimpSizeEntryUpdatePolicy update_policy,
|
|
|
|
gboolean chainbutton_active,
|
|
gboolean chain_constrains_ratio,
|
|
|
|
const gchar *xlabel,
|
|
gdouble x,
|
|
gdouble xres,
|
|
gdouble lower_boundary_x,
|
|
gdouble upper_boundary_x,
|
|
gdouble xsize_0, /* % */
|
|
gdouble xsize_100, /* % */
|
|
|
|
const gchar *ylabel,
|
|
gdouble y,
|
|
gdouble yres,
|
|
gdouble lower_boundary_y,
|
|
gdouble upper_boundary_y,
|
|
gdouble ysize_0, /* % */
|
|
gdouble ysize_100 /* % */);
|
|
|
|
#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON(memsize) \
|
|
GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \
|
|
"spinbutton"))
|
|
#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON_ADJ(memsize) \
|
|
gtk_spin_button_get_adjustment \
|
|
(GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \
|
|
"spinbutton")))
|
|
#define GIMP_MEM_SIZE_ENTRY_OPTIONMENU(memsize) \
|
|
GTK_OPTION_MENU (gtk_object_get_data (GTK_OBJECT (memsize), \
|
|
"optionmenu"))
|
|
|
|
GtkWidget * gimp_mem_size_entry_new (GtkAdjustment *adjustment);
|
|
|
|
|
|
GtkWidget * gimp_pixmap_button_new (gchar **xpm_data,
|
|
const gchar *text);
|
|
|
|
/*
|
|
* Standard Callbacks
|
|
*/
|
|
|
|
void gimp_toggle_button_sensitive_update (GtkToggleButton *toggle_button);
|
|
|
|
void gimp_toggle_button_update (GtkWidget *widget,
|
|
gpointer data);
|
|
|
|
void gimp_radio_button_update (GtkWidget *widget,
|
|
gpointer data);
|
|
|
|
void gimp_menu_item_update (GtkWidget *widget,
|
|
gpointer data);
|
|
|
|
void gimp_int_adjustment_update (GtkAdjustment *adjustment,
|
|
gpointer data);
|
|
|
|
void gimp_uint_adjustment_update (GtkAdjustment *adjustment,
|
|
gpointer data);
|
|
|
|
void gimp_float_adjustment_update (GtkAdjustment *adjustment,
|
|
gpointer data);
|
|
|
|
void gimp_double_adjustment_update (GtkAdjustment *adjustment,
|
|
gpointer data);
|
|
|
|
void gimp_unit_menu_update (GtkWidget *widget,
|
|
gpointer data);
|
|
|
|
|
|
/*
|
|
* Helper Functions
|
|
*/
|
|
|
|
void gimp_table_attach_aligned (GtkTable *table,
|
|
gint column,
|
|
gint row,
|
|
const gchar *label_text,
|
|
gfloat xalign,
|
|
gfloat yalign,
|
|
GtkWidget *widget,
|
|
gint colspan,
|
|
gboolean left_align);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __GIMP_WIDGETS_H__ */
|