public object VisitGlobalStyle(XshtdGlobalStyles globStyles, XshtdGlobalStyle style) { if (style.TypeName == null) { throw Error(style, "Name must not be null"); } if (style.TypeName.Length == 0) { throw Error(style, "Name must not be the empty string"); } if (globStyles == null) { throw Error(globStyles, "GlobalStyles parameter must not be null"); } GlobalStyle globDef; if (def._GlobalStyles.TryGetValue(style.TypeName, out globDef) == false) { throw Error(style, "Style definition '" + style.TypeName + "' does not exist in collection of GlobalStyles."); } globDef.backgroundcolor = style.background; globDef.foregroundcolor = style.foreground; globDef.bordercolor = style.bordercolor; globDef.Freeze(); return(globDef); }
public object VisitGlobalStyle(XshtdGlobalStyles globStyles, XshtdGlobalStyle style) { if (style.TypeName != null) { if (style.TypeName.Length == 0) { throw Error(style, "Name must not be the empty string"); } if (globStyles == null) { throw Error(globStyles, "GlobalStyles parameter must not be null"); } GlobalStyle globDef; if (def._GlobalStyles.TryGetValue(style.TypeName, out globDef) == true) { throw Error(style, "GlobalStyle definition '" + style.TypeName + "' has duplicates."); } globDef = new GlobalStyle(style.TypeName); globDef.backgroundcolor = style.background; globDef.foregroundcolor = style.foreground; globDef.bordercolor = style.bordercolor; globDef.Freeze(); def._GlobalStyles.Add(style.TypeName, new GlobalStyle(style.TypeName)); } return(null); }
/// <summary> /// Implements the visitor for the <see cref="XshtdGlobalStyles"/> object. /// </summary> /// <param name="globStyles">the element to be visited.</param> /// <returns></returns> public object VisitGlobalStyles(XshtdGlobalStyles globStyles) { globStyles.AcceptElements(this); return(null); }
/// <summary> /// Creates a new XshtdSyntaxDefinition object. /// </summary> /// <param name="styles">Parent collection of styles in which this style occurs.</param> public XshtdGlobalStyle(XshtdGlobalStyles styles) : this() { _styles = styles; }