/// <summary> /// Parse a localized control. /// </summary> /// <param name="node">Element to parse.</param> /// <param name="localizedControls">Dictionary of localized controls.</param> private static void ParseUI(XElement node, IDictionary <string, LocalizedControl> localizedControls) { string dialog = null; string control = null; int x = CompilerConstants.IntegerNotSet; int y = CompilerConstants.IntegerNotSet; int width = CompilerConstants.IntegerNotSet; int height = CompilerConstants.IntegerNotSet; int attribs = 0; string text = null; SourceLineNumber sourceLineNumbers = SourceLineNumber.CreateFromXObject(node); foreach (XAttribute attrib in node.Attributes()) { if (String.IsNullOrEmpty(attrib.Name.NamespaceName) || Localizer.WxlNamespace == attrib.Name.Namespace) { switch (attrib.Name.LocalName) { case "Dialog": dialog = Common.GetAttributeIdentifierValue(sourceLineNumbers, attrib); break; case "Control": control = Common.GetAttributeIdentifierValue(sourceLineNumbers, attrib); break; case "X": x = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue); break; case "Y": y = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue); break; case "Width": width = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue); break; case "Height": height = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue); break; case "RightToLeft": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib)) { attribs |= MsiInterop.MsidbControlAttributesRTLRO; } break; case "RightAligned": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib)) { attribs |= MsiInterop.MsidbControlAttributesRightAligned; } break; case "LeftScroll": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib)) { attribs |= MsiInterop.MsidbControlAttributesLeftScroll; } break; default: Common.UnexpectedAttribute(sourceLineNumbers, attrib); break; } } else { Common.UnexpectedAttribute(sourceLineNumbers, attrib); } } text = Common.GetInnerText(node); if (String.IsNullOrEmpty(control) && 0 < attribs) { if (MsiInterop.MsidbControlAttributesRTLRO == (attribs & MsiInterop.MsidbControlAttributesRTLRO)) { Messaging.Instance.OnMessage(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "RightToLeft", "Control")); } else if (MsiInterop.MsidbControlAttributesRightAligned == (attribs & MsiInterop.MsidbControlAttributesRightAligned)) { Messaging.Instance.OnMessage(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "RightAligned", "Control")); } else if (MsiInterop.MsidbControlAttributesLeftScroll == (attribs & MsiInterop.MsidbControlAttributesLeftScroll)) { Messaging.Instance.OnMessage(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "LeftScroll", "Control")); } } if (String.IsNullOrEmpty(control) && String.IsNullOrEmpty(dialog)) { Messaging.Instance.OnMessage(WixErrors.ExpectedAttributesWithOtherAttribute(sourceLineNumbers, node.Name.ToString(), "Dialog", "Control")); } if (!Messaging.Instance.EncounteredError) { LocalizedControl localizedControl = new LocalizedControl(dialog, control, x, y, width, height, attribs, text); string key = localizedControl.GetKey(); if (localizedControls.ContainsKey(key)) { if (String.IsNullOrEmpty(localizedControl.Control)) { Messaging.Instance.OnMessage(WixErrors.DuplicatedUiLocalization(sourceLineNumbers, localizedControl.Dialog)); } else { Messaging.Instance.OnMessage(WixErrors.DuplicatedUiLocalization(sourceLineNumbers, localizedControl.Dialog, localizedControl.Control)); } } else { localizedControls.Add(key, localizedControl); } } }
/// <summary> /// Parse a localized control. /// </summary> /// <param name="node">Element to parse.</param> /// <param name="localization">The localization being parsed.</param> private void ParseUI(XElement node) { string dialog = null; string control = null; int x = CompilerConstants.IntegerNotSet; int y = CompilerConstants.IntegerNotSet; int width = CompilerConstants.IntegerNotSet; int height = CompilerConstants.IntegerNotSet; int attribs = 0; string text = null; SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); foreach (XAttribute attrib in node.Attributes()) { if (String.IsNullOrEmpty(attrib.Name.NamespaceName) || Localization.WxlNamespace == attrib.Name.Namespace) { switch (attrib.Name.LocalName) { case "Dialog": dialog = Common.GetAttributeIdentifierValue(sourceLineNumbers, attrib, null); break; case "Control": control = Common.GetAttributeIdentifierValue(sourceLineNumbers, attrib, null); break; case "X": x = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue, null); break; case "Y": y = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue, null); break; case "Width": width = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue, null); break; case "Height": height = Common.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, short.MaxValue, null); break; case "RightToLeft": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib, null)) { attribs |= MsiInterop.MsidbControlAttributesRTLRO; } break; case "RightAligned": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib, null)) { attribs |= MsiInterop.MsidbControlAttributesRightAligned; } break; case "LeftScroll": if (YesNoType.Yes == Common.GetAttributeYesNoValue(sourceLineNumbers, attrib, null)) { attribs |= MsiInterop.MsidbControlAttributesLeftScroll; } break; default: Common.UnexpectedAttribute(sourceLineNumbers, attrib, Localization.OnMessage); break; } } else { Common.UnsupportedExtensionAttribute(sourceLineNumbers, attrib, Localization.OnMessage); } } text = Common.GetInnerText(node); if (String.IsNullOrEmpty(control) && 0 < attribs) { if (MsiInterop.MsidbControlAttributesRTLRO == (attribs & MsiInterop.MsidbControlAttributesRTLRO)) { throw new WixException(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "RightToLeft", "Control")); } else if (MsiInterop.MsidbControlAttributesRightAligned == (attribs & MsiInterop.MsidbControlAttributesRightAligned)) { throw new WixException(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "RightAligned", "Control")); } else if (MsiInterop.MsidbControlAttributesLeftScroll == (attribs & MsiInterop.MsidbControlAttributesLeftScroll)) { throw new WixException(WixErrors.IllegalAttributeWithoutOtherAttributes(sourceLineNumbers, node.Name.ToString(), "LeftScroll", "Control")); } } if (String.IsNullOrEmpty(control) && String.IsNullOrEmpty(dialog)) { throw new WixException(WixErrors.ExpectedAttributesWithOtherAttribute(sourceLineNumbers, node.Name.ToString(), "Dialog", "Control")); } string key = LocalizedControl.GetKey(dialog, control); if (this.localizedControls.ContainsKey(key)) { if (String.IsNullOrEmpty(control)) { throw new WixException(WixErrors.DuplicatedUiLocalization(sourceLineNumbers, dialog)); } else { throw new WixException(WixErrors.DuplicatedUiLocalization(sourceLineNumbers, dialog, control)); } } this.localizedControls.Add(key, new LocalizedControl(x, y, width, height, attribs, text)); }
/// <summary> /// Parses the WixLocalization element. /// </summary> /// <param name="node">Element to parse.</param> private static Localization ParseWixLocalizationElement(XElement node, TableDefinitionCollection tableDefinitions) { int codepage = -1; string culture = null; SourceLineNumber sourceLineNumbers = SourceLineNumber.CreateFromXObject(node); foreach (XAttribute attrib in node.Attributes()) { if (String.IsNullOrEmpty(attrib.Name.NamespaceName) || Localizer.WxlNamespace == attrib.Name.Namespace) { switch (attrib.Name.LocalName) { case "Codepage": codepage = Common.GetValidCodePage(attrib.Value, true, false, sourceLineNumbers); break; case "Culture": culture = attrib.Value; break; case "Language": // do nothing; @Language is used for locutil which can't convert Culture to lcid break; default: Common.UnexpectedAttribute(sourceLineNumbers, attrib); break; } } else { Common.UnexpectedAttribute(sourceLineNumbers, attrib); } } Dictionary <string, WixVariableRow> variables = new Dictionary <string, WixVariableRow>(); Dictionary <string, LocalizedControl> localizedControls = new Dictionary <string, LocalizedControl>(); foreach (XElement child in node.Elements()) { if (Localizer.WxlNamespace == child.Name.Namespace) { switch (child.Name.LocalName) { case "String": Localizer.ParseString(child, variables, tableDefinitions); break; case "UI": Localizer.ParseUI(child, localizedControls); break; default: Messaging.Instance.OnMessage(WixErrors.UnexpectedElement(sourceLineNumbers, node.Name.ToString(), child.Name.ToString())); break; } } else { Messaging.Instance.OnMessage(WixErrors.UnsupportedExtensionElement(sourceLineNumbers, node.Name.ToString(), child.Name.ToString())); } } return(Messaging.Instance.EncounteredError ? null : new Localization(codepage, culture, variables, localizedControls)); }
/// <summary> /// Parses the WixLocalization element. /// </summary> /// <param name="node">Element to parse.</param> private void ParseWixLocalizationElement(XElement node) { int codepage = -1; string culture = null; SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); foreach (XAttribute attrib in node.Attributes()) { if (String.IsNullOrEmpty(attrib.Name.NamespaceName) || Localization.WxlNamespace == attrib.Name.Namespace) { switch (attrib.Name.LocalName) { case "Codepage": codepage = Common.GetValidCodePage(attrib.Value, true); break; case "Culture": culture = attrib.Value; break; case "Language": // do nothing; @Language is used for locutil which can't convert Culture to lcid break; default: Common.UnexpectedAttribute(sourceLineNumbers, attrib, Localization.OnMessage); break; } } else { Common.UnsupportedExtensionAttribute(sourceLineNumbers, attrib, Localization.OnMessage); } } this.codepage = codepage; this.culture = String.IsNullOrEmpty(culture) ? String.Empty : culture.ToLower(CultureInfo.InvariantCulture); foreach (XElement child in node.Elements()) { if (Localization.WxlNamespace == child.Name.Namespace) { switch (child.Name.LocalName) { case "String": this.ParseString(child); break; case "UI": this.ParseUI(child); break; default: throw new WixException(WixErrors.UnexpectedElement(sourceLineNumbers, node.Name.ToString(), child.Name.ToString())); } } else { throw new WixException(WixErrors.UnsupportedExtensionElement(sourceLineNumbers, node.Name.ToString(), child.Name.ToString())); } } }