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

« back to all changes in this revision

Viewing changes to src/gradient-context.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Kees Cook, Ted Gould
  • Date: 2008-02-10 14:20:16 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080210142016-vcnb2zqyhszu0xvb
Tags: 0.46~pre1-0ubuntu1
[ Kees Cook ]
* debian/control:
  - add libgtkspell-dev build-dep to gain GtkSpell features (LP: #183547).
  - update Standards version (no changes needed).
  - add Vcs and Homepage fields.
  - switch to new python-lxml dep.
* debian/{control,rules}: switch from dpatch to quilt for more sanity.
* debian/patches/20_fix_glib_and_gxx43_ftbfs.patch:
  - merged against upstream fixes.
  - added additional fixes for newly written code.
* debian/rules: enable parallel building.

[ Ted Gould ]
* Updating POTFILES.in to make it so things build correctly.
* debian/control:
  - add ImageMagick++ and libboost-dev to build-deps

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 *
7
7
 * Authors:
8
8
 *   bulia byak <buliabyak@users.sf.net>
 
9
 *   Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
9
10
 *
 
11
 * Copyright (C) 2007 Johan Engelen
10
12
 * Copyright (C) 2005 Authors
11
13
 *
12
14
 * Released under GNU GPL
29
31
struct SPGradientContext : public SPEventContext {
30
32
 
31
33
    NR::Point origin;
 
34
        
 
35
    bool cursor_addnode;
 
36
    
 
37
    bool node_added;
32
38
 
 
39
    NR::Point mousepoint_doc; // stores mousepoint when over_line in doc coords
 
40
        
33
41
    Inkscape::MessageContext *_message_context;
 
42
 
 
43
    sigc::connection *selcon;
 
44
    sigc::connection *subselcon;
34
45
};
35
46
 
36
47
struct SPGradientContextClass {