summaryrefslogtreecommitdiffstats
path: root/src/desktop-style.h
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-01-16 02:36:01 +0000
committermental <mental@users.sourceforge.net>2006-01-16 02:36:01 +0000
commit179fa413b047bede6e32109e2ce82437c5fb8d34 (patch)
treea5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/desktop-style.h
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/desktop-style.h')
-rw-r--r--src/desktop-style.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/src/desktop-style.h b/src/desktop-style.h
new file mode 100644
index 000000000..3ebf4f238
--- /dev/null
+++ b/src/desktop-style.h
@@ -0,0 +1,87 @@
+#ifndef __SP_DESKTOP_STYLE_H__
+#define __SP_DESKTOP_STYLE_H__
+
+/*
+ * Desktop style management
+ *
+ * Authors:
+ * bulia byak
+ *
+ * Copyright (C) 2004 authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include <glib/gtypes.h>
+
+class ColorRGBA;
+struct SPCSSAttr;
+struct SPDesktop;
+struct SPObject;
+struct SPStyle;
+namespace Inkscape {
+namespace XML {
+struct Node;
+}
+}
+
+enum { // what kind of a style the query is returning
+ QUERY_STYLE_NOTHING, // nothing was queried - e.g. no selection
+ QUERY_STYLE_SINGLE, // single object was queried
+ QUERY_STYLE_MULTIPLE_SAME, // multiple objects were queried, the results were the same
+ QUERY_STYLE_MULTIPLE_DIFFERENT, // multiple objects were queried, the results could NOT be meaningfully averaged
+ QUERY_STYLE_MULTIPLE_AVERAGED // multiple objects were queried, the results were meaningfully averaged
+};
+
+enum { // which property was queried (add when you need more)
+ QUERY_STYLE_PROPERTY_EVERYTHING,
+ QUERY_STYLE_PROPERTY_FILL, // fill, fill-opacity
+ QUERY_STYLE_PROPERTY_STROKE, // stroke, stroke-opacity
+ QUERY_STYLE_PROPERTY_STROKEWIDTH, // stroke-width
+ QUERY_STYLE_PROPERTY_STROKEMITERLIMIT, // miter limit
+ QUERY_STYLE_PROPERTY_STROKEJOIN, // stroke join
+ QUERY_STYLE_PROPERTY_STROKECAP, // stroke cap
+ QUERY_STYLE_PROPERTY_STROKESTYLE, // markers, dasharray, miterlimit, stroke-width, stroke-cap, stroke-join
+ QUERY_STYLE_PROPERTY_FONTFAMILY, // font-family
+ QUERY_STYLE_PROPERTY_FONTSTYLE, // font style
+ QUERY_STYLE_PROPERTY_FONTNUMBERS, // size, spacings
+ QUERY_STYLE_PROPERTY_MASTEROPACITY // opacity
+};
+
+void sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines);
+void sp_desktop_set_color(SPDesktop *desktop, ColorRGBA const &color, bool is_relative, bool fill);
+void sp_desktop_set_style(SPDesktop *desktop, SPCSSAttr *css, bool change = true, bool write_current = true);
+SPCSSAttr *sp_desktop_get_style(SPDesktop *desktop, bool with_text);
+guint32 sp_desktop_get_color (SPDesktop *desktop, bool is_fill);
+double sp_desktop_get_font_size_tool (SPDesktop *desktop);
+void sp_desktop_apply_style_tool(SPDesktop *desktop, Inkscape::XML::Node *repr, char const *tool, bool with_text);
+
+gdouble stroke_average_width (GSList const *objects);
+
+int objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill);
+int objects_query_fontnumbers (GSList *objects, SPStyle *style_res);
+int objects_query_fontstyle (GSList *objects, SPStyle *style_res);
+int objects_query_fontfamily (GSList *objects, SPStyle *style_res);
+int objects_query_opacity (GSList *objects, SPStyle *style_res);
+int objects_query_strokewidth (GSList *objects, SPStyle *style_res);
+int objects_query_miterlimit (GSList *objects, SPStyle *style_res);
+int objects_query_strokecap (GSList *objects, SPStyle *style_res);
+int objects_query_strokejoin (GSList *objects, SPStyle *style_res);
+
+int sp_desktop_query_style_from_list (GSList *list, SPStyle *style, int property);
+int sp_desktop_query_style(SPDesktop *desktop, SPStyle *style, int property);
+bool sp_desktop_query_style_all (SPDesktop *desktop, SPStyle *query);
+
+#endif
+
+
+/*
+ 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:encoding=utf-8:textwidth=99 :