/inkscape/src/widgets/ |
H A D | sp-xmlview-attr-list.h | 24 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 D | sp-xmlview-attr-list.cpp | 21 #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 D | nr-type-primitives.h | 20 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 D | nr-type-primitives.cpp | 20 * 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 D | graphlayout.h | 17 #include <list> 25 void filterConnectors(std::vector<SPItem*> const &items, std::list<SPItem *> &filtered);
|
H A D | snapped-curve.h | 16 #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 D | knot-ptr.cpp | 3 #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 D | snapped-line.h | 15 #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 D | snapped-line.cpp | 175 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 D | composite-undo-stack-observer.h | 16 #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 D | sp-hatch-path.h | 18 #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 D | main-cmdlineact.h | 26 static std::list <CmdLineAction *> _list;
|
H A D | composite-undo-stack-observer.cpp | 105 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 D | StdHeaders.h | 15 #include <list>
|
/inkscape/src/2geom/ |
H A D | conic_section_clipper_impl.h | 40 #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 D | notebook.cpp | 60 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 D | enum.cpp | 125 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 D | radiobutton.cpp | 142 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 D | db.h | 19 #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 D | calligraphic-tool.h | 21 #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 D | blocks.h | 18 #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 D | canvas-temporary-item-list.h | 13 #include <list> 37 std::list<TemporaryItem *> itemlist; /** list of temp items */
|
/inkscape/src/libavoid/ |
H A D | viscluster.h | 29 #include <list> 38 typedef std::list<ClusterRef *> ClusterRefList;
|
/inkscape/src/livarot/ |
H A D | sweep-tree.h | 56 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 D | style-subject.cpp | 58 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);
|