diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
commit | 35a96bde514a8897f6f0fcc41c5833bf63df2e2a (patch) | |
tree | 657d15a03cc46bd099fc2c6546a7a4ad43815d9f /src/attribute-rel-util.h | |
parent | Initial commit. (diff) | |
download | inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.tar.xz inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.zip |
Adding upstream version 1.0.2.upstream/1.0.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/attribute-rel-util.h')
-rw-r--r-- | src/attribute-rel-util.h | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/src/attribute-rel-util.h b/src/attribute-rel-util.h new file mode 100644 index 0000000..d3c7f5e --- /dev/null +++ b/src/attribute-rel-util.h @@ -0,0 +1,100 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2016 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ +#ifndef __SP_ATTRIBUTE_REL_UTIL_H__ +#define __SP_ATTRIBUTE_REL_UTIL_H__ + +/* + * attribute-rel-util.h + * + * Created on: Sep 8, 2011 + * Author: tavmjong + */ + +#include <glibmm/ustring.h> +#include "xml/sp-css-attr.h" + +using Inkscape::XML::Node; + +/** + * Utility functions for cleaning XML tree. + */ + +/** + * Enum for preferences + */ +enum SPAttrClean { + SP_ATTR_CLEAN_ATTR_WARN = 1, + SP_ATTR_CLEAN_ATTR_REMOVE = 2, + SP_ATTR_CLEAN_STYLE_WARN = 4, + SP_ATTR_CLEAN_STYLE_REMOVE = 8, + SP_ATTR_CLEAN_DEFAULT_WARN = 16, + SP_ATTR_CLEAN_DEFAULT_REMOVE = 32 +}; + +/** + * Get preferences + */ +unsigned int sp_attribute_clean_get_prefs(); + +/** + * Remove or warn about inappropriate attributes and useless style properties. + * repr: the root node in a document or any other node. + */ +void sp_attribute_clean_tree(Node *repr); + +/** + * Recursively clean. + * repr: the root node in a document or any other node. + * pref_attr, pref_style, pref_defaults: ignore, delete, or warn. + */ +void sp_attribute_clean_recursive(Node *repr, unsigned int flags); + +/** + * Clean one element (attributes and style properties). + */ +void sp_attribute_clean_element(Node *repr, unsigned int flags); + +/** + * Clean style properties for one element. + */ +void sp_attribute_clean_style(Node *repr, unsigned int flags); + +/** + * Clean style properties for one style string. + */ +Glib::ustring sp_attribute_clean_style(Node *repr, gchar const *string, unsigned int flags); + +/** + * Clean style properties for one CSS. + */ +void sp_attribute_clean_style(Node* repr, SPCSSAttr *css, unsigned int flags); + +/** + * Remove CSS style properties with default values. + */ +void sp_attribute_purge_default_style(SPCSSAttr *css, unsigned int flags); + +/** + * Check one attribute on an element + */ +bool sp_attribute_check_attribute(Glib::ustring element, Glib::ustring id, Glib::ustring attribute, bool warn); + +#endif /* __SP_ATTRIBUTE_REL_UTIL_H__ */ + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : |