Searched refs:_impl (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/
H A Duri.h52 bool isOpaque() const { return _impl->isOpaque(); }
62 bool isRelative() const { return _impl->isRelative(); }
71 bool isNetPath() const { return _impl->isNetPath(); }
80 bool isRelativePath() const { return _impl->isRelativePath(); }
89 bool isAbsolutePath() const { return _impl->isAbsolutePath(); }
91 const char *getScheme() const { return _impl->getScheme(); }
93 const char *getPath() const { return _impl->getPath(); }
95 const char *getQuery() const { return _impl->getQuery(); }
97 const char *getFragment() const { return _impl->getFragment(); }
99 const char *getOpaque() const { return _impl
149 Impl *_impl; member in class:Inkscape::URI
[all...]
H A Duri.cpp21 _impl = Impl::create(xmlParseURI(in));
25 uri._impl->reference();
26 _impl = uri._impl;
38 _impl = Impl::create(uri);
42 _impl->unreference();
46 // No check for self-assignment needed, as _impl refcounting increments first.
47 uri._impl->reference();
48 _impl->unreference();
49 _impl
[all...]
/inkscape/src/ui/widget/
H A Dcolor-icc-selector.cpp313 : _impl(NULL)
315 _impl = new ColorICCSelectorImpl(this, color);
323 if (_impl) {
324 delete _impl;
325 _impl = 0;
364 _impl->_updating = FALSE;
365 _impl->_dragging = FALSE;
369 _impl->_compUI.clear();
375 _impl->_fixupBtn = gtk_button_new_with_label(_("Fix"));
376 g_signal_connect(G_OBJECT(_impl
484 G_CALLBACK(ColorICCSelectorImpl::_adjustmentChanged), _impl); local
533 _impl); local
[all...]
H A Dcolor-icc-selector.h55 ColorICCSelectorImpl *_impl; member in class:Inkscape::UI::Widget::ColorICCSelector
/inkscape/src/ui/
H A Dcontrol-manager.h80 std::auto_ptr<ControlManagerImpl> _impl; member in class:Inkscape::ControlManager
82 std::unique_ptr<ControlManagerImpl> _impl; member in class:Inkscape::ControlManager
H A Dcontrol-manager.cpp366 _impl(new ControlManagerImpl(*this))
384 return _impl->createControl(parent, type);
423 _impl->track(item);
428 return _impl->connectCtrlSizeChanged(slot);
433 return _impl->updateItem(item);
438 return _impl->setControlType(item, type);
443 return _impl->setControlResize(item, ctrlResize);
479 _impl->setSelected(item, selected);
/inkscape/src/widgets/
H A Dsp-widget.cpp136 spw->_impl = new SPWidgetImpl(*spw); // ctor invoked after all other init
161 delete spw->_impl;
162 spw->_impl = 0;
298 spw->_impl->modifySelection(selection, flags);
303 spw->_impl->changeSelection(selection);
308 spw->_impl->setSelection(selection);
H A Dsp-widget.h40 Inkscape::SPWidgetImpl *_impl; member in struct:SPWidget

Completed in 114 milliseconds