Searched refs:primitive (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/
H A Dfilter-chemistry.cpp131 //create filter primitive node
179 //set primitive as child of filter node
194 * Creates a filter with blur primitive of specified radius for an item with the given matrix expansion, width and height
256 * Creates a simple filter with a blend primitive and a blur primitive of specified radius for
290 // Gaussian blur primitive
314 // Blend primitive
425 Inkscape::XML::Node *primitive = repr->firstChild(); local
426 while (primitive) {
427 if (strcmp("svg:feGaussianBlur", primitive
476 Inkscape::XML::Node *primitive = repr->firstChild(); local
[all...]
H A Dsp-filter.h82 SPFilterPrimitive *add_primitive(SPFilter *filter, SPFilterPrimitive *primitive);
H A Dsp-filter.cpp31 #include "sp-filter-primitive.h"
240 // Update filter primitives in order to update filter primitive area
426 SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj); local
427 g_assert(primitive != NULL);
429 // if (((SPFilterPrimitiveClass*) G_OBJECT_GET_CLASS(primitive))->build_renderer) {
430 // ((SPFilterPrimitiveClass *) G_OBJECT_GET_CLASS(primitive))->build_renderer(primitive, nr_filter);
434 primitive->build_renderer(nr_filter);
H A Ddesktop-style.cpp1720 SPFilterPrimitive *primitive = dynamic_cast<SPFilterPrimitive *>(primitive_obj); local
1721 if (dynamic_cast<SPFeBlend *>(primitive)) {
1723 } else if (dynamic_cast<SPGaussianBlur *>(primitive)) {
1812 SPFilterPrimitive *primitive = dynamic_cast<SPFilterPrimitive *>(primitive_obj); local
1813 if (primitive) {
1815 //if primitive is gaussianblur
1816 SPGaussianBlur * spblur = dynamic_cast<SPGaussianBlur *>(primitive);
/inkscape/src/display/
H A Dnr-filter.h17 #include "display/nr-filter-primitive.h"
39 * Creates a new filter primitive under this filter object.
40 * New primitive is placed so that it will be executed after all filter
42 * Should this filter not have enough space for a new primitive, the filter
45 * Returns a handle (non-negative integer) to the filter primitive created.
46 * Returns -1, if type is not valid filter primitive type or filter
47 * primitive of such type cannot be created.
57 * Replaces filter primitive pointed by 'target' with a new filter
58 * primitive of type 'type'
59 * If 'target' does not correspond to any primitive insid
[all...]
/inkscape/src/ui/dialog/
H A Dobjects.cpp1524 for (SPObject *primitive = item->style->getFilter()->children; primitive && SP_IS_FILTER_PRIMITIVE(primitive); primitive = primitive->next) {
1525 if (SP_IS_GAUSSIANBLUR(primitive)) {
1528 radius = SP_GAUSSIANBLUR(primitive)->stdDeviation.getNumber();
1536 for (SPObject *primitive = item->style->getFilter()->children; primitive && SP_IS_FILTER_PRIMITIVE(primitive); primitiv
[all...]
H A Dfilter-effects-dialog.h145 add(primitive);
151 Gtk::TreeModelColumn<SPFilterPrimitive*> primitive; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::PrimitiveColumns
295 // Bottom pane (filter effect primitive settings)
H A Dfilter-effects-dialog.cpp62 #include "sp-filter-primitive.h"
97 // Returns the number of inputs available for the filter primitive type
1724 _primitive(*this, "primitive", 0),
1755 // the first primitive, in which case there are no connections
1782 // the first primitive, in which case there are no connections
1823 col->add_attribute(_connection_cell.property_primitive(), _columns.primitive);
1880 row[_columns.primitive] = prim;
1932 return (*i)[_columns.primitive];
1942 if((*i)[_columns.primitive] == prim)
1958 _("Remove filter primitive"));
[all...]
/inkscape/src/ui/tools/
H A Dtweak-tool.cpp956 SPFilterPrimitive *primitive = dynamic_cast<SPFilterPrimitive *>(primitive_obj); local
957 if (primitive) {
958 //if primitive is gaussianblur
959 SPGaussianBlur * spblur = dynamic_cast<SPGaussianBlur *>(primitive);

Completed in 65 milliseconds