~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/conn-avoid-ref.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef SEEN_CONN_AVOID_REF
2
2
#define SEEN_CONN_AVOID_REF
3
3
 
4
 
/*
 
4
/** \file
5
5
 * A class for handling shape interaction with libavoid.
6
 
 *
 
6
 */
 
7
/*
7
8
 * Authors:
8
9
 *   Michael Wybrow <mjwybrow@users.sourceforge.net>
9
10
 *
12
13
 * Released under GNU GPL, read the file 'COPYING' for more information
13
14
 */
14
15
 
15
 
 
 
16
#include <glib/gslist.h>
16
17
#include <sigc++/connection.h>
17
18
 
 
19
struct SPDesktop;
18
20
struct SPItem;
19
 
namespace Avoid {
20
 
    class ShapeRef;
21
 
}
 
21
namespace Avoid { class ShapeRef; }
22
22
 
23
23
class SPAvoidRef {
24
24
public:
52
52
 
53
53
extern GSList *get_avoided_items(GSList *list, SPObject *from,
54
54
        SPDesktop *desktop, bool initialised = true);
55
 
extern void avoid_item_move(NR::Matrix const *mp, SPItem *moved_item);
 
55
extern void avoid_item_move(Geom::Matrix const *mp, SPItem *moved_item);
56
56
extern void init_avoided_shape_geometry(SPDesktop *desktop);
57
57
 
58
58
static const double defaultConnSpacing = 3.0;