cursors/Makefile.am cursors/cursor-corner-bottom-left.png
2006-06-02 Michael Natterer <mitch@gimp.org> * cursors/Makefile.am * cursors/cursor-corner-bottom-left.png * cursors/cursor-corner-bottom-right.png * cursors/cursor-corner-top-left.png * cursors/cursor-corner-top-right.png * cursors/cursor-side-bottom.png * cursors/cursor-side-left.png * cursors/cursor-side-right.png * cursors/cursor-side-top.png * cursors/xbm/cursor-corner-bottom-left-mask.xbm * cursors/xbm/cursor-corner-bottom-left.xbm * cursors/xbm/cursor-corner-bottom-right-mask.xbm * cursors/xbm/cursor-corner-bottom-right.xbm * cursors/xbm/cursor-corner-top-left-mask.xbm * cursors/xbm/cursor-corner-top-left.xbm * cursors/xbm/cursor-corner-top-right-mask.xbm * cursors/xbm/cursor-corner-top-right.xbm * cursors/xbm/cursor-side-bottom-mask.xbm * cursors/xbm/cursor-side-bottom.xbm * cursors/xbm/cursor-side-left-mask.xbm * cursors/xbm/cursor-side-left.xbm * cursors/xbm/cursor-side-right-mask.xbm * cursors/xbm/cursor-side-right.xbm * cursors/xbm/cursor-side-top-mask.xbm * cursors/xbm/cursor-side-top.xbm: new cursors for edge and corner resizing. They perfectly align with the small crosshair and can be used together with tool cursors and cursor modifiers. * cursors/gimp-tool-cursors.xcf: add them here too. * app/widgets/widgets-enums.h: add them to the GimpCursorType enum. * app/widgets/gimpcursor.c: add them here too. * app/display/gimpdisplayshell-cursor.c: treat them like the small crosshair (don't replace them by the small crosshair but use them as-is). Also allow the bad modifier with the large crosshair. * app/tools/gimprectangletool.c (gimp_rectangle_tool_cursor_update): use the new cursors. Don't call gimp_tool_set_cursor() here. (gimp_rectangle_tool_response): reset "function" to RECT_CREATING when resetting the tool. * app/tools/gimpselectiontool.[ch] (struct GimpSelectionTool): added boolean member "allow_move" which defalts to TRUE. (gimp_selection_tool_oper_update): don't move masks, floating selections or anything when "allow_move" is FALSE. Changed behavior of click inside a selection to simply create a new selection, need to press alt+shift now to drag-float the selection. Please test this, it's apretty fundamental change! (gimp_selection_tool_cursor_update): use the tool's configured cursor instead of always GIMP_CURSOR_MOUSE, so this function can be called after gimp_rectangle_tool_cursor_update() to add the plus, minus etc. modifiers. * app/tools/gimpnewrectselecttool.c: implement GimpTool::cursor_update() and call gimp_rectangle_tool_cursor_update() from there. Chain up to get the plus, minus etc. modifiers added. Re-enble selection moving: (gimp_new_rect_select_tool_oper_update): set GimpSelectionTool's "allow_move" to FALSE unless the rectangle tool is in an idle state. (gimp_new_rect_select_tool_button_press): allow a selection moving to be started if the rectangle tool is idle. Fall back to starting a rect select if gimp_selection_tool_start_edit() returned FALSE.
This commit is contained in:
committed by
Michael Natterer
parent
3a7629733a
commit
d1a76d93f7
@ -40,6 +40,22 @@
|
||||
#include "cursors/xbm/cursor-zoom-mask.xbm"
|
||||
#include "cursors/xbm/cursor-color-picker.xbm"
|
||||
#include "cursors/xbm/cursor-color-picker-mask.xbm"
|
||||
#include "cursors/xbm/cursor-corner-top-left.xbm"
|
||||
#include "cursors/xbm/cursor-corner-top-left-mask.xbm"
|
||||
#include "cursors/xbm/cursor-corner-top-right.xbm"
|
||||
#include "cursors/xbm/cursor-corner-top-right-mask.xbm"
|
||||
#include "cursors/xbm/cursor-corner-bottom-left.xbm"
|
||||
#include "cursors/xbm/cursor-corner-bottom-left-mask.xbm"
|
||||
#include "cursors/xbm/cursor-corner-bottom-right.xbm"
|
||||
#include "cursors/xbm/cursor-corner-bottom-right-mask.xbm"
|
||||
#include "cursors/xbm/cursor-side-top.xbm"
|
||||
#include "cursors/xbm/cursor-side-top-mask.xbm"
|
||||
#include "cursors/xbm/cursor-side-left.xbm"
|
||||
#include "cursors/xbm/cursor-side-left-mask.xbm"
|
||||
#include "cursors/xbm/cursor-side-right.xbm"
|
||||
#include "cursors/xbm/cursor-side-right-mask.xbm"
|
||||
#include "cursors/xbm/cursor-side-bottom.xbm"
|
||||
#include "cursors/xbm/cursor-side-bottom-mask.xbm"
|
||||
|
||||
/* tool cursors */
|
||||
#include "cursors/xbm/tool-rect-select.xbm"
|
||||
@ -199,6 +215,54 @@ static GimpCursor gimp_cursors[] =
|
||||
cursor_color_picker_width, cursor_color_picker_height,
|
||||
cursor_color_picker_x_hot, cursor_color_picker_y_hot,
|
||||
cursor_color_picker, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_corner_top_left_bits, cursor_corner_top_left_mask_bits,
|
||||
cursor_corner_top_left_width, cursor_corner_top_left_height,
|
||||
cursor_corner_top_left_x_hot, cursor_corner_top_left_y_hot,
|
||||
cursor_corner_top_left, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_corner_top_right_bits, cursor_corner_top_right_mask_bits,
|
||||
cursor_corner_top_right_width, cursor_corner_top_right_height,
|
||||
cursor_corner_top_right_x_hot, cursor_corner_top_right_y_hot,
|
||||
cursor_corner_top_right, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_corner_bottom_left_bits, cursor_corner_bottom_left_mask_bits,
|
||||
cursor_corner_bottom_left_width, cursor_corner_bottom_left_height,
|
||||
cursor_corner_bottom_left_x_hot, cursor_corner_bottom_left_y_hot,
|
||||
cursor_corner_bottom_left, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_corner_bottom_right_bits, cursor_corner_bottom_right_mask_bits,
|
||||
cursor_corner_bottom_right_width, cursor_corner_bottom_right_height,
|
||||
cursor_corner_bottom_right_x_hot, cursor_corner_bottom_right_y_hot,
|
||||
cursor_corner_bottom_right, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_side_top_bits, cursor_side_top_mask_bits,
|
||||
cursor_side_top_width, cursor_side_top_height,
|
||||
cursor_side_top_x_hot, cursor_side_top_y_hot,
|
||||
cursor_side_top, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_side_left_bits, cursor_side_left_mask_bits,
|
||||
cursor_side_left_width, cursor_side_left_height,
|
||||
cursor_side_left_x_hot, cursor_side_left_y_hot,
|
||||
cursor_side_left, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_side_right_bits, cursor_side_right_mask_bits,
|
||||
cursor_side_right_width, cursor_side_right_height,
|
||||
cursor_side_right_x_hot, cursor_side_right_y_hot,
|
||||
cursor_side_right, NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
cursor_side_bottom_bits, cursor_side_bottom_mask_bits,
|
||||
cursor_side_bottom_width, cursor_side_bottom_height,
|
||||
cursor_side_bottom_x_hot, cursor_side_bottom_y_hot,
|
||||
cursor_side_bottom, NULL, NULL, NULL
|
||||
}
|
||||
};
|
||||
|
||||
@ -561,12 +625,13 @@ gimp_cursor_new (GdkDisplay *display,
|
||||
|
||||
g_return_val_if_fail (cursor_type >= GIMP_CURSOR_NONE, NULL);
|
||||
|
||||
/* allow the small tool cursor only with the standard mouse,
|
||||
* the small crosshair and the bad cursor
|
||||
/* disallow the small tool cursor with some cursors
|
||||
*/
|
||||
if (cursor_type != GIMP_CURSOR_MOUSE &&
|
||||
cursor_type != GIMP_CURSOR_CROSSHAIR_SMALL &&
|
||||
cursor_type != GIMP_CURSOR_BAD)
|
||||
if (cursor_type <= GIMP_CURSOR_NONE ||
|
||||
cursor_type == GIMP_CURSOR_CROSSHAIR ||
|
||||
cursor_type == GIMP_CURSOR_ZOOM ||
|
||||
cursor_type == GIMP_CURSOR_COLOR_PICKER ||
|
||||
cursor_type >= GIMP_CURSOR_LAST)
|
||||
{
|
||||
tool_cursor = GIMP_TOOL_CURSOR_NONE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user