1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
/* Dia -- an diagram creation/manipulation program
* Copyright (C) 1998 Alexander Larsson
*
* 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.
*/
#include <config.h>
#include "scroll_tool.h"
#include "handle_ops.h"
#include "object_ops.h"
#include "connectionpoint_ops.h"
#include "message.h"
#include "cursor.h"
static void scroll_button_press(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp);
static void scroll_button_release(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp);
static void scroll_motion(ScrollTool *tool, GdkEventMotion *event,
DDisplay *ddisp);
static void scroll_double_click(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp);
Tool *
create_scroll_tool(void)
{
ScrollTool *tool;
tool = g_new0(ScrollTool, 1);
tool->tool.type = SCROLL_TOOL;
tool->tool.button_press_func = (ButtonPressFunc) &scroll_button_press;
tool->tool.button_release_func = (ButtonReleaseFunc) &scroll_button_release;
tool->tool.motion_func = (MotionFunc) &scroll_motion;
tool->tool.double_click_func = (DoubleClickFunc) &scroll_double_click;
tool->scrolling = FALSE;
tool->use_hand = TRUE;
ddisplay_set_all_cursor_name (NULL, "grab");
return (Tool *)tool;
}
void
free_scroll_tool (Tool *tool)
{
g_clear_pointer (&tool, g_free);
ddisplay_set_all_cursor (default_cursor);
}
static void
scroll_double_click(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp)
{
/* Do nothing */
}
static void
scroll_button_press(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp)
{
Point clickedpoint;
tool->use_hand = (event->state & GDK_SHIFT_MASK) == 0;
if (tool->use_hand)
ddisplay_set_all_cursor_name (NULL, "grabbing");
else
ddisplay_set_all_cursor_name (NULL, "move");
ddisplay_untransform_coords(ddisp,
(int)event->x, (int)event->y,
&clickedpoint.x, &clickedpoint.y);
tool->scrolling = TRUE;
tool->last_pos = clickedpoint;
}
static void
scroll_motion(ScrollTool *tool, GdkEventMotion *event,
DDisplay *ddisp)
{
Point to;
Point delta;
/* set the cursor appropriately, and change use_hand if needed */
if (!tool->scrolling) {
/* try to minimise the number of cursor type changes */
if ((event->state & GDK_SHIFT_MASK) == 0) {
if (!tool->use_hand) {
tool->use_hand = TRUE;
ddisplay_set_all_cursor_name (NULL, "grab");
}
} else
if (tool->use_hand) {
tool->use_hand = FALSE;
ddisplay_set_all_cursor_name (NULL, "move");
}
return;
}
ddisplay_untransform_coords(ddisp, event->x, event->y, &to.x, &to.y);
if (tool->use_hand) {
delta = tool->last_pos;
point_sub(&delta, &to);
tool->last_pos = to;
point_add(&tool->last_pos, &delta);
/* we use this so you can scroll past the edge of the image */
point_add(&delta, &ddisp->origo);
ddisplay_set_origo(ddisp, delta.x, delta.y);
ddisplay_update_scrollbars(ddisp);
ddisplay_add_update_all(ddisp);
} else {
delta = to;
point_sub(&delta, &tool->last_pos);
point_scale(&delta, 0.5);
ddisplay_scroll(ddisp, &delta);
tool->last_pos = to;
}
ddisplay_flush(ddisp);
}
static void
scroll_button_release(ScrollTool *tool, GdkEventButton *event,
DDisplay *ddisp)
{
tool->use_hand = (event->state & GDK_SHIFT_MASK) == 0;
if (tool->use_hand) {
ddisplay_set_all_cursor_name (NULL, "grab");
} else {
ddisplay_set_all_cursor_name (NULL, "move");
}
tool->scrolling = FALSE;
}
|