2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-08-17 22:27:31 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-08-17 22:27:31 +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
|
2001-08-17 22:27:31 +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/>.
|
2001-08-17 22:27:31 +08:00
|
|
|
*/
|
2003-09-07 18:29:10 +08:00
|
|
|
|
2001-08-17 22:27:31 +08:00
|
|
|
#ifndef __DISPLAY_TYPES_H__
|
|
|
|
#define __DISPLAY_TYPES_H__
|
|
|
|
|
|
|
|
|
include the new "paint-funcs/paint-funcs-types.h".
2001-11-28 Michael Natterer <mitch@gimp.org>
* app/base/base-types.h: include the new
"paint-funcs/paint-funcs-types.h".
* app/paint-funcs/Makefile.am
* app/paint-funcs/paint-funcs-types.h: new file. Includes
"base/base-types.h".
* app/paint-funcs/paint-funcs.[ch]: removed the enums here,
include "paint-funcs-types.h".
* app/widgets/widgets-types.h: include "display/display-types.h"
* app/display/display-types.h: include "widgets/widgets-types.h".
* app/tools/tools-types.h: include "display/display-types.h"
* app/gui/gui-types.h: include "tools/tools-types.h".
The order of namespaces/dependencies should be (but is not):
(base, paint-funcs) -> (core, file, xcf, pdb) ->
(widgets, display) -> tools -> gui
* app/path.c: include "tools/tools-types.h".
* app/core/Makefile.am
* app/core/gimpimage-guides.[ch]
* app/core/gimpimage-merge.[ch]
* app/core/gimpimage-resize.[ch]
* app/core/gimpimage-scale.[ch]: new files.
* app/core/gimpimage.[ch]: removed the stuff which is in the new
files. Reordered all functions in both the .h and .c files,
commented the groups of functions.
* app/core/gimpcontainer.c: create the handler_id using a counter,
not the address of a pointer, because the address *may* be the
same twice, added debugging output.
* app/core/gimpviewable.[ch]: added primitive support for getting
a preview GdkPixbuf.
* app/nav_window.c
* app/undo.c
* app/undo_history.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage-mask.[ch]
* app/display/gimpdisplay.c
* app/display/gimpdisplayshell-callbacks.c
* app/display/gimpdisplayshell-dnd.c
* app/display/gimpdisplayshell-render.c
* app/display/gimpdisplayshell-scale.c
* app/display/gimpdisplayshell-scroll.c
* app/gui/image-commands.c
* app/gui/info-window.c
* app/gui/layers-commands.c
* app/gui/palette-import-dialog.c
* app/tools/gimpbycolorselecttool.c
* app/tools/gimpeditselectiontool.c
* app/tools/gimpmeasuretool.c
* app/tools/gimpmovetool.c
* app/widgets/gimpcontainerview-utils.c
* app/xcf/xcf-load.c: changed accordingly, some cleanup.
* tools/pdbgen/pdb/guides.pdb
* tools/pdbgen/pdb/image.pdb: changed accordingly, reordered functions.
* app/plug_in.c: set the labels of the "Repeat" and "Re-Show" menu
items to the name of the last plug-in (Fixes #50986).
* app/display/gimpdisplayshell.[ch]: set the labels of "Undo" and
"Redo" to the resp. undo names. Much simplified the WM icon stuff
by removing most code and using gimp_viewable_get_new_preview_pixbuf().
* app/widgets/gimpbrushfactoryview.c: forgot to assign the GQuark
returned by gimp_container_add_handler().
* app/pdb/guides_cmds.c
* app/pdb/image_cmds.c
* libgimp/gimpimage_pdb.[ch]: regenerated.
2001-11-29 01:51:06 +08:00
|
|
|
#include "widgets/widgets-types.h"
|
2001-08-17 22:27:31 +08:00
|
|
|
|
2001-12-19 01:45:29 +08:00
|
|
|
#include "display/display-enums.h"
|
2001-08-17 22:27:31 +08:00
|
|
|
|
|
|
|
|
2004-07-19 19:33:59 +08:00
|
|
|
typedef struct _GimpCanvas GimpCanvas;
|
2003-11-10 07:24:40 +08:00
|
|
|
|
2004-07-19 19:33:59 +08:00
|
|
|
typedef struct _GimpDisplay GimpDisplay;
|
|
|
|
typedef struct _GimpDisplayShell GimpDisplayShell;
|
|
|
|
/* typedef struct _GimpDisplayOptions GimpDisplayOptions; in config-types.h */
|
2001-09-26 01:44:03 +08:00
|
|
|
|
2008-11-10 03:34:12 +08:00
|
|
|
typedef struct _GimpCursorView GimpCursorView;
|
2004-08-26 00:02:10 +08:00
|
|
|
typedef struct _GimpNavigationEditor GimpNavigationEditor;
|
2004-07-19 19:33:59 +08:00
|
|
|
typedef struct _GimpScaleComboBox GimpScaleComboBox;
|
|
|
|
typedef struct _GimpStatusbar GimpStatusbar;
|
2002-02-03 20:10:23 +08:00
|
|
|
|
2004-07-19 19:33:59 +08:00
|
|
|
typedef struct _Selection Selection;
|
2001-08-17 22:27:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __DISPLAY_TYPES_H__ */
|