2000-06-09 Michael Natterer <mitch@gimp.org> Cursor patch II: This is only the logic inside the cursor system and not yet used. * app/cursorutil.[ch]: [gimp]_change_win_cursor() take lots of parameters now and compose cursors from up to three cursor bitmaps/masks. * app/gdisplay.[ch]: As a test, create a hardcoded example cursor if "Cursor Mode" is set to "Tool Icon with Crosshair" in prefs. * app/curves.c * app/dialog_handler.c * app/scroll.c: changed the calls to the win_cursor function. * app/tools.[ch]: added a cursor and a toggle cursor to the ToolInfo structure of all tools. * app/toolsF.h: new ToolType TOOL_TYPE_NONE. * app/gimpdnd.c * app/interface.c: check for silly filenames in the file dnd callback. Closes #13733. * Makefile.am * cursors/bucket_fill_small.xbm * cursors/bucket_fill_small_mask.xbm * cursors/crop_small.xbm * cursors/crop_small_mask.xbm * cursors/crosshair_small.xbm * cursors/crosshair_small_mask.xbm * cursors/ellipse_select_small.xbm * cursors/ellipse_select_small_mask.xbm * cursors/eraser_small.xbm * cursors/eraser_small_mask.xbm * cursors/free_select_small.xbm * cursors/free_select_small_mask.xbm * cursors/fuzzy_select_small.xbm * cursors/fuzzy_select_small_mask.xbm * cursors/intersect.xbm * cursors/intersect_mask.xbm * cursors/minus.xbm * cursors/minus_mask.xbm * cursors/move.xbm * cursors/move_mask.xbm * cursors/paintbrush_small.xbm * cursors/paintbrush_small_mask.xbm * cursors/pencil_small.xbm * cursors/pencil_small_mask.xbm * cursors/plus.xbm * cursors/plus_mask.xbm * cursors/rect_select_small.xbm * cursors/rect_select_small_mask.xbm * cursors/resize_small.xbm * cursors/resize_small_mask.xbm * cursors/zoom.xbm * cursors/zoom_mask.xbm * cursors/zoom_small.xbm * cursors/zoom_small_mask.xbm: new files extracted from Tigert's gimp-tool-cursors.xcf created at GimpCon. Tigert, I'll commit the xcf as soon as I've added empty layers with the names of the cursors that are missing. * cursors/mouse.xbm * cursors/mouse_mask.xbm: made it 32x32 to allow for cursor composition.
107 lines
2.9 KiB
C
107 lines
2.9 KiB
C
/* 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
#ifndef __CURSORUTIL_H__
|
|
#define __CURSORUTIL_H__
|
|
|
|
#include <glib.h>
|
|
|
|
#include <gdk/gdktypes.h>
|
|
#if defined (GDK_WINDOWING_WIN32) || defined (GDK_WINDOWING_X11)
|
|
/* Stopgap measure to detect build with current CVS GTk+ */
|
|
#include <gdk/gdkcursor.h>
|
|
#endif
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "toolsF.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
guchar *bits;
|
|
guchar *mask_bits;
|
|
gint width, height;
|
|
gint x_hot, y_hot;
|
|
GdkBitmap *bitmap;
|
|
GdkBitmap *mask;
|
|
GdkCursor *cursor;
|
|
} BitmapCursor;
|
|
|
|
typedef enum
|
|
{
|
|
CURSOR_MODE_TOOL_ICON,
|
|
CURSOR_MODE_TOOL_CROSSHAIR,
|
|
CURSOR_MODE_CROSSHAIR
|
|
} CursorMode;
|
|
|
|
typedef enum
|
|
{
|
|
CURSOR_MODIFIER_NONE,
|
|
CURSOR_MODIFIER_PLUS,
|
|
CURSOR_MODIFIER_MINUS,
|
|
CURSOR_MODIFIER_INTERSECT,
|
|
CURSOR_MODIFIER_MOVE
|
|
} CursorModifier;
|
|
|
|
/* FIXME: gimp_busy HACK */
|
|
extern gboolean gimp_busy;
|
|
|
|
typedef enum
|
|
{
|
|
GIMP_MOUSE_CURSOR = (GDK_LAST_CURSOR + 2),
|
|
GIMP_CROSSHAIR_CURSOR,
|
|
GIMP_CROSSHAIR_SMALL_CURSOR,
|
|
|
|
/* to be reordered */
|
|
GIMP_ZOOM_CURSOR,
|
|
|
|
/* to be reordered / removed: */
|
|
GIMP_MOUSE_ADD_CURSOR,
|
|
GIMP_MOUSE_SUBTRACT_CURSOR,
|
|
GIMP_MOUSE_INTERSECT_CURSOR,
|
|
GIMP_MOUSE_POINT_CURSOR,
|
|
GIMP_MOUSE_RECTANGLE_CURSOR,
|
|
GIMP_MOUSE_MOVE_CURSOR,
|
|
GIMP_SELECTION_CURSOR,
|
|
GIMP_SELECTION_ADD_CURSOR,
|
|
GIMP_SELECTION_SUBTRACT_CURSOR,
|
|
GIMP_SELECTION_INTERSECT_CURSOR,
|
|
GIMP_SELECTION_MOVE_CURSOR,
|
|
GIMP_BAD_CURSOR,
|
|
GIMP_COLOR_PICKER_CURSOR,
|
|
GIMP_ZOOM_IN_CURSOR,
|
|
GIMP_ZOOM_OUT_CURSOR,
|
|
GIMP_LAST_CURSOR_ENTRY
|
|
} GimpCursorType;
|
|
|
|
void change_win_cursor (GdkWindow *win,
|
|
GdkCursorType curtype,
|
|
ToolType tool_type,
|
|
CursorModifier modifier,
|
|
gboolean toggle_cursor);
|
|
void unset_win_cursor (GdkWindow *win);
|
|
|
|
void gimp_add_busy_cursors_until_idle (void);
|
|
void gimp_add_busy_cursors (void);
|
|
gint gimp_remove_busy_cursors (gpointer data);
|
|
|
|
gboolean gtkutil_compress_motion (GtkWidget *widget,
|
|
gdouble *lastmotion_x,
|
|
gdouble *lastmotion_y);
|
|
|
|
#endif /* __CURSORUTIL_H__ */
|