Searched refs:list (Results 1 - 25 of 230) sorted by relevance

12345678910

/inkscape/src/widgets/
H A Dsp-xmlview-attr-list.h24 GtkTreeView list; member in struct:SPXMLViewAttrList
34 void (* row_changed) (SPXMLViewAttrList *list, gint row);
40 #define SP_XMLVIEW_ATTR_LIST_GET_REPR(list) (SP_XMLVIEW_ATTR_LIST (list)->repr)
42 void sp_xmlview_attr_list_set_repr (SPXMLViewAttrList * list, Inkscape::XML::Node * repr);
43 void sp_xmlview_attr_list_select_row_by_key(SPXMLViewAttrList * list, const gchar *name);
45 /* Attribute list store columns */
H A Dsp-xmlview-attr-list.cpp21 #include "sp-xmlview-attr-list.h"
70 sp_xmlview_attr_list_set_repr (SPXMLViewAttrList * list, Inkscape::XML::Node * repr) argument
72 if ( repr == list->repr ) return;
73 if (list->repr) {
74 gtk_list_store_clear(list->store);
75 sp_repr_remove_listener_by_data (list->repr, list);
76 Inkscape::GC::release(list->repr);
78 list->repr = repr;
81 sp_repr_add_listener (repr, &repr_events, list);
109 sp_xmlview_attr_list_init(SPXMLViewAttrList * list) argument
121 SPXMLViewAttrList * list; local
135 sp_xmlview_attr_list_select_row_by_key(SPXMLViewAttrList * list, const gchar *name) argument
169 SPXMLViewAttrList * list; local
[all...]
/inkscape/src/libnrtype/
H A Dnr-type-primitives.h20 typedef void (* NRNameListDestructor) (NRNameList *list);
21 typedef void (* NRStyleListDestructor) (NRStyleList *list);
41 void nr_name_list_release (NRNameList *list);
42 void nr_style_list_release (NRStyleList *list);
H A Dnr-type-primitives.cpp20 * An entry in a list of key->value pairs
39 * Calls the destructor for each item in list
42 nr_name_list_release (NRNameList *list) argument
44 if (list->destructor) {
45 list->destructor (list);
50 nr_style_list_release (NRStyleList *list) argument
52 if (list->destructor) {
53 list->destructor (list);
[all...]
/inkscape/src/
H A Dgraphlayout.h17 #include <list>
25 void filterConnectors(std::vector<SPItem*> const &items, std::list<SPItem *> &filtered);
H A Dsnapped-curve.h16 #include <list>
41 bool getClosestCurve(std::list<Inkscape::SnappedCurve> const &list, Inkscape::SnappedCurve &result, bool exclude_paths = false);
42 bool getClosestIntersectionCS(std::list<Inkscape::SnappedCurve> const &list, Geom::Point const &p, Inkscape::SnappedPoint &result, Geom::Affine dt2doc);
43 bool getClosestIntersectionCL(std::list<Inkscape::SnappedCurve> const &list1, std::list<Inkscape::SnappedLine> const &list2, Geom::Point const &p, Inkscape::SnappedPoint &result, Geom::Affine dt2doc);
H A Dknot-ptr.cpp3 #include <list>
6 static std::list<void*> deleted_knots;
15 std::list<void*>::iterator it = std::find(deleted_knots.begin(), deleted_knots.end(), knot);
H A Dsnapped-line.h15 #include <list>
59 bool getClosestSLS(std::list<Inkscape::SnappedLineSegment> const &list, Inkscape::SnappedLineSegment &result);
60 bool getClosestIntersectionSLS(std::list<Inkscape::SnappedLineSegment> const &list, Inkscape::SnappedPoint &result);
61 bool getClosestSL(std::list<Inkscape::SnappedLine> const &list, Inkscape::SnappedLine &result);
62 bool getClosestIntersectionSL(std::list<Inkscape::SnappedLine> const &list, Inkscape::SnappedPoint &result);
63 bool getClosestIntersectionSL(std::list<Inkscap
[all...]
H A Dsnapped-line.cpp175 bool getClosestSLS(std::list<Inkscape::SnappedLineSegment> const &list, Inkscape::SnappedLineSegment &result) argument
179 for (std::list<Inkscape::SnappedLineSegment>::const_iterator i = list.begin(); i != list.end(); ++i) {
180 if ((i == list.begin()) || (*i).getSnapDistance() < result.getSnapDistance()) {
190 bool getClosestIntersectionSLS(std::list<Inkscape::SnappedLineSegment> const &list, Inkscape::SnappedPoint &result) argument
194 for (std::list<Inkscape::SnappedLineSegment>::const_iterator i = list
[all...]
H A Dcomposite-undo-stack-observer.h16 #include <list>
109 /// A list of UndoStackObserverRecords, used to aggregate multiple UndoStackObservers.
110 typedef std::list< UndoStackObserverRecord, GC::Alloc< UndoStackObserverRecord, GC::MANUAL > > UndoObserverRecordList;
158 // Remove an observer from a given list
159 bool _remove_one(UndoObserverRecordList& list, UndoStackObserver& rec);
161 // Mark an observer for removal from a given list
162 bool _mark_one(UndoObserverRecordList& list, UndoStackObserver& rec);
167 // Observers in the active list
H A Dsp-hatch-path.h18 #include <list>
70 typedef std::list<SPHatchPath::View>::iterator ViewIterator;
71 typedef std::list<SPHatchPath::View>::const_iterator ConstViewIterator;
72 std::list<View> _display;
H A Dmain-cmdlineact.h26 static std::list <CmdLineAction *> _list;
H A Dcomposite-undo-stack-observer.cpp105 CompositeUndoStackObserver::_remove_one(UndoObserverRecordList& list, UndoStackObserver& o) argument
109 UndoObserverRecordList::iterator i = std::find_if(list.begin(), list.end(), std::bind1st(std::equal_to< UndoStackObserverRecord >(), eq_comp));
111 if (i != list.end()) {
112 list.erase(i);
120 CompositeUndoStackObserver::_mark_one(UndoObserverRecordList& list, UndoStackObserver& o) argument
124 UndoObserverRecordList::iterator i = std::find_if(list.begin(), list.end(), std::bind1st(std::equal_to< UndoStackObserverRecord >(), eq_comp));
126 if (i != list.end()) {
/inkscape/cxxtest/cxxtest/
H A DStdHeaders.h15 #include <list>
/inkscape/src/2geom/
H A Dconic_section_clipper_impl.h40 #include <list>
135 std::list<Point>::iterator split (std::list<Point> & points,
136 std::list<Point>::iterator sp,
137 std::list<Point>::iterator fp) const;
138 void rsplit (std::list<Point> & points,
139 std::list<Point>::iterator sp,
140 std::list<Point>::iterator fp,
143 void rsplit (std::list<Point> & points,
144 std::list<Poin
[all...]
/inkscape/src/extension/param/
H A Dnotebook.cpp60 void paramString (std::list <std::string> &list);
94 for (GSList * list = parameters; list != NULL; list = g_slist_next(list)) {
95 Parameter * param = reinterpret_cast<Parameter *>(list->data);
102 void ParamNotebookPage::paramString(std::list <std::string> &list) argument
106 param->string(list);
[all...]
H A Denum.cpp125 for (GSList * list = choices; list != NULL; list = g_slist_next(list)) {
126 delete (reinterpret_cast<enumentry *>(list->data));
156 for (GSList * list = choices; list != NULL; list = g_slist_next(list)) {
157 enumentry * entr = reinterpret_cast<enumentry *>(list
[all...]
H A Dradiobutton.cpp142 for (GSList * list = choices; list != NULL; list = g_slist_next(list)) {
143 delete (reinterpret_cast<optionentry *>(list->data));
173 for (GSList * list = choices; list != NULL; list = g_slist_next(list)) {
174 optionentry * entr = reinterpret_cast<optionentry *>(list
[all...]
/inkscape/src/extension/
H A Ddb.h19 #include <list>
51 /** Maintain an ordered list of modules for generating the extension
53 std::list <Extension *> modulelist;
70 typedef std::list<Output *> OutputList;
71 typedef std::list<Input *> InputList;
72 typedef std::list<Effect *> EffectList;
/inkscape/src/ui/tools/
H A Dcalligraphic-tool.h21 #include <list>
65 std::list<double> hatch_nearest_past;
66 std::list<double> hatch_pointer_past;
67 std::list<Geom::Point> inertia_vectors;
69 std::list<Geom::Point> hatch_vectors;
/inkscape/src/libvpsc/
H A Dblocks.h18 #include <list>
59 * Returns a list of variables with total ordering determined by the constraint
62 std::list<Variable*> *totalOrder();
73 void dfsVisit(Variable *v, std::list<Variable*> *order);
/inkscape/src/display/
H A Dcanvas-temporary-item-list.h13 #include <list>
37 std::list<TemporaryItem *> itemlist; /** list of temp items */
/inkscape/src/libavoid/
H A Dviscluster.h29 #include <list>
38 typedef std::list<ClusterRef *> ClusterRefList;
/inkscape/src/livarot/
H A Dsweep-tree.h56 int Remove(SweepTreeList &list, SweepEventQueue &queue, bool rebalance = true);
57 int Insert(SweepTreeList &list, SweepEventQueue &queue, Shape *iDst,
59 int InsertAt(SweepTreeList &list, SweepEventQueue &queue, Shape *iDst,
63 void SwapWithRight(SweepTreeList &list, SweepEventQueue &queue);
/inkscape/src/ui/widget/
H A Dstyle-subject.cpp58 std::vector<SPObject*> StyleSubject::Selection::list(){ function in class:Inkscape::UI::Widget::StyleSubject::Selection
61 return selection->list();
135 std::vector<SPObject*> StyleSubject::CurrentLayer::list(){ function in class:Inkscape::UI::Widget::StyleSubject::CurrentLayer
136 std::vector<SPObject*> list; local
137 list.push_back(_element);
138 return list;
151 std::vector<SPItem*> list; local
154 list.push_back((SPItem*)i);
155 return sp_desktop_query_style_from_list(list, query, property);

Completed in 375 milliseconds

12345678910