/inkscape/share/extensions/ |
H A D | jessyInk_core_mouseHandler_zoomControl.js | 35 * @param obj Object to be initialised. 37 function jessyInk_core_mouseHandler_zoomControl(obj) 40 obj.dragging_last; 42 obj.dragging_active = false; 44 obj.dragging_working = false; 46 obj.click = false; 52 obj.getMouseHandler = function () 57 handlerDictio[SLIDE_MODE][MOUSE_DOWN] = obj.mousedown; 58 handlerDictio[SLIDE_MODE][MOUSE_MOVE] = obj.mousemove; 59 handlerDictio[SLIDE_MODE][MOUSE_UP] = obj [all...] |
H A D | jessyInk_core_mouseHandler_noclick.js | 35 * @param obj Object to be initialised. 37 function jessyInk_core_mouseHandler_noclick(obj) 43 obj.getMouseHandler = function ()
|
/inkscape/src/ |
H A D | sp-paint-server-reference.h | 26 SPPaintServerReference (SPObject *obj) : URIReference(obj) {} argument 31 virtual bool _acceptObject(SPObject *obj) const;
|
H A D | sp-gradient-reference.h | 11 SPGradientReference(SPObject *obj) : URIReference(obj) {} argument 18 virtual bool _acceptObject(SPObject *obj) const;
|
H A D | document-subset.h | 29 bool includes(SPObject *obj) const; 31 SPObject *parentOf(SPObject *obj) const; 32 unsigned childCount(SPObject *obj) const; 33 unsigned indexOf(SPObject *obj) const; 34 SPObject *nthChildOf(SPObject *obj, unsigned n) const; 43 void _addOne(SPObject *obj); 44 void _removeOne(SPObject *obj) { _remove(obj, false); } argument 45 void _removeSubtree(SPObject *obj) { _remove(obj, tru argument [all...] |
H A D | sp-filter-reference.h | 12 SPFilterReference(SPObject *obj) : URIReference(obj) {} argument 20 virtual bool _acceptObject(SPObject *obj) const;
|
H A D | gc-anchored.h | 64 Anchor(Anchored const *obj) : refcount(0) { argument 65 base = Core::base(const_cast<Anchored *>(obj));
|
H A D | sp-clippath.h | 18 #define SP_CLIPPATH(obj) (dynamic_cast<SPClipPath*>((SPObject*)obj)) 19 #define SP_IS_CLIPPATH(obj) (dynamic_cast<const SPClipPath*>((SPObject*)obj) != NULL) 73 SPClipPathReference(SPObject *obj) : URIReference(obj) {} argument 82 * \return false if obj is not a clippath or if obj is a parent of this 85 virtual bool _acceptObject(SPObject *obj) const { 86 if (!SP_IS_CLIPPATH(obj)) { [all...] |
H A D | sp-marker.h | 21 #define SP_MARKER(obj) (dynamic_cast<SPMarker*>((SPObject*)obj)) 22 #define SP_IS_MARKER(obj) (dynamic_cast<const SPMarker*>((SPObject*)obj) != NULL) 89 SPMarkerReference(SPObject *obj) : URIReference(obj) {} argument 94 virtual bool _acceptObject(SPObject *obj) const { 95 return SP_IS_MARKER(obj) && URIReference::_acceptObject(obj);
|
H A D | sp-mask.h | 21 #define SP_MASK(obj) (dynamic_cast<SPMask*>((SPObject*)obj)) 22 #define SP_IS_MASK(obj) (dynamic_cast<const SPMask*>((SPObject*)obj) != NULL) 68 SPMaskReference(SPObject *obj) : URIReference(obj) {} argument 76 * \return false if obj is not a mask or if obj is a parent of this 79 virtual bool _acceptObject(SPObject *obj) const { 80 if (!SP_IS_MASK(obj)) { [all...] |
H A D | main-cmdlineact.cpp | 58 SPObject * obj = doc->getObjectById(_arg); local 59 if (obj == NULL) { 65 selection->add(obj, false);
|
H A D | profile-manager.cpp | 77 SPObject *obj = nthChildOf(NULL, index); local 78 ColorProfile* prof = reinterpret_cast<ColorProfile*>(obj);
|
H A D | sp-pattern.h | 36 #define SP_PATTERN(obj) (dynamic_cast<SPPattern *>((SPObject *)obj)) 37 #define SP_IS_PATTERN(obj) (dynamic_cast<const SPPattern *>((SPObject *)obj) != NULL) 121 SPPatternReference(SPObject *obj) argument 122 : URIReference(obj) 132 virtual bool _acceptObject(SPObject *obj) const { 133 return SP_IS_PATTERN (obj)&& URIReference::_acceptObject(obj);
|
H A D | sp-hatch.h | 161 SPHatchReference (SPObject *obj) argument 162 : URIReference(obj) 170 virtual bool _acceptObject(SPObject *obj) const { 171 return dynamic_cast<SPHatch *>(obj) != NULL && URIReference::_acceptObject(obj);
|
H A D | sp-switch.cpp | 116 void SPSwitch::_releaseItem(SPObject *obj, SPSwitch *selection) argument 118 selection->_releaseLastItem(obj); 121 void SPSwitch::_releaseLastItem(SPObject *obj) argument 123 if (NULL == this->_cached_item || this->_cached_item != obj)
|
/inkscape/src/live_effects/ |
H A D | lpe-fill-between-many.cpp | 41 SPObject *obj; local 42 if ((*iter)->ref.isAttached() && (obj = (*iter)->ref.getObject()) && SP_IS_ITEM(obj) && !(*iter)->_pathvector.empty()) { 51 linked_path = linked_path * SP_ITEM(obj)->getRelativeTransform(firstObj); 55 firstObj = SP_ITEM(obj);
|
/inkscape/src/widgets/ |
H A D | swatch-selector.cpp | 96 GObject* obj = G_OBJECT(_gsel); local 97 g_signal_connect( obj, "grabbed", handler, data ); 102 GObject* obj = G_OBJECT(_gsel); local 103 g_signal_connect( obj, "dragged", handler, data ); 108 GObject* obj = G_OBJECT(_gsel); local 109 g_signal_connect( obj, "released", handler, data ); 114 GObject* obj = G_OBJECT(_gsel); local 115 g_signal_connect( obj, "changed", handler, data );
|
/inkscape/src/ui/dialog/ |
H A D | object-attributes.cpp | 130 SPObject *obj = item; //to get the selected item local 131 // GObjectClass *klass = G_OBJECT_GET_CLASS(obj); //to deduce the object's type 143 Inkscape::XML::Node *ir = obj->getRepr(); 172 attrTable->set_object(obj, labels, attrs, (GtkWidget*)gobj()); 177 attrTable->change_object(obj);
|
H A D | object-properties.cpp | 394 SPObject *obj = static_cast<SPObject*>(item); local 397 _entry_id.set_text(obj->getId()); 402 _entry_label.set_text(obj->defaultLabel()); 406 gchar *title = obj->title(); 420 char const *str = obj->getStyleProperty( "image-rendering", "auto" ); 435 gchar *desc = obj->desc(); 445 _attr_table->set_object(obj, _int_labels, _int_attrs, (GtkWidget*) _exp_interactivity.gobj()); 447 _attr_table->change_object(obj); 490 SPObject *obj = static_cast<SPObject*>(item); local 491 if (label.compare(obj [all...] |
/inkscape/src/ui/ |
H A D | shape-editor.cpp | 149 SPObject *obj = desktop->getDocument()->getObjectByRepr(knotholder_listener_attached_for); /// note that it is not certain that this is an SPItem; it could be a LivePathEffectObject. local 150 set_item(SP_ITEM(obj), keep_knotholder);
|
/inkscape/src/ui/widget/ |
H A D | entity-entry.cpp | 47 EntityEntry* obj = 0; local 51 obj = new EntityLineEntry (ent, wr); 54 obj = new EntityMultiLineEntry (ent, wr); 60 g_assert (obj); 61 obj->_label.show(); 62 return obj;
|
/inkscape/src/util/ |
H A D | compose.hpp | 53 Composition &arg(const T &obj); 116 inline Composition &Composition::arg(const T &obj) argument 118 os << obj; local
|
H A D | share.h | 88 static ptr_shared<T> share_unsafe(T const *obj) { argument 89 return ptr_shared<T>(obj); 93 explicit ptr_shared(T const *obj) : _obj(obj) {} argument 100 inline ptr_shared<T> share(T const *obj) { argument 101 return share_unsafe(obj ? new T(*obj) : NULL); 108 inline ptr_shared<T> reshare(T const *obj) { argument 109 return ptr_shared<T>::share_unsafe(obj); 113 inline ptr_shared<T> share_unsafe(T const *obj) { argument [all...] |
/inkscape/src/extension/ |
H A D | execution-env.cpp | 198 SPObject * obj = doc->getObjectById(i->c_str()); local 199 if (obj != NULL) { 200 selection->add(obj);
|
/inkscape/src/filters/ |
H A D | image.cpp | 72 static void sp_feImage_elem_modified(SPObject* /*href*/, guint /*flags*/, SPObject* obj) argument 74 obj->parent->requestModified(SP_OBJECT_MODIFIED_FLAG); 77 static void sp_feImage_href_modified(SPObject* /*old_elem*/, SPObject* new_elem, SPObject* obj) argument 79 SPFeImage *feImage = SP_FEIMAGE(obj); 83 feImage->_image_modified_connection = ((SPObject*) feImage->SVGElem)->connectModified(sigc::bind(sigc::ptr_fun(&sp_feImage_elem_modified), obj)); 88 obj->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
|