blob: 526ef4ebbe973d88ded266224d780314d5a54f3b (
plain)
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_CONN_AVOID_REF
#define SEEN_CONN_AVOID_REF
/** \file
* A class for handling shape interaction with libavoid.
*/
/*
* Authors:
* Michael Wybrow <mjwybrow@users.sourceforge.net>
*
* Copyright (C) 2005 Michael Wybrow
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <2geom/point.h>
#include <cstddef>
#include <sigc++/connection.h>
class SPDesktop;
class SPObject;
class SPItem;
namespace Avoid { class ShapeRef; }
class SPAvoidRef {
public:
SPAvoidRef(SPItem *spitem);
virtual ~SPAvoidRef();
// libavoid's internal representation of the item.
Avoid::ShapeRef *shapeRef;
void setAvoid(char const *value);
void handleSettingChange();
Geom::Point getConnectionPointPos();
// Returns a list of SPItems of all connectors/shapes attached to
// this object. Pass one of the following for 'type':
// Avoid::runningTo
// Avoid::runningFrom
// Avoid::runningToAndFrom
std::vector<SPItem *> getAttachedShapes(const unsigned int type);
std::vector<SPItem *> getAttachedConnectors(const unsigned int type);
private:
SPItem *item;
// true if avoiding, false if not.
bool setting;
bool new_setting;
// A sigc connection for transformed signal.
sigc::connection _transformed_connection;
};
extern std::vector<SPItem *> get_avoided_items(SPObject *from,
SPDesktop *desktop, bool initialised = true);
extern void avoid_item_move(Geom::Affine const *mp, SPItem *moved_item);
extern void init_avoided_shape_geometry(SPDesktop *desktop);
static const double defaultConnSpacing = 3.0;
static const double defaultConnCurvature = 3.0;
#endif /* !SEEN_CONN_AVOID_REF */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|