switching to XML DocBook
[dia.git] / app / modify_tool.h
blob02a5011d8c1131e1ddc47be2d3e264ba885973a0
1 /* Dia -- an diagram creation/manipulation program
2 * Copyright (C) 1998 Alexander Larsson
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #ifndef MODIFY_TOOL_H
19 #define MODIFY_TOOL_H
21 #include "geometry.h"
22 #include "tool.h"
23 #include "time.h"
25 typedef struct _ModifyTool ModifyTool;
27 enum ModifyToolState {
28 STATE_NONE,
29 STATE_MOVE_OBJECT,
30 STATE_MOVE_HANDLE,
31 STATE_BOX_SELECT
34 struct _ModifyTool {
35 Tool tool;
37 enum ModifyToolState state;
38 int break_connections;
39 Point move_compensate;
40 Object *object;
41 Handle *handle;
42 Point last_to;
43 Point start_at;
44 time_t start_time;
46 GdkGC *gc;
48 int x1, y1, x2, y2;
49 Point start_box;
50 Point end_box;
52 gboolean auto_scrolled; /* TRUE if the diagram auto scrolled last time
53 modify_motion was called */
54 /* Undo info: */
55 Point *orig_pos;
58 Tool *create_modify_tool(void);
59 void free_modify_tool(Tool *tool);
61 #endif /* MODIFY_TOOL_H */