Searched defs:Event (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/
H A Devent.h5 * Inkscape::Event -- Container for an XML::Event along with some additional information
24 class Event;
30 struct Event { struct in namespace:Inkscape
32 Event(XML::Event *_event, unsigned int _type=SP_VERB_NONE, Glib::ustring _description="") function in struct:Inkscape::Event
35 virtual ~Event() { sp_repr_free_log (event); }
37 XML::Event *event;
/inkscape/src/debug/
H A Devent.h2 * Inkscape::Debug::Event - event for debug tracing
22 class Event { class in namespace:Inkscape::Debug
24 virtual ~Event() {}
/inkscape/src/2geom/
H A Dsweep-bounds.cpp7 struct Event { struct in namespace:Geom
11 Event(double pos, unsigned i, bool c) : x(pos), ix(i), closing(c) {} function in struct:Geom::Event
13 bool operator<(Event const &other) const {
18 bool operator==(Event const &other) const {
36 std::vector<Event> events; events.reserve(rs.size()*2);
40 events.push_back(Event(rs[i][d].min(), i, false));
41 events.push_back(Event(rs[i][d].max(), i, true));
78 std::vector<Event> events[2];
87 events[n].push_back(Event(r[d].min(), i, false));
88 events[n].push_back(Event(
[all...]
H A Dsweeper.h118 _entry_events.push_back(Event(b.max(), i));
119 _exit_events.push_back(Event(b.min(), i));
125 Event next_entry = _get_next(_entry_events);
126 Event next_exit = _get_next(_exit_events);
144 struct Event struct in class:Geom::Sweeper
145 : boost::totally_ordered<Event>
150 Event(Coord c, Iter const &i) function in struct:Geom::Sweeper::Event
153 Event() function in struct:Geom::Sweeper::Event
156 bool operator<(Event const &other) const { return coord < other.coord; }
157 bool operator==(Event cons
[all...]
/inkscape/src/xml/
H A Devent.h2 * @brief Event object representing a change of the XML document
53 * Event logs are built by appending to the front, so by walking the list one iterates over
56 class Event class in namespace:Inkscape::XML
60 virtual ~Event() {}
68 Event *next;
83 static Event const *next(Event const *action) {
88 typedef Inkscape::Util::ForwardPointerIterator<Event, IteratorStrategy> Iterator;
89 typedef Inkscape::Util::ForwardPointerIterator<Event const, IteratorStrategy> ConstIterator;
95 Event *optimizeOn
115 Event(Node *r, Event *n) function in class:Inkscape::XML::Event
[all...]
/inkscape/src/libcola/
H A Dstraightener.cpp103 struct Event { struct in namespace:straightener
108 Event(EventType t, Node *v, double p) : type(t),v(v),e(NULL),pos(p) {}; function in struct:straightener::Event
109 Event(EventType t, Edge *e, double p) : type(t),v(NULL),e(e),pos(p) {}; function in struct:straightener::Event
111 Event **events;
113 Event *ea=*(Event**)a;
114 Event *eb=*(Event**)b;
201 events=new Event*[nevents];
208 events[ctr++]=new Event(Ope
[all...]
/inkscape/src/libvpsc/
H A Dgenerate-constraints.cpp140 struct Event { struct in namespace:vpsc
144 Event(EventType t, Node *v, double p) : type(t),v(v),pos(p) {}; function in struct:vpsc::Event
146 Event **events;
148 Event *ea=*(Event**)a;
149 Event *eb=*(Event**)b;
174 events=new Event*[2*n];
179 events[ctr++]=new Event(Open,v,rs[i]->getMinY());
180 events[ctr++]=new Event(Clos
[all...]
/inkscape/src/libavoid/
H A Dorthogonal.cpp469 struct Event struct in namespace:Avoid
471 Event(EventType t, Node *v, double p) function in struct:Avoid::Event
481 Event **events;
487 Event *ea = *(Event**) a;
488 Event *eb = *(Event**) b;
1158 SegmentListWrapper& segments, Event *e, unsigned int pass)
1324 SegmentListWrapper& segments, Event *e, unsigned int pass)
1448 events = new Event*[totalEvent
[all...]

Completed in 26 milliseconds