~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/gradient-context.h

  • Committer: cilix42
  • Date: 2008-09-18 17:48:42 UTC
  • Revision ID: cilix42@users.sourceforge.net-20080918174842-1ad33a7d7gqhv2hq
Next roud of NR ==> Geom conversion

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
#include <sigc++/sigc++.h>
18
18
#include "event-context.h"
19
 
#include "libnr/nr-point.h"
20
19
 
21
20
#define SP_TYPE_GRADIENT_CONTEXT            (sp_gradient_context_get_type())
22
21
#define SP_GRADIENT_CONTEXT(obj)            (GTK_CHECK_CAST((obj), SP_TYPE_GRADIENT_CONTEXT, SPGradientContext))
29
28
 
30
29
struct SPGradientContext : public SPEventContext {
31
30
 
32
 
    NR::Point origin;
 
31
    Geom::Point origin;
33
32
        
34
33
    bool cursor_addnode;
35
34
    
36
35
    bool node_added;
37
36
 
38
 
    NR::Point mousepoint_doc; // stores mousepoint when over_line in doc coords
 
37
    Geom::Point mousepoint_doc; // stores mousepoint when over_line in doc coords
39
38
        
40
39
    Inkscape::MessageContext *_message_context;
41
40