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
|
/* 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.
*/
#ifndef OBJECT_OPS_H
#define OBJECT_OPS_H
#include "diatypes.h"
#include "display.h"
#include "diagram.h"
/* Note that TOP/LEFT and BOTTOM/RIGHT are the same */
#define DIA_ALIGN_TOP 0
#define DIA_ALIGN_LEFT 0
#define DIA_ALIGN_CENTER 1
#define DIA_ALIGN_BOTTOM 2
#define DIA_ALIGN_RIGHT 2
#define DIA_ALIGN_POSITION 3
#define DIA_ALIGN_EQUAL 4
#define DIA_ALIGN_ADJACENT 5
void object_add_updates(DiaObject *obj, Diagram *dia);
void object_add_updates_list(GList *list, Diagram *dia);
ConnectionPoint *object_find_connectpoint_display(DDisplay *ddisp,
Point *pos,
DiaObject *notthis,
gboolean snap_to_objects);
void object_connect_display(DDisplay *ddisp, DiaObject *obj,
Handle *handle, gboolean snap_to_objects);
/* Adds Undo info for connected objects. */
Point object_list_corner(GList *list);
void object_list_align_h(GList *objects, Diagram *dia, int align);
void object_list_align_v(GList *objects, Diagram *dia, int align);
void object_list_align_connected (GList *objects, Diagram *dia, int align);
typedef enum {
DIR_UP = 1,
DIR_DOWN,
DIR_LEFT,
DIR_RIGHT
} Direction;
void object_list_nudge(GList *objects, Diagram *dia, Direction dir, real step);
#endif /* OBJECT_OPS_H */
|