Searched refs:flags (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/inkscape/src/
H A Dsp-defs.cpp33 void SPDefs::update(SPCtx *ctx, guint flags) { argument
34 if (flags & SP_OBJECT_MODIFIED_FLAG) {
35 flags |= SP_OBJECT_PARENT_MODIFIED_FLAG;
38 flags &= SP_OBJECT_MODIFIED_CASCADE;
42 if (flags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) {
43 child->updateDisplay(ctx, flags);
49 void SPDefs::modified(unsigned int flags) { argument
50 if (flags & SP_OBJECT_MODIFIED_FLAG) {
51 flags |= SP_OBJECT_PARENT_MODIFIED_FLAG;
54 flags
74 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
[all...]
H A Dsp-desc.cpp24 Inkscape::XML::Node* SPDesc::write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags) { argument
29 SPObject::write(doc, repr, flags);
H A Dattribute-rel-util.h48 void sp_attribute_clean_recursive(Node *repr, unsigned int flags);
53 void sp_attribute_clean_element(Node *repr, unsigned int flags);
58 void sp_attribute_clean_style(Node *repr, unsigned int flags);
63 Glib::ustring sp_attribute_clean_style(Node *repr, gchar const *string, unsigned int flags);
68 void sp_attribute_clean_style(Node* repr, SPCSSAttr *css, unsigned int flags);
H A Dattribute-rel-util.cpp36 unsigned int flags = 0; local
37 if( prefs->getBool("/options/svgoutput/incorrect_attributes_warn") ) flags += SP_ATTR_CLEAN_ATTR_WARN;
38 if( prefs->getBool("/options/svgoutput/incorrect_attributes_remove") ) flags += SP_ATTR_CLEAN_ATTR_REMOVE;
39 if( prefs->getBool("/options/svgoutput/incorrect_style_properties_warn") ) flags += SP_ATTR_CLEAN_STYLE_WARN;
40 if( prefs->getBool("/options/svgoutput/incorrect_style_properties_remove" ) ) flags += SP_ATTR_CLEAN_STYLE_REMOVE;
41 if( prefs->getBool("/options/svgoutput/style_defaults_warn") ) flags += SP_ATTR_CLEAN_DEFAULT_WARN;
42 if( prefs->getBool("/options/svgoutput/style_defaults_remove") ) flags += SP_ATTR_CLEAN_DEFAULT_REMOVE;
44 return flags;
55 unsigned int flags = sp_attribute_clean_get_prefs(); local
57 if( flags ) {
65 sp_attribute_clean_recursive(Node *repr, unsigned int flags) argument
93 sp_attribute_clean_element(Node *repr, unsigned int flags) argument
131 sp_attribute_clean_style(Node *repr, unsigned int flags) argument
157 sp_attribute_clean_style(Node *repr, gchar const *string, unsigned int flags) argument
183 sp_attribute_clean_style(Node* repr, SPCSSAttr *css, unsigned int flags) argument
[all...]
H A Dsp-flowdiv.cpp19 void SPFlowdiv::update(SPCtx *ctx, unsigned int flags) { argument
23 unsigned childflags = flags;
24 if (flags & SP_OBJECT_MODIFIED_FLAG) {
55 SPItem::update(ctx, flags);
58 void SPFlowdiv::modified(unsigned int flags) { argument
59 SPItem::modified(flags);
61 if (flags & SP_OBJECT_MODIFIED_FLAG) {
62 flags |= SP_OBJECT_PARENT_MODIFIED_FLAG;
65 flags &= SP_OBJECT_MODIFIED_CASCADE;
79 if (flags || (chil
99 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
160 update(SPCtx *ctx, unsigned int flags) argument
199 modified(unsigned int flags) argument
237 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
297 update(SPCtx *ctx, unsigned int flags) argument
336 modified(unsigned int flags) argument
374 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
435 modified(unsigned int flags) argument
445 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
472 modified(unsigned int flags) argument
482 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
[all...]
H A Dsp-defs.h28 virtual void update(SPCtx* ctx, unsigned int flags);
29 virtual void modified(unsigned int flags);
30 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
H A Dsp-script.h31 virtual void update(SPCtx* ctx, unsigned int flags);
32 virtual void modified(unsigned int flags);
33 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
H A Dsp-title.cpp21 Inkscape::XML::Node* SPTitle::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { argument
28 SPObject::write(xml_doc, repr, flags);
H A Dsp-symbol.cpp71 void SPSymbol::update(SPCtx *ctx, guint flags) { argument
78 SPGroup::update((SPCtx *) &rctx, flags);
87 SPGroup::update(ctx, flags);
91 void SPSymbol::modified(unsigned int flags) { argument
92 SPGroup::modified(flags);
96 Inkscape::XML::Node* SPSymbol::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { argument
97 if ((flags & SP_OBJECT_WRITE_BUILD) && !repr) {
107 SPGroup::write(xml_doc, repr, flags);
112 Inkscape::DrawingItem* SPSymbol::show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags) { argument
117 ai = SPGroup::show(drawing, key, flags);
[all...]
H A Dsp-linear-gradient.cpp64 Inkscape::XML::Node* SPLinearGradient::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { argument
65 if ((flags & SP_OBJECT_WRITE_BUILD) && !repr) {
69 if ((flags & SP_OBJECT_WRITE_ALL) || this->x1._set) {
73 if ((flags & SP_OBJECT_WRITE_ALL) || this->y1._set) {
77 if ((flags & SP_OBJECT_WRITE_ALL) || this->x2._set) {
81 if ((flags & SP_OBJECT_WRITE_ALL) || this->y2._set) {
85 SPGradient::write(xml_doc, repr, flags);
H A Dsp-tag.cpp99 SPTag::update(SPCtx *ctx, guint flags) argument
101 if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG |
107 SPObject::update(ctx, flags);
114 SPTag::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) argument
116 if ((flags & SP_OBJECT_WRITE_BUILD) && !repr) {
121 if (flags & SP_OBJECT_WRITE_EXT) {
128 SPObject::write(doc, repr, flags);
H A Dsp-tspan.cpp20 * we have to invent set of flags to mark, whether standard
92 void SPTSpan::update(SPCtx *ctx, guint flags) { argument
93 unsigned childflags = flags;
94 if (flags & SP_OBJECT_MODIFIED_FLAG) {
100 if ( flags || ( ochild->uflags & SP_OBJECT_MODIFIED_FLAG )) {
105 SPItem::update(ctx, flags);
107 if (flags & ( SP_OBJECT_STYLE_MODIFIED_FLAG |
122 void SPTSpan::modified(unsigned int flags) { argument
123 // SPItem::onModified(flags);
125 if (flags
168 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
299 update(SPCtx *ctx, guint flags) argument
361 modified(unsigned int flags) argument
377 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
[all...]
H A Dsp-flowdiv.h34 virtual void update(SPCtx* ctx, unsigned int flags);
35 virtual void modified(unsigned int flags);
38 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
49 virtual void update(SPCtx* ctx, unsigned int flags);
50 virtual void modified(unsigned int flags);
53 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
64 virtual void update(SPCtx* ctx, unsigned int flags);
65 virtual void modified(unsigned int flags);
68 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
79 virtual void modified(unsigned int flags);
[all...]
H A Dsp-flowregion.cpp54 void SPFlowregion::update(SPCtx *ctx, unsigned int flags) { argument
58 unsigned childflags = flags;
59 if (flags & SP_OBJECT_MODIFIED_FLAG) {
93 SPItem::update(ctx, flags);
112 void SPFlowregion::modified(guint flags) { argument
113 if (flags & SP_OBJECT_MODIFIED_FLAG) {
114 flags |= SP_OBJECT_PARENT_MODIFIED_FLAG;
117 flags &= SP_OBJECT_MODIFIED_CASCADE;
133 if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) {
134 child->emitModified(flags);
141 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
210 update(SPCtx *ctx, unsigned int flags) argument
267 modified(guint flags) argument
296 write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) argument
[all...]
H A Dsp-tspan.h31 virtual void update(SPCtx* ctx, unsigned int flags);
32 virtual void modified(unsigned int flags);
33 virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
H A Dsp-flowregion.h31 virtual void update(SPCtx *ctx, unsigned int flags);
32 virtual void modified(guint flags);
33 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
48 virtual void update(SPCtx *ctx, unsigned int flags);
49 virtual void modified(guint flags);
50 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
H A Dsp-root.h56 virtual void update(SPCtx *ctx, unsigned int flags);
57 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
59 virtual void modified(unsigned int flags);
63 virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags);
H A Dsp-symbol.h36 virtual void update(SPCtx *ctx, unsigned int flags);
37 virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
39 virtual void modified(unsigned int flags);
42 virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags);
/inkscape/src/filters/
H A Dmergenode.cpp66 void SPFeMergeNode::update(SPCtx *ctx, guint flags) { argument
67 if (flags & SP_OBJECT_MODIFIED_FLAG) {
71 SPObject::update(ctx, flags);
77 Inkscape::XML::Node* SPFeMergeNode::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) { argument
79 if (flags & SP_OBJECT_WRITE_EXT) {
88 SPObject::write(doc, repr, flags);
H A Dtile.cpp58 void SPFeTile::update(SPCtx *ctx, guint flags) { argument
59 if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG |
66 SPFilterPrimitive::update(ctx, flags);
72 Inkscape::XML::Node* SPFeTile::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) { argument
79 SPFilterPrimitive::write(doc, repr, flags);
/inkscape/src/display/
H A Ddrawing-group.h33 unsigned flags, unsigned reset);
34 virtual unsigned _renderItem(DrawingContext &dc, Geom::IntRect const &area, unsigned flags,
37 virtual DrawingItem *_pickItem(Geom::Point const &p, double delta, unsigned flags);
H A Ddrawing-group.cpp69 DrawingGroup::_updateItem(Geom::IntRect const &area, UpdateContext const &ctx, unsigned flags, unsigned reset) argument
79 i->update(area, child_ctx, flags, reset);
93 DrawingGroup::_renderItem(DrawingContext &dc, Geom::IntRect const &area, unsigned flags, DrawingItem *stop_at) argument
98 i->render(dc, area, flags, stop_at);
106 i->render(dc, area, flags | RENDER_FILTER_BACKGROUND, stop_at);
110 i->render(dc, area, flags, stop_at);
126 DrawingGroup::_pickItem(Geom::Point const &p, double delta, unsigned flags) argument
129 DrawingItem *picked = i->pick(p, delta, flags);
H A Ddrawing-shape.h36 unsigned flags, unsigned reset);
37 virtual unsigned _renderItem(DrawingContext &dc, Geom::IntRect const &area, unsigned flags,
40 virtual DrawingItem *_pickItem(Geom::Point const &p, double delta, unsigned flags);
45 void _renderMarkers(DrawingContext &dc, Geom::IntRect const &area, unsigned flags,
/inkscape/src/ui/widget/
H A Dfilter-effect-chooser.cpp24 SimpleFilterModifier::SimpleFilterModifier(int flags) argument
31 _flags = flags;
33 if (flags & BLEND) {
38 if (flags & BLUR) {
/inkscape/src/ui/dialog/
H A Dmessages.cpp147 GLogLevelFlags flags = (GLogLevelFlags) (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | local
151 handlerDefault = g_log_set_handler(NULL, flags,
155 handlerGlibmm = g_log_set_handler("glibmm", flags,
159 handlerAtkmm = g_log_set_handler("atkmm", flags,
163 handlerPangomm = g_log_set_handler("pangomm", flags,
167 handlerGdkmm = g_log_set_handler("gdkmm", flags,
171 handlerGtkmm = g_log_set_handler("gtkmm", flags,

Completed in 75 milliseconds

1234567891011>>