mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
Makefile.am configure.in added the new library below.
2001-01-24 Michael Natterer <mitch@gimp.org> * Makefile.am * configure.in * gimptool.in: added the new library below. * libgimpwidgets/Makefile.am * libgimpwidgets/gimpchainbutton.[ch] * libgimpwidgets/gimpcolorarea.[ch] * libgimpwidgets/gimpcolorbutton.[ch] * libgimpwidgets/gimpdialog.[ch] * libgimpwidgets/gimpfileselection.[ch] * libgimpwidgets/gimphelpui.[ch] * libgimpwidgets/gimppatheditor.[ch] * libgimpwidgets/gimppixmap.[ch] * libgimpwidgets/gimpquerybox.[ch] * libgimpwidgets/gimpsizeentry.[ch] * libgimpwidgets/gimpunitmenu.[ch] * libgimpwidgets/gimpwidgets.[ch] * libgimpwidgets/gimpwidgets.def * libgimpwidgets/gimpwidgetstypes.h: new shared library. Currently there are some ugly dependencies into libgimp. These will be removed and go to a "libgimpglue" library which will be a library for functions which share a common interface between plug-ins and the app but have different implementations. Include "libgimp/gimpunit.h" from "libgimpwidgets/gimpwidgetstypes.h" to simulate this upcoming separation. * libgimp/Makefile.am * libgimp/gimpchainbutton.[ch] * libgimp/gimpcolorarea.[ch] * libgimp/gimpcolorbutton.[ch] * libgimp/gimpdialog.[ch] * libgimp/gimpfileselection.[ch] * libgimp/gimphelpui.[ch] * libgimp/gimppatheditor.[ch] * libgimp/gimppixmap.[ch] * libgimp/gimpquerybox.[ch] * libgimp/gimpsizeentry.[ch] * libgimp/gimpunitmenu.[ch] * libgimp/gimpwidgets.[ch]: removed from here. * libgimp/gimpui.h * libgimp/gimpuitypes.h * libgimp/makefile.mingw.in * libgimp/makefile.msc: changed accordingly. * app/[all ui files] * app/pdb/palette_cmds.c * app/pdb/tools_cmds.c * tools/pdbgen/pdb/palette.pdb * tools/pdbgen/pdb/tools.pdb: #include "libgimpwidgets/gimpwidgets.h" and removed useless includes. * app/apptypes.h: #include "libgimpwidgets/gimpwidgetstypes.h" * app/Makefile.am * plug-ins/[all makefiles which link against libgimpui]: link against libgimpwidgets.la * po-libgimp/POTFILES.in: changed file locations.
This commit is contained in:
parent
9c132bf8b2
commit
7a4260da70
324 changed files with 1768 additions and 10021 deletions
64
ChangeLog
64
ChangeLog
|
@ -1,3 +1,67 @@
|
|||
2001-01-24 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* Makefile.am
|
||||
* configure.in
|
||||
* gimptool.in: added the new library below.
|
||||
|
||||
* libgimpwidgets/Makefile.am
|
||||
* libgimpwidgets/gimpchainbutton.[ch]
|
||||
* libgimpwidgets/gimpcolorarea.[ch]
|
||||
* libgimpwidgets/gimpcolorbutton.[ch]
|
||||
* libgimpwidgets/gimpdialog.[ch]
|
||||
* libgimpwidgets/gimpfileselection.[ch]
|
||||
* libgimpwidgets/gimphelpui.[ch]
|
||||
* libgimpwidgets/gimppatheditor.[ch]
|
||||
* libgimpwidgets/gimppixmap.[ch]
|
||||
* libgimpwidgets/gimpquerybox.[ch]
|
||||
* libgimpwidgets/gimpsizeentry.[ch]
|
||||
* libgimpwidgets/gimpunitmenu.[ch]
|
||||
* libgimpwidgets/gimpwidgets.[ch]
|
||||
* libgimpwidgets/gimpwidgets.def
|
||||
* libgimpwidgets/gimpwidgetstypes.h: new shared library.
|
||||
|
||||
Currently there are some ugly dependencies into libgimp. These
|
||||
will be removed and go to a "libgimpglue" library which will be
|
||||
a library for functions which share a common interface between
|
||||
plug-ins and the app but have different implementations.
|
||||
|
||||
Include "libgimp/gimpunit.h" from "libgimpwidgets/gimpwidgetstypes.h"
|
||||
to simulate this upcoming separation.
|
||||
|
||||
* libgimp/Makefile.am
|
||||
* libgimp/gimpchainbutton.[ch]
|
||||
* libgimp/gimpcolorarea.[ch]
|
||||
* libgimp/gimpcolorbutton.[ch]
|
||||
* libgimp/gimpdialog.[ch]
|
||||
* libgimp/gimpfileselection.[ch]
|
||||
* libgimp/gimphelpui.[ch]
|
||||
* libgimp/gimppatheditor.[ch]
|
||||
* libgimp/gimppixmap.[ch]
|
||||
* libgimp/gimpquerybox.[ch]
|
||||
* libgimp/gimpsizeentry.[ch]
|
||||
* libgimp/gimpunitmenu.[ch]
|
||||
* libgimp/gimpwidgets.[ch]: removed from here.
|
||||
|
||||
* libgimp/gimpui.h
|
||||
* libgimp/gimpuitypes.h
|
||||
* libgimp/makefile.mingw.in
|
||||
* libgimp/makefile.msc: changed accordingly.
|
||||
|
||||
* app/[all ui files]
|
||||
* app/pdb/palette_cmds.c
|
||||
* app/pdb/tools_cmds.c
|
||||
* tools/pdbgen/pdb/palette.pdb
|
||||
* tools/pdbgen/pdb/tools.pdb: #include "libgimpwidgets/gimpwidgets.h"
|
||||
and removed useless includes.
|
||||
|
||||
* app/apptypes.h: #include "libgimpwidgets/gimpwidgetstypes.h"
|
||||
|
||||
* app/Makefile.am
|
||||
* plug-ins/[all makefiles which link against libgimpui]:
|
||||
link against libgimpwidgets.la
|
||||
|
||||
* po-libgimp/POTFILES.in: changed file locations.
|
||||
|
||||
2001-01-24 Simon Budig <simon@gimp.org>
|
||||
|
||||
* plug-ins/common/colortoalpha.c: wrapped some actions in a
|
||||
|
|
|
@ -5,6 +5,7 @@ SUBDIRS = \
|
|||
intl \
|
||||
libgimpmath \
|
||||
libgimpcolor \
|
||||
libgimpwidgets \
|
||||
libgimp \
|
||||
app \
|
||||
$(GIMP_PLUGINS) \
|
||||
|
|
|
@ -309,14 +309,15 @@ INCLUDES = \
|
|||
-I$(includedir)
|
||||
|
||||
gimp_LDADD = \
|
||||
pdb/libapppdb.la \
|
||||
tools/libapptools.la \
|
||||
$(top_builddir)/libgimpcolor/libgimpcolor.la \
|
||||
$(top_builddir)/libgimpmath/libgimpmath.la \
|
||||
$(top_builddir)/libgimp/libgimpi.a \
|
||||
$(GTK_LIBS) \
|
||||
$(GIMP_THREAD_LIBS) \
|
||||
$(GIMP_MP_LIBS) \
|
||||
pdb/libapppdb.la \
|
||||
tools/libapptools.la \
|
||||
$(top_builddir)/libgimpcolor/libgimpcolor.la \
|
||||
$(top_builddir)/libgimpmath/libgimpmath.la \
|
||||
$(top_builddir)/libgimpwidgets/libgimpwidgets.la \
|
||||
$(top_builddir)/libgimp/libgimpi.a \
|
||||
$(GTK_LIBS) \
|
||||
$(GIMP_THREAD_LIBS) \
|
||||
$(GIMP_MP_LIBS) \
|
||||
$(INTLLIBS)
|
||||
|
||||
.PHONY: files
|
||||
|
|
|
@ -27,11 +27,12 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "about_dialog.h"
|
||||
#include "appenv.h"
|
||||
#include "about_dialog.h"
|
||||
#include "authors.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimphelp.h"
|
||||
|
@ -39,7 +40,6 @@
|
|||
#include "libgimp/gimpfeatures.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -80,8 +81,6 @@
|
|||
#include "tools/tool_options_dialog.h"
|
||||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
|
@ -39,6 +39,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -59,7 +61,6 @@
|
|||
#include "gimprc.h"
|
||||
#include "gimpparasite.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "gradient_select.h"
|
||||
#include "gradient.h"
|
||||
|
@ -103,7 +104,6 @@
|
|||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpfeatures.h"
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -22,11 +22,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolortypes.h"
|
||||
#include "libgimpmath/gimpmathtypes.h"
|
||||
#include "libgimp/gimpuitypes.h"
|
||||
|
||||
|
||||
/* stuff that will go to general-purpose libraries */
|
||||
#include "libgimp/gimpunit.h"
|
||||
#include "libgimpwidgets/gimpwidgetstypes.h"
|
||||
|
||||
|
||||
#include "undo_types.h"
|
||||
|
|
|
@ -22,11 +22,11 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_balance.h"
|
||||
#include "color_transfer.h"
|
||||
#include "drawable.h"
|
||||
#include "gdisplay.h"
|
||||
|
@ -34,8 +34,10 @@
|
|||
#include "gimpui.h"
|
||||
#include "image_map.h"
|
||||
#include "pixel_region.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include "color_balance.h"
|
||||
#include "tool_options.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "cursorutil.h"
|
||||
#include "curves.h"
|
||||
#include "drawable.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimphistogram.h"
|
||||
|
@ -36,11 +36,12 @@
|
|||
#include "gimpui.h"
|
||||
#include "gimplut.h"
|
||||
#include "image_map.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include "curves.h"
|
||||
#include "tool_options.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -39,8 +40,6 @@
|
|||
#include "gimprc.h"
|
||||
#include "pixel_processor.h"
|
||||
|
||||
#include <libgimp/gimphelpui.h>
|
||||
|
||||
|
||||
struct _GimpHistogram
|
||||
{
|
||||
|
|
|
@ -22,18 +22,19 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "drawable.h"
|
||||
#include "gimage_mask.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "hue_saturation.h"
|
||||
#include "image_map.h"
|
||||
#include "pixel_region.h"
|
||||
|
||||
#include "hue_saturation.h"
|
||||
#include "tools.h"
|
||||
#include "tool_options.h"
|
||||
|
||||
|
|
|
@ -20,9 +20,10 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "drawable.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimphistogram.h"
|
||||
|
@ -32,9 +33,10 @@
|
|||
#include "image_map.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "pixel_region.h"
|
||||
|
||||
#include "threshold.h"
|
||||
#include "tools.h"
|
||||
#include "tool_options.h"
|
||||
#include "tools.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -25,17 +25,14 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gimpbrushgenerated.h"
|
||||
#include "brush_edit.h"
|
||||
#include "gimpui.h"
|
||||
#include "temp_buf.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -36,7 +38,6 @@
|
|||
#include "gimpdnd.h"
|
||||
#include "gimplist.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "session.h"
|
||||
#include "temp_buf.h"
|
||||
|
||||
|
@ -44,8 +45,6 @@
|
|||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "apptypes.h"
|
||||
#include "channel_ops.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "parasitelist.h"
|
||||
|
@ -44,8 +43,6 @@
|
|||
#include "pixel_region.h"
|
||||
#include "tile_manager.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -45,8 +46,6 @@
|
|||
#include "paint_funcs.h"
|
||||
#include "undo.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
#include "pixmaps/eye.xbm"
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_area.h"
|
||||
#include "color_notebook.h"
|
||||
#include "gdisplay.h"
|
||||
|
|
|
@ -29,16 +29,14 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "color_area.h"
|
||||
#include "color_notebook.h"
|
||||
#include "colormaps.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimpcolorselector.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define __COLOR_PANEL_H__
|
||||
|
||||
|
||||
#include "libgimp/gimpcolorbutton.h"
|
||||
#include "libgimpwidgets/gimpcolorbutton.h"
|
||||
|
||||
|
||||
#define GIMP_TYPE_COLOR_PANEL (gimp_color_panel_get_type ())
|
||||
|
|
|
@ -26,20 +26,18 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_select.h"
|
||||
#include "colormaps.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "session.h"
|
||||
#include "color_area.h"
|
||||
|
||||
#include "libgimp/gimpcolorselector.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -40,12 +41,9 @@
|
|||
#include "gimpdnd.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
@ -65,8 +63,8 @@ enum
|
|||
};
|
||||
|
||||
|
||||
static void gimp_colormap_dialog_class_init (GimpColormapDialogClass* klass);
|
||||
static void gimp_colormap_dialog_init (GimpColormapDialog* colormap_dialog);
|
||||
static void gimp_colormap_dialog_class_init (GimpColormapDialogClass *klass);
|
||||
static void gimp_colormap_dialog_init (GimpColormapDialog *colormap_dialog);
|
||||
|
||||
static void ipal_create_popup_menu (GimpColormapDialog *ipal);
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -80,8 +81,6 @@
|
|||
#include "tools/tool_options_dialog.h"
|
||||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -93,10 +93,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "convert.h"
|
||||
#include "cursorutil.h"
|
||||
#include "drawable.h"
|
||||
|
@ -104,7 +104,6 @@
|
|||
#include "fsdither.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "undo.h"
|
||||
#include "palette.h"
|
||||
|
@ -121,8 +120,6 @@
|
|||
#include "tools/posterize.h"
|
||||
#include "tools/threshold.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -32,7 +34,6 @@
|
|||
#include "gimage.h"
|
||||
#include "gimage_mask.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -41,7 +42,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimpprogress.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "paint_options.h"
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "apptypes.h"
|
||||
#include "channel_ops.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "parasitelist.h"
|
||||
|
@ -44,8 +43,6 @@
|
|||
#include "pixel_region.h"
|
||||
#include "tile_manager.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -32,7 +34,6 @@
|
|||
#include "gimage.h"
|
||||
#include "gimage_mask.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
|
|
|
@ -93,10 +93,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "convert.h"
|
||||
#include "cursorutil.h"
|
||||
#include "drawable.h"
|
||||
|
@ -104,7 +104,6 @@
|
|||
#include "fsdither.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "undo.h"
|
||||
#include "palette.h"
|
||||
|
@ -121,8 +120,6 @@
|
|||
#include "tools/posterize.h"
|
||||
#include "tools/threshold.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "apptypes.h"
|
||||
#include "channel_ops.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "parasitelist.h"
|
||||
|
@ -44,8 +43,6 @@
|
|||
#include "pixel_region.h"
|
||||
#include "tile_manager.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -36,7 +37,6 @@
|
|||
#include "gimpbrushlist.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "patterns.h"
|
||||
|
@ -45,8 +45,6 @@
|
|||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -27,11 +27,12 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "about_dialog.h"
|
||||
#include "appenv.h"
|
||||
#include "about_dialog.h"
|
||||
#include "authors.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimphelp.h"
|
||||
|
@ -39,7 +40,6 @@
|
|||
#include "libgimp/gimpfeatures.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -29,16 +29,14 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "color_area.h"
|
||||
#include "color_notebook.h"
|
||||
#include "colormaps.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimpcolorselector.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
|
|
@ -21,19 +21,16 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "image_new.h"
|
||||
#include "file_new_dialog.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gdisplay.h"
|
||||
|
||||
#include "libgimp/gimpchainbutton.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -15,18 +15,19 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "dialog_handler.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "info_dialog.h"
|
||||
#include "session.h"
|
||||
|
||||
|
@ -34,10 +35,19 @@
|
|||
|
||||
|
||||
/* static functions */
|
||||
static void info_field_new (InfoDialog *, InfoFieldType, char *, GtkWidget *,
|
||||
GtkObject *, void *, GtkSignalFunc, gpointer);
|
||||
static void update_field (InfoField *);
|
||||
static gint info_dialog_delete_callback (GtkWidget *, GdkEvent *, gpointer);
|
||||
static void info_field_new (InfoDialog *idialog,
|
||||
InfoFieldType field_type,
|
||||
gchar *title,
|
||||
GtkWidget *widget,
|
||||
GtkObject *object,
|
||||
gpointer value_ptr,
|
||||
GtkSignalFunc callback,
|
||||
gpointer client_data);
|
||||
static void update_field (InfoField *info_field);
|
||||
static gint info_dialog_delete_callback (GtkWidget *widget,
|
||||
GdkEvent *event,
|
||||
gpointer data);
|
||||
|
||||
|
||||
static void
|
||||
info_field_new (InfoDialog *idialog,
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -28,7 +30,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
#include "info_dialog.h"
|
||||
#include "info_window.h"
|
||||
|
||||
|
@ -36,8 +37,6 @@
|
|||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimpunit.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -40,7 +42,6 @@
|
|||
#include "gimprc.h"
|
||||
#include "datafiles.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimpmodule.h"
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -29,7 +30,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimppalette.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "gradient_select.h"
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "colormaps.h"
|
||||
#include "context_manager.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -35,7 +35,6 @@
|
|||
#include "gimage.h"
|
||||
#include "gimphelp.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "image_render.h"
|
||||
#include "layer.h"
|
||||
#include "lc_dialog.h"
|
||||
|
|
|
@ -21,21 +21,18 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "layer.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimprc.h"
|
||||
#include "layer.h"
|
||||
#include "resize.h"
|
||||
#include "undo.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimpchainbutton.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -21,13 +21,12 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gdisplay_ops.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "resolution_calibrate.h"
|
||||
#include "unitrc.h"
|
||||
|
||||
|
|
|
@ -25,11 +25,12 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "tips_dialog.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "tips_dialog.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
|
||||
|
@ -38,19 +39,26 @@
|
|||
#include "wilber.h"
|
||||
|
||||
|
||||
#define TIPS_DIR_NAME "tips"
|
||||
#define TIPS_DIR_NAME "tips"
|
||||
|
||||
static void tips_dialog_destroy (GtkWidget *widget, gpointer data);
|
||||
static void tips_show_previous (GtkWidget *widget, gpointer data);
|
||||
static void tips_show_next (GtkWidget *widget, gpointer data);
|
||||
static void tips_toggle_update (GtkWidget *widget, gpointer data);
|
||||
static void read_tips_file (gchar *filename);
|
||||
|
||||
static GtkWidget *tips_dialog = NULL;
|
||||
static GtkWidget *tips_label;
|
||||
static gchar **tips_text = NULL;
|
||||
static gint tips_count = 0;
|
||||
static gint old_show_tips;
|
||||
static void tips_dialog_destroy (GtkWidget *widget,
|
||||
gpointer data);
|
||||
static void tips_show_previous (GtkWidget *widget,
|
||||
gpointer data);
|
||||
static void tips_show_next (GtkWidget *widget,
|
||||
gpointer data);
|
||||
static void tips_toggle_update (GtkWidget *widget,
|
||||
gpointer data);
|
||||
static void read_tips_file (gchar *filename);
|
||||
|
||||
|
||||
static GtkWidget *tips_dialog = NULL;
|
||||
static GtkWidget *tips_label = NULL;
|
||||
static gchar **tips_text = NULL;
|
||||
static gint tips_count = 0;
|
||||
static gint old_show_tips = 0;
|
||||
|
||||
|
||||
void
|
||||
tips_dialog_create (void)
|
||||
|
|
|
@ -30,13 +30,13 @@
|
|||
#endif
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gdisplay_ops.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "resolution_calibrate.h"
|
||||
#include "unitrc.h"
|
||||
#include "user_install.h"
|
||||
|
|
|
@ -20,18 +20,16 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "colormaps.h"
|
||||
#include "cursorutil.h"
|
||||
#include "gdisplay_ops.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "gimprc.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "disp_callbacks.h"
|
||||
|
@ -28,7 +30,6 @@
|
|||
#include "gimphelp.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "interface.h"
|
||||
#include "menus.h"
|
||||
#include "nav_window.h"
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "disp_callbacks.h"
|
||||
|
@ -28,7 +30,6 @@
|
|||
#include "gimphelp.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "interface.h"
|
||||
#include "menus.h"
|
||||
#include "nav_window.h"
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -36,15 +38,12 @@
|
|||
#include "gimppreviewcache.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "nav_window.h"
|
||||
#include "scroll.h"
|
||||
#include "scale.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimpunit.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
#include "pixmaps/zoom_in.xpm"
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -36,15 +38,12 @@
|
|||
#include "gimppreviewcache.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "nav_window.h"
|
||||
#include "scroll.h"
|
||||
#include "scale.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimpunit.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
#include "pixmaps/zoom_in.xpm"
|
||||
|
|
|
@ -20,12 +20,12 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpprogress.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "dialog_handler.h"
|
||||
|
@ -29,13 +31,11 @@
|
|||
#include "fileops.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "ops_buttons.h"
|
||||
#include "session.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -49,16 +49,15 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "commands.h"
|
||||
#include "gimpui.h"
|
||||
#include "session.h"
|
||||
#include "dialog_handler.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -21,19 +21,16 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "image_new.h"
|
||||
#include "file_new_dialog.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gdisplay.h"
|
||||
|
||||
#include "libgimp/gimpchainbutton.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -62,10 +62,10 @@
|
|||
#endif
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "cursorutil.h"
|
||||
#include "dialog_handler.h"
|
||||
|
@ -85,8 +85,6 @@
|
|||
#include "temp_buf.h"
|
||||
#include "undo.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -20,18 +20,16 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "colormaps.h"
|
||||
#include "cursorutil.h"
|
||||
#include "gdisplay_ops.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "gimprc.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -25,9 +25,10 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "brush_scale.h"
|
||||
#include "gimpbrush.h"
|
||||
#include "gimpbrushpipe.h"
|
||||
|
@ -38,7 +39,6 @@
|
|||
#include "patterns.h"
|
||||
#include "temp_buf.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -44,7 +45,6 @@
|
|||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
|
||||
|
||||
#define DRAG_PREVIEW_SIZE 32
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "apptypes.h"
|
||||
#include "channel_ops.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "parasitelist.h"
|
||||
|
@ -44,8 +43,6 @@
|
|||
#include "pixel_region.h"
|
||||
#include "tile_manager.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "gimphelp.h"
|
||||
|
@ -39,7 +41,6 @@
|
|||
#include "plug_in.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -39,8 +40,6 @@
|
|||
#include "gimprc.h"
|
||||
#include "pixel_processor.h"
|
||||
|
||||
#include <libgimp/gimphelpui.h>
|
||||
|
||||
|
||||
struct _GimpHistogram
|
||||
{
|
||||
|
|
|
@ -93,10 +93,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "convert.h"
|
||||
#include "cursorutil.h"
|
||||
#include "drawable.h"
|
||||
|
@ -104,7 +104,6 @@
|
|||
#include "fsdither.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "undo.h"
|
||||
#include "palette.h"
|
||||
|
@ -121,8 +120,6 @@
|
|||
#include "tools/posterize.h"
|
||||
#include "tools/threshold.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "apptypes.h"
|
||||
#include "channel_ops.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimage.h"
|
||||
#include "gimpui.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
#include "parasitelist.h"
|
||||
|
@ -44,8 +43,6 @@
|
|||
#include "pixel_region.h"
|
||||
#include "tile_manager.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -20,12 +20,12 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gdisplay.h"
|
||||
#include "gimpprogress.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -25,12 +25,12 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
11
app/gimpui.h
11
app/gimpui.h
|
@ -23,17 +23,6 @@
|
|||
#define __GIMP_UI_H__
|
||||
|
||||
|
||||
#include "libgimp/gimpchainbutton.h"
|
||||
#include "libgimp/gimpdialog.h"
|
||||
#include "libgimp/gimpfileselection.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimppixmap.h"
|
||||
#include "libgimp/gimppatheditor.h"
|
||||
#include "libgimp/gimpquerybox.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
#include "libgimp/gimpwidgets.h"
|
||||
|
||||
|
||||
/* a simple message box */
|
||||
|
||||
void gimp_message_box (gchar *message,
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -32,7 +34,6 @@
|
|||
#include "gimage.h"
|
||||
#include "gimage_mask.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "layer.h"
|
||||
#include "paint_funcs.h"
|
||||
|
|
|
@ -59,10 +59,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_notebook.h"
|
||||
#include "cursorutil.h"
|
||||
#include "datafiles.h"
|
||||
|
@ -70,7 +70,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradientP.h"
|
||||
#include "gradient_header.h"
|
||||
|
|
|
@ -59,10 +59,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_notebook.h"
|
||||
#include "cursorutil.h"
|
||||
#include "datafiles.h"
|
||||
|
@ -70,7 +70,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradientP.h"
|
||||
#include "gradient_header.h"
|
||||
|
|
|
@ -38,13 +38,14 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "dialog_handler.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "gradientP.h"
|
||||
|
|
|
@ -27,11 +27,12 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "about_dialog.h"
|
||||
#include "appenv.h"
|
||||
#include "about_dialog.h"
|
||||
#include "authors.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimphelp.h"
|
||||
|
@ -39,7 +40,6 @@
|
|||
#include "libgimp/gimpfeatures.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -25,17 +25,14 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "gimpbrushgenerated.h"
|
||||
#include "brush_edit.h"
|
||||
#include "gimpui.h"
|
||||
#include "temp_buf.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -36,7 +38,6 @@
|
|||
#include "gimpdnd.h"
|
||||
#include "gimplist.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "session.h"
|
||||
#include "temp_buf.h"
|
||||
|
||||
|
@ -44,8 +45,6 @@
|
|||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -45,8 +46,6 @@
|
|||
#include "paint_funcs.h"
|
||||
#include "undo.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
#include "pixmaps/eye.xbm"
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_area.h"
|
||||
#include "color_notebook.h"
|
||||
#include "gdisplay.h"
|
||||
|
|
|
@ -29,16 +29,14 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "color_area.h"
|
||||
#include "color_notebook.h"
|
||||
#include "colormaps.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimpcolorselector.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
|
|
@ -26,20 +26,18 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_select.h"
|
||||
#include "colormaps.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "session.h"
|
||||
#include "color_area.h"
|
||||
|
||||
#include "libgimp/gimpcolorselector.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -40,12 +41,9 @@
|
|||
#include "gimpdnd.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
@ -65,8 +63,8 @@ enum
|
|||
};
|
||||
|
||||
|
||||
static void gimp_colormap_dialog_class_init (GimpColormapDialogClass* klass);
|
||||
static void gimp_colormap_dialog_init (GimpColormapDialog* colormap_dialog);
|
||||
static void gimp_colormap_dialog_class_init (GimpColormapDialogClass *klass);
|
||||
static void gimp_colormap_dialog_init (GimpColormapDialog *colormap_dialog);
|
||||
|
||||
static void ipal_create_popup_menu (GimpColormapDialog *ipal);
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -80,8 +81,6 @@
|
|||
#include "tools/tool_options_dialog.h"
|
||||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -36,7 +37,6 @@
|
|||
#include "gimpbrushlist.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "patterns.h"
|
||||
|
@ -45,8 +45,6 @@
|
|||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -21,19 +21,16 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "image_new.h"
|
||||
#include "file_new_dialog.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gdisplay.h"
|
||||
|
||||
#include "libgimp/gimpchainbutton.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -59,10 +59,10 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "color_notebook.h"
|
||||
#include "cursorutil.h"
|
||||
#include "datafiles.h"
|
||||
|
@ -70,7 +70,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradientP.h"
|
||||
#include "gradient_header.h"
|
||||
|
|
|
@ -38,13 +38,14 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "dialog_handler.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "gradientP.h"
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -80,8 +81,6 @@
|
|||
#include "tools/tool_options_dialog.h"
|
||||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,14 +23,14 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "brush_select.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpcontextpreview.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient_select.h"
|
||||
#include "indicator_area.h"
|
||||
#include "pattern_select.h"
|
||||
|
|
|
@ -15,18 +15,19 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "dialog_handler.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "info_dialog.h"
|
||||
#include "session.h"
|
||||
|
||||
|
@ -34,10 +35,19 @@
|
|||
|
||||
|
||||
/* static functions */
|
||||
static void info_field_new (InfoDialog *, InfoFieldType, char *, GtkWidget *,
|
||||
GtkObject *, void *, GtkSignalFunc, gpointer);
|
||||
static void update_field (InfoField *);
|
||||
static gint info_dialog_delete_callback (GtkWidget *, GdkEvent *, gpointer);
|
||||
static void info_field_new (InfoDialog *idialog,
|
||||
InfoFieldType field_type,
|
||||
gchar *title,
|
||||
GtkWidget *widget,
|
||||
GtkObject *object,
|
||||
gpointer value_ptr,
|
||||
GtkSignalFunc callback,
|
||||
gpointer client_data);
|
||||
static void update_field (InfoField *info_field);
|
||||
static gint info_dialog_delete_callback (GtkWidget *widget,
|
||||
GdkEvent *event,
|
||||
gpointer data);
|
||||
|
||||
|
||||
static void
|
||||
info_field_new (InfoDialog *idialog,
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -28,7 +30,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
#include "info_dialog.h"
|
||||
#include "info_window.h"
|
||||
|
||||
|
@ -36,8 +37,6 @@
|
|||
|
||||
#include "pdb/procedural_db.h"
|
||||
|
||||
#include "libgimp/gimpunit.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -36,7 +37,6 @@
|
|||
#include "gimpbrushlist.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "patterns.h"
|
||||
|
@ -45,8 +45,6 @@
|
|||
#include "tools/tools.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimpcolorarea.h"
|
||||
#include "libgimp/gimphelpui.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -34,7 +35,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "image_render.h"
|
||||
#include "layer.h"
|
||||
#include "layers_dialog.h"
|
||||
|
@ -48,7 +48,6 @@
|
|||
#include "undo.h"
|
||||
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpsizeentry.h"
|
||||
|
||||
#include "libgimp/gimpintl.h"
|
||||
|
||||
|
|
|
@ -24,9 +24,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channels_dialog.h"
|
||||
#include "commands.h"
|
||||
#include "dialog_handler.h"
|
||||
|
@ -34,7 +35,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimphelp.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "layers_dialog.h"
|
||||
#include "menus.h"
|
||||
#include "paths_dialog.h"
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
|
@ -40,7 +42,6 @@
|
|||
#include "gimprc.h"
|
||||
#include "datafiles.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimpmodule.h"
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "color_area.h"
|
||||
|
@ -36,7 +38,6 @@
|
|||
#include "gimpdnd.h"
|
||||
#include "gimppalette.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "palette.h"
|
||||
#include "paletteP.h"
|
||||
#include "palette_import.h"
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
|
@ -29,7 +30,6 @@
|
|||
#include "gimpcontext.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimppalette.h"
|
||||
#include "gimpui.h"
|
||||
#include "gradient.h"
|
||||
#include "gradient_header.h"
|
||||
#include "gradient_select.h"
|
||||
|
|
|
@ -21,10 +21,11 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "gimppalette.h"
|
||||
#include "gimpui.h"
|
||||
#include "palette_select.h"
|
||||
#include "palette.h"
|
||||
#include "paletteP.h"
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "draw_core.h"
|
||||
#include "drawable.h"
|
||||
#include "floating_sel.h"
|
||||
|
@ -42,7 +42,6 @@
|
|||
#include "gdisplay.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpset.h"
|
||||
#include "gimpui.h"
|
||||
#include "image_render.h"
|
||||
#include "lc_dialogP.h"
|
||||
#include "menus.h"
|
||||
|
|
|
@ -22,13 +22,14 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "dialog_handler.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimpui.h"
|
||||
#include "patterns.h"
|
||||
#include "pattern_select.h"
|
||||
#include "session.h"
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpmath/gimpmath.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "colormaps.h"
|
||||
#include "context_manager.h"
|
||||
#include "cursorutil.h"
|
||||
|
@ -35,7 +35,6 @@
|
|||
#include "gimage.h"
|
||||
#include "gimphelp.h"
|
||||
#include "gimprc.h"
|
||||
#include "gimpui.h"
|
||||
#include "image_render.h"
|
||||
#include "layer.h"
|
||||
#include "lc_dialog.h"
|
||||
|
|
|
@ -25,10 +25,10 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpcolor/gimpcolor.h"
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
|
||||
#include "appenv.h"
|
||||
#include "channel.h"
|
||||
#include "color_panel.h"
|
||||
#include "drawable.h"
|
||||
|
@ -37,7 +37,6 @@
|
|||
#include "gimage_mask.h"
|
||||
#include "gimpimage.h"
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpui.h"
|
||||
#include "global_edit.h"
|
||||
#include "qmask.h"
|
||||
#include "undo.h"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue