summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 79999cd)
raw | patch | inline | side by side (parent: 79999cd)
author | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Tue, 12 May 2009 19:54:05 +0000 (19:54 +0000) | ||
committer | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Tue, 12 May 2009 19:54:05 +0000 (19:54 +0000) |
src/desktop-style.cpp | patch | blob | history | |
src/widgets/stroke-style.cpp | patch | blob | history |
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp
index c92bcfdf5ca2366d9c66e51f45fff3ab893d4114..edb925135b3169f97079d08a3be358a3a5199abc 100644 (file)
--- a/src/desktop-style.cpp
+++ b/src/desktop-style.cpp
@@ -168,7 +168,7 @@ sp_desktop_set_style(SPDesktop *desktop, SPCSSAttr *css, bool change, bool write
sp_repr_css_merge(css_write, css);
sp_css_attr_unset_uris(css_write);
prefs->mergeStyle("/desktop/style", css_write);
-
+
for (const GSList *i = desktop->selection->itemList(); i != NULL; i = i->next) {
/* last used styles for 3D box faces are stored separately */
if (SP_IS_BOX3D_SIDE (i->data)) {
@@ -255,10 +255,10 @@ sp_desktop_get_master_opacity_tool(SPDesktop *desktop, Glib::ustring const &tool
} else {
css = prefs->getStyle(tool + "/style");
}
-
+
if (css) {
gchar const *property = css ? sp_repr_css_property(css, "opacity", "1.000") : 0;
-
+
if (desktop->current && property) { // if there is style and the property in it,
if ( !sp_svg_number_read_f(property, &value) ) {
value = 1.0; // things failed. set back to the default
@@ -281,13 +281,13 @@ sp_desktop_get_opacity_tool(SPDesktop *desktop, Glib::ustring const &tool, bool
gfloat value = 1.0; // default if nothing else found
if (prefs->getBool(tool + "/usecurrent")) {
css = sp_desktop_get_style(desktop, true);
- } else {
+ } else {
css = prefs->getStyle(tool + "/style");
}
-
+
if (css) {
gchar const *property = css ? sp_repr_css_property(css, is_fill ? "fill-opacity": "stroke-opacity", "1.000") : 0;
-
+
if (desktop->current && property) { // if there is style and the property in it,
if ( !sp_svg_number_read_f(property, &value) ) {
value = 1.0; // things failed. set back to the default
guint32
sp_desktop_get_color_tool(SPDesktop *desktop, Glib::ustring const &tool, bool is_fill, bool *has_color)
-{
+{
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
SPCSSAttr *css = NULL;
guint32 r = 0; // if there's no color, return black
@@ -313,10 +313,10 @@ sp_desktop_get_color_tool(SPDesktop *desktop, Glib::ustring const &tool, bool is
} else {
css = prefs->getStyle(tool + "/style");
}
-
+
if (css) {
gchar const *property = sp_repr_css_property(css, is_fill ? "fill" : "stroke", "#000");
-
+
if (desktop->current && property) { // if there is style and the property in it,
if (strncmp(property, "url", 3) && strncmp(property, "none", 4)) { // and if it's not url or none,
// read it
@@ -340,7 +340,7 @@ sp_desktop_apply_style_tool(SPDesktop *desktop, Inkscape::XML::Node *repr, Glib:
{
SPCSSAttr *css_current = sp_desktop_get_style(desktop, with_text);
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
-
+
if (prefs->getBool(tool_path + "/usecurrent") && css_current) {
sp_repr_css_set(repr, css_current, "style");
} else {
gdouble prev_sw = -1;
bool same_sw = true;
+ bool noneSet = true; // is stroke set to none?
int n_stroked = 0;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
- if ( style->stroke.isNone() ) {
+ if ( style->stroke.isNone() && !(
+ style->marker[SP_MARKER_LOC].set || // stroke width affects markers, so if there's no stroke but only markers then we should
+ style->marker[SP_MARKER_LOC_START].set || // still calculate the stroke width
+ style->marker[SP_MARKER_LOC_MID].set ||
+ style->marker[SP_MARKER_LOC_END].set))
+ {
continue;
}
n_stroked ++;
+ noneSet &= style->stroke.isNone();
+
Geom::Matrix i2d = sp_item_i2d_affine (SP_ITEM(obj));
double sw = style->stroke_width.computed * i2d.descrim();
style_res->stroke_width.computed = avgwidth;
style_res->stroke_width.set = true;
+ style_res->stroke.noneSet = noneSet; // Will only be true if none of the selected objects has it's stroke set.
if (n_stroked == 0) {
return QUERY_STYLE_NOTHING;
texts ++;
- if (style_res->text->font_specification.value && style_res->text->font_specification.set &&
+ if (style_res->text->font_specification.value && style_res->text->font_specification.set &&
style->text->font_specification.value && style->text->font_specification.set &&
strcmp (style_res->text->font_specification.value, style->text->font_specification.value)) {
different = true; // different fonts
}
-
+
if (style->text->font_specification.set) {
if (style_res->text->font_specification.value) {
g_free(style_res->text->font_specification.value);
style_res->text->font_specification.value = NULL;
}
-
+
style_res->text->font_specification.set = TRUE;
style_res->text->font_specification.value = g_strdup(style->text->font_specification.value);
}
float blend_prev = empty_prev;
bool same_blend = true;
guint items = 0;
-
+
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
bool same_blur = true;
guint blur_items = 0;
guint items = 0;
-
+
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
while (primitive_obj) {
if (SP_IS_FILTER_PRIMITIVE(primitive_obj)) {
SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj);
-
+
//if primitive is gaussianblur
if(SP_IS_GAUSSIANBLUR(primitive)) {
SPGaussianBlur * spblur = SP_GAUSSIANBLUR(primitive);
} else if (property == QUERY_STYLE_PROPERTY_MASTEROPACITY) {
return objects_query_opacity (list, style);
-
+
} else if (property == QUERY_STYLE_PROPERTY_FONT_SPECIFICATION) {
return objects_query_fontspecification (list, style);
} else if (property == QUERY_STYLE_PROPERTY_FONTFAMILY) {
}
/**
- * Do the same as sp_desktop_query_style for all (defined) style properties, return true if at
+ * Do the same as sp_desktop_query_style for all (defined) style properties, return true if at
* least one of the properties did not return QUERY_STYLE_NOTHING.
*/
bool
int result_strokejoin = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKEJOIN);
int result_opacity = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_MASTEROPACITY);
int result_blur = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_BLUR);
-
- return (result_family != QUERY_STYLE_NOTHING ||
- result_fstyle != QUERY_STYLE_NOTHING ||
- result_fnumbers != QUERY_STYLE_NOTHING ||
- result_fill != QUERY_STYLE_NOTHING ||
- result_stroke != QUERY_STYLE_NOTHING ||
- result_opacity != QUERY_STYLE_NOTHING ||
- result_strokewidth != QUERY_STYLE_NOTHING ||
+
+ return (result_family != QUERY_STYLE_NOTHING ||
+ result_fstyle != QUERY_STYLE_NOTHING ||
+ result_fnumbers != QUERY_STYLE_NOTHING ||
+ result_fill != QUERY_STYLE_NOTHING ||
+ result_stroke != QUERY_STYLE_NOTHING ||
+ result_opacity != QUERY_STYLE_NOTHING ||
+ result_strokewidth != QUERY_STYLE_NOTHING ||
result_strokemiterlimit != QUERY_STYLE_NOTHING ||
result_strokecap != QUERY_STYLE_NOTHING ||
result_strokejoin != QUERY_STYLE_NOTHING ||
index bd0061796c64cee7d435a101e911550af734a8eb..efdb5d3bf61f6b04d0ea365c30f025cbeb98eff8 100644 (file)
// For an example, draw a triangle with a large stroke width and modify the
// "Join" option (in the Fill and Stroke dialog).
tt->set_tip(*tb, _("Miter join"));
+ spw->set_data("miter join", tb);
tb = sp_stroke_radio_button(tb, INKSCAPE_ICON_STROKE_JOIN_ROUND,
hb, spw, "join", "round");
+
// TRANSLATORS: Round join: joining lines with a rounded corner.
// For an example, draw a triangle with a large stroke width and modify the
// "Join" option (in the Fill and Stroke dialog).
tt->set_tip(*tb, _("Round join"));
+ spw->set_data("round join", tb);
tb = sp_stroke_radio_button(tb, INKSCAPE_ICON_STROKE_JOIN_BEVEL,
hb, spw, "join", "bevel");
+
// TRANSLATORS: Bevel join: joining lines with a blunted (flattened) corner.
// For an example, draw a triangle with a large stroke width and modify the
// "Join" option (in the Fill and Stroke dialog).
tt->set_tip(*tb, _("Bevel join"));
+ spw->set_data("bevel join", tb);
i++;
tb = sp_stroke_radio_button(tb, INKSCAPE_ICON_STROKE_CAP_BUTT,
hb, spw, "cap", "butt");
+ spw->set_data("cap butt", tb);
// TRANSLATORS: Butt cap: the line shape does not extend beyond the end point
// of the line; the ends of the line are square
tb = sp_stroke_radio_button(tb, INKSCAPE_ICON_STROKE_CAP_ROUND,
hb, spw, "cap", "round");
+ spw->set_data("cap round", tb);
// TRANSLATORS: Round cap: the line shape extends beyond the end point of the
// line; the ends of the line are rounded
tb = sp_stroke_radio_button(tb, INKSCAPE_ICON_STROKE_CAP_SQUARE,
hb, spw, "cap", "square");
+ spw->set_data("cap square", tb);
// TRANSLATORS: Square cap: the line shape extends beyond the end point of the
// line; the ends of the line are square
int result_cap = sp_desktop_query_style (SP_ACTIVE_DESKTOP, query, QUERY_STYLE_PROPERTY_STROKECAP);
int result_join = sp_desktop_query_style (SP_ACTIVE_DESKTOP, query, QUERY_STYLE_PROPERTY_STROKEJOIN);
- if (result_sw == QUERY_STYLE_NOTHING) {
- /* No objects stroked, set insensitive */
- sset->set_sensitive(false);
+ if (!sel || sel->isEmpty()) {
+ // Nothing selected, grey-out all controls in the stroke-style dialog
+ sset->set_sensitive(false);
spw->set_data("update", GINT_TO_POINTER(FALSE));
+
return;
} else {
sset->set_sensitive(true);
} else {
width->set_value(100);
}
+
+ // if none of the selected objects has a stroke, than quite some controls should be disabled
+ // The markers might still be shown though, so these will not be disabled
+ bool enabled = (result_sw != QUERY_STYLE_NOTHING) && !query->stroke.isNoneSet();
+ /* No objects stroked, set insensitive */
+ Gtk::RadioButton *tb = NULL;
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("miter join"));
+ tb->set_sensitive(enabled);
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("round join"));
+ tb->set_sensitive(enabled);
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("bevel join"));
+ tb->set_sensitive(enabled);
+
+ Gtk::SpinButton* sb = NULL;
+ sb = static_cast<Gtk::SpinButton *>(spw->get_data("miterlimit_sb"));
+ sb->set_sensitive(enabled);
+
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("cap butt"));
+ tb->set_sensitive(enabled);
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("cap round"));
+ tb->set_sensitive(enabled);
+ tb = static_cast<Gtk::RadioButton *>(spw->get_data("cap square"));
+ tb->set_sensitive(enabled);
+
+ dsel->set_sensitive(enabled);
}
if (result_ml != QUERY_STYLE_NOTHING)