1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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
|
|
|
|
* along with this program; if not, write to the Free Software
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-10-13 20:52:30 +08:00
|
|
|
#ifndef __GIMP_DISPLAY_SHELL_H__
|
|
|
|
#define __GIMP_DISPLAY_SHELL_H__
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2001-10-13 20:52:30 +08:00
|
|
|
#include <gtk/gtkwindow.h>
|
1999-03-12 11:44:59 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* FIXME remmove all gui/ stuff */
|
|
|
|
#include "gui/gui-types.h"
|
|
|
|
|
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
/* maximal width of the string holding the cursor-coordinates for
|
|
|
|
* the status line
|
|
|
|
*/
|
|
|
|
#define CURSOR_STR_LENGTH 256
|
|
|
|
|
|
|
|
/* maximal length of the format string for the cursor-coordinates */
|
|
|
|
#define CURSOR_FORMAT_LENGTH 32
|
|
|
|
|
|
|
|
|
2001-10-13 20:52:30 +08:00
|
|
|
#define GIMP_TYPE_DISPLAY_SHELL (gimp_display_shell_get_type ())
|
|
|
|
#define GIMP_DISPLAY_SHELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DISPLAY_SHELL, GimpDisplayShell))
|
|
|
|
#define GIMP_DISPLAY_SHELL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DISPLAY_SHELL, GimpDisplayShellClass))
|
|
|
|
#define GIMP_IS_DISPLAY_SHELL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_DISPLAY_SHELL))
|
|
|
|
#define GIMP_IS_DISPLAY_SHELL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DISPLAY_SHELL))
|
|
|
|
#define GIMP_DISPLAY_SHELL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_DISPLAY_SHELL, GimpDisplayShellClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpDisplayShellClass GimpDisplayShellClass;
|
|
|
|
|
|
|
|
struct _GimpDisplayShell
|
|
|
|
{
|
2001-11-01 05:20:09 +08:00
|
|
|
GtkWindow parent_instance;
|
|
|
|
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
|
|
|
|
GtkItemFactory *ifactory;
|
|
|
|
|
2001-11-02 17:31:21 +08:00
|
|
|
gint offset_x; /* offset of display image into raw image */
|
|
|
|
gint offset_y;
|
|
|
|
|
|
|
|
gint disp_width; /* width of drawing area */
|
|
|
|
gint disp_height; /* height of drawing area */
|
|
|
|
gint disp_xoffset;
|
|
|
|
gint disp_yoffset;
|
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
gboolean proximity; /* is a device in proximity */
|
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
Selection *select; /* Selection object */
|
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
GSList *display_areas; /* display areas list */
|
|
|
|
|
|
|
|
GtkAdjustment *hsbdata; /* adjustments */
|
|
|
|
GtkAdjustment *vsbdata;
|
|
|
|
|
|
|
|
GtkWidget *canvas; /* canvas widget */
|
|
|
|
|
|
|
|
GtkWidget *hsb; /* scroll bars */
|
|
|
|
GtkWidget *vsb;
|
2001-11-30 00:44:51 +08:00
|
|
|
GtkWidget *qmask; /* qmask button */
|
2001-11-01 05:20:09 +08:00
|
|
|
GtkWidget *hrule; /* rulers */
|
|
|
|
GtkWidget *vrule;
|
|
|
|
GtkWidget *origin; /* origin button */
|
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
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
GtkWidget *statusarea; /* status area hbox */
|
|
|
|
GtkWidget *statusbar; /* statusbar */
|
|
|
|
GtkWidget *progressbar; /* progressbar */
|
|
|
|
guint progressid; /* progress id */
|
|
|
|
GtkWidget *cursor_label; /* cursor position */
|
|
|
|
gchar cursor_format_str[CURSOR_FORMAT_LENGTH];
|
|
|
|
GtkWidget *cancelbutton; /* cancel button */
|
|
|
|
|
|
|
|
GdkGC *scroll_gc; /* GC for scrolling */
|
|
|
|
|
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
|
|
|
gint icon_size; /* size of the icon pixmap */
|
2001-11-16 23:08:59 +08:00
|
|
|
guint icon_idle_id; /* ID of the idle-function */
|
2001-11-01 05:20:09 +08:00
|
|
|
|
|
|
|
GdkCursorType current_cursor; /* Currently installed main cursor */
|
|
|
|
GimpToolCursorType tool_cursor; /* Current Tool cursor */
|
|
|
|
GimpCursorModifier cursor_modifier; /* Cursor modifier (plus, minus, ...) */
|
|
|
|
|
2001-11-16 23:08:59 +08:00
|
|
|
GdkCursorType override_cursor; /* Overriding cursor */
|
|
|
|
gboolean using_override_cursor; /* is the cursor overridden? */
|
2001-11-01 05:20:09 +08:00
|
|
|
|
2001-11-16 23:08:59 +08:00
|
|
|
gboolean draw_cursor; /* should we draw software cursor ? */
|
|
|
|
gboolean have_cursor; /* is cursor currently drawn ? */
|
|
|
|
gint cursor_x; /* software cursor X value */
|
|
|
|
gint cursor_y; /* software cursor Y value */
|
2001-11-01 05:20:09 +08:00
|
|
|
|
2001-11-16 23:08:59 +08:00
|
|
|
GtkWidget *padding_button; /* GimpColorPanel in the NE corner */
|
|
|
|
GimpRGB padding_color; /* color of the empty around the image */
|
|
|
|
GdkGC *padding_gc; /* GC with padding_color as BG */
|
|
|
|
|
|
|
|
GtkWidget *warning_dialog; /* close warning dialog */
|
|
|
|
InfoDialog *info_dialog; /* image information dialog */
|
|
|
|
NavigationDialog *nav_dialog; /* image navigation dialog */
|
|
|
|
NavigationDialog *nav_popup; /* navigation popup */
|
2001-11-01 05:20:09 +08:00
|
|
|
|
|
|
|
#ifdef DISPLAY_FILTERS
|
2001-11-16 23:08:59 +08:00
|
|
|
GList *cd_list; /* color display conversion stuff */
|
|
|
|
GtkWidget *cd_ui; /* color display filter dialog */
|
2001-11-01 05:20:09 +08:00
|
|
|
#endif /* DISPLAY_FILTERS */
|
2001-10-13 20:52:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpDisplayShellClass
|
|
|
|
{
|
|
|
|
GtkWindowClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
GType gimp_display_shell_get_type (void) G_GNUC_CONST;
|
2001-11-01 05:20:09 +08:00
|
|
|
|
|
|
|
GtkWidget * gimp_display_shell_new (GimpDisplay *gdisp);
|
|
|
|
|
|
|
|
void gimp_display_shell_close (GimpDisplayShell *shell,
|
|
|
|
gboolean kill_it);
|
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
void gimp_display_shell_reconnect (GimpDisplayShell *shell);
|
|
|
|
|
2001-11-10 22:17:01 +08:00
|
|
|
void gimp_display_shell_transform_coords (GimpDisplayShell *shell,
|
|
|
|
GimpCoords *image_coords,
|
|
|
|
GimpCoords *display_coords);
|
|
|
|
void gimp_display_shell_untransform_coords (GimpDisplayShell *shell,
|
|
|
|
GimpCoords *display_coords,
|
|
|
|
GimpCoords *image_coords);
|
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
void gimp_display_shell_set_menu_sensitivity (GimpDisplayShell *shell);
|
|
|
|
|
|
|
|
GimpGuide * gimp_display_shell_find_guide (GimpDisplayShell *shell,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y);
|
|
|
|
gboolean gimp_display_shell_snap_point (GimpDisplayShell *shell,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
gdouble *tx,
|
|
|
|
gdouble *ty);
|
|
|
|
gboolean gimp_display_shell_snap_rectangle (GimpDisplayShell *shell,
|
|
|
|
gdouble x1,
|
|
|
|
gdouble y1,
|
|
|
|
gdouble x2,
|
|
|
|
gdouble y2,
|
|
|
|
gdouble *tx1,
|
|
|
|
gdouble *ty1);
|
|
|
|
|
|
|
|
gint gimp_display_shell_mask_value (GimpDisplayShell *shell,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
|
|
|
gboolean gimp_display_shell_mask_bounds (GimpDisplayShell *shell,
|
|
|
|
gint *x1,
|
|
|
|
gint *y1,
|
|
|
|
gint *x2,
|
|
|
|
gint *y2);
|
|
|
|
|
|
|
|
void gimp_display_shell_add_expose_area (GimpDisplayShell *shell,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h);
|
|
|
|
void gimp_display_shell_expose_guide (GimpDisplayShell *shell,
|
|
|
|
GimpGuide *guide);
|
|
|
|
void gimp_display_shell_expose_full (GimpDisplayShell *shell);
|
|
|
|
|
|
|
|
void gimp_display_shell_flush (GimpDisplayShell *shell);
|
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
void gimp_display_shell_real_install_tool_cursor (GimpDisplayShell *shell,
|
|
|
|
GdkCursorType cursor_type,
|
2001-11-01 05:20:09 +08:00
|
|
|
GimpToolCursorType tool_cursor,
|
|
|
|
GimpCursorModifier modifier,
|
2001-11-11 07:03:22 +08:00
|
|
|
gboolean always_install);
|
|
|
|
void gimp_display_shell_install_tool_cursor (GimpDisplayShell *shell,
|
|
|
|
GdkCursorType cursor_type,
|
2001-11-01 05:20:09 +08:00
|
|
|
GimpToolCursorType tool_cursor,
|
|
|
|
GimpCursorModifier modifier);
|
|
|
|
void gimp_display_shell_remove_tool_cursor (GimpDisplayShell *shell);
|
|
|
|
void gimp_display_shell_install_override_cursor (GimpDisplayShell *shell,
|
|
|
|
GdkCursorType cursor_type);
|
|
|
|
void gimp_display_shell_remove_override_cursor (GimpDisplayShell *shell);
|
|
|
|
|
|
|
|
void gimp_display_shell_update_cursor (GimpDisplayShell *shell,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
|
|
|
void gimp_display_shell_resize_cursor_label (GimpDisplayShell *shell);
|
|
|
|
void gimp_display_shell_update_title (GimpDisplayShell *shell);
|
|
|
|
|
|
|
|
void gimp_display_shell_draw_guide (GimpDisplayShell *shell,
|
|
|
|
GimpGuide *guide,
|
|
|
|
gboolean active);
|
|
|
|
void gimp_display_shell_draw_guides (GimpDisplayShell *shell);
|
2001-10-13 20:52:30 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
void gimp_display_shell_shrink_wrap (GimpDisplayShell *shell);
|
2001-10-13 20:52:30 +08:00
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
void gimp_display_shell_selection_visibility (GimpDisplayShell *shell,
|
|
|
|
GimpSelectionControl control);
|
|
|
|
|
2001-10-13 20:52:30 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_DISPLAY_SHELL_H__ */
|