コード例 #1
0
        private static string Compute (Rule rule, DOMElement element, string calcString, Unit unitType, bool convert = true) {
            while (true) {
                string unit = CSSUnits.GetUnitAbbreviation(unitType);

                int unitStartIndex = calcString.IndexOf(unit);
                int unitEndIndex = unitStartIndex + unit.Length;

                // If there is no unit
                if (unitStartIndex == -1) break;

                // Get starting value index
                int valueStartIndex = GetStartIndex(calcString, unitStartIndex);
                if (valueStartIndex == unitStartIndex) return null;

                // Get and parse value
                string value = calcString.Substring(valueStartIndex, unitStartIndex - valueStartIndex);
                float parsedValue = float.Parse(value, CultureInfo.InvariantCulture.NumberFormat);

                // Compute the value
                if (convert) {
                    rule.ComputedValue.Unit = unitType;
                    rule.ComputedValue.ValueBeforeComputing = parsedValue;
                    rule.ComputedValue.Value = parsedValue;
                }

                float computedValue = (convert) ? CSSUnits.ConvertAnyUnitToPixels(rule, element) : parsedValue;

                // Replace string with computed value
                StringBuilder stringBuilder = new StringBuilder(calcString);
                stringBuilder.Remove(valueStartIndex, unitStartIndex - valueStartIndex + unit.Length);
                stringBuilder.Insert(valueStartIndex, computedValue.ToString().Replace(',', '.'));

                calcString = stringBuilder.ToString();
            }

            return calcString;
        }
コード例 #2
0
        private static void SetFonts(List <DOMElement> elements, List <RuleSet> ruleSets, List <Rule> inheritedStyles = null)
        {
            if (inheritedStyles == null)
            {
                inheritedStyles = new List <Rule>();
            }

            foreach (DOMElement element in elements)
            {
                List <Rule> newInheritedStyles = new List <Rule>();

                string fontFamily = "Times New Roman";

                List <FontStyle>      fontStyles      = new List <FontStyle>();
                List <FontWeight>     fontWeights     = new List <FontWeight>();
                List <TextDecoration> textDecorations = new List <TextDecoration>();

                float fontSize = 16;
                Color color    = Color.Black;

                List <Rule> inheritedStylesCopy = new List <Rule>();
                inheritedStylesCopy.AddRange(inheritedStyles);

                // Set styles for current element used by its parents.
                // For example if a div is in b and the b is in i,
                // the div's text will be bold and italic.

                foreach (Rule rule in inheritedStyles)
                {
                    if (rule.Property == "font-weight")
                    {
                        if (rule.Value == "bold")
                        {
                            fontWeights.Add(FontWeight.Bold);
                        }
                        else if (rule.Value == "normal")
                        {
                            fontWeights.Add(FontWeight.Normal);
                        }
                    }
                    else if (rule.Property == "font-style")
                    {
                        if (rule.Value == "italic")
                        {
                            fontStyles.Add(FontStyle.Italic);
                        }
                        else if (rule.Value == "normal")
                        {
                            fontStyles.Add(FontStyle.Normal);
                        }
                    }
                    else if (rule.Property == "font-family")
                    {
                        fontFamily = rule.Value;
                    }
                    else if (rule.Property == "color")
                    {
                        color = ColorTranslator.FromHtml(rule.Value);
                        element.Style.Color = color;
                    }
                    else if (rule.Property == "text-decoration")
                    {
                        if (rule.Value == "underline")
                        {
                            textDecorations.Add(TextDecoration.Underline);
                        }
                    }
                    else if (rule.Property == "font-size")
                    {
                        CSSValue parsedValue = CSSUnits.ParseValue(rule, element);

                        fontSize = parsedValue.Value;

                        inheritedStylesCopy.Remove(rule);
                    }
                }

                // Set styles for current element.
                if (element.Type == DOMElementType.Normal)
                {
                    foreach (RuleSet ruleSet in ruleSets)
                    {
                        // Check if the selector in the rule set is matching current element's selector.
                        if (element.HasSelector(ruleSet.Selector))
                        {
                            element.RuleSet = ruleSet;

                            foreach (Rule rule in ruleSet.Rules)
                            {
                                if (rule.Property == "font-weight")
                                {
                                    if (rule.Value == "bold")
                                    {
                                        fontWeights.Add(FontWeight.Bold);
                                    }
                                    else if (rule.Value == "normal")
                                    {
                                        fontWeights.Add(FontWeight.Normal);
                                    }

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "font-style")
                                {
                                    if (rule.Value == "italic")
                                    {
                                        fontStyles.Add(FontStyle.Italic);
                                    }
                                    else if (rule.Value == "normal")
                                    {
                                        fontStyles.Add(FontStyle.Normal);
                                    }

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "font-size")
                                {
                                    CSSValue parsedValue = CSSUnits.ParseValue(rule, element);

                                    fontSize = parsedValue.Value;

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "font-family")
                                {
                                    fontFamily = rule.Value;

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "color")
                                {
                                    color = ColorTranslator.FromHtml(rule.Value);
                                    element.Style.Color = color;

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "text-decoration")
                                {
                                    if (rule.Value == "underline")
                                    {
                                        textDecorations.Add(TextDecoration.Underline);
                                    }

                                    newInheritedStyles.Add(rule);
                                }
                            }
                        }
                    }
                }

                // Apply all the font styles added before.
                Font font = new Font(new FontFamily(fontFamily), fontSize, System.Drawing.FontStyle.Regular, GraphicsUnit.Pixel);

                foreach (FontStyle fontStyle in fontStyles)
                {
                    if (fontStyle == FontStyle.Italic)
                    {
                        font = new Font(font, font.Style ^ System.Drawing.FontStyle.Italic);
                    }
                }

                foreach (FontWeight fontWeight in fontWeights)
                {
                    if (fontWeight == FontWeight.Bold)
                    {
                        font = new Font(font, font.Style ^ System.Drawing.FontStyle.Bold);
                    }
                    else if (fontWeight == FontWeight.Normal)
                    {
                        font = new Font(font, font.Style ^ System.Drawing.FontStyle.Regular);
                    }
                }

                foreach (TextDecoration textDecoration in textDecorations)
                {
                    if (textDecoration == TextDecoration.Underline)
                    {
                        font = new Font(font, font.Style ^ System.Drawing.FontStyle.Underline);
                    }
                }

                element.Style.Font = font;

                // Pass used styles by the current element and its parents, to its children.
                foreach (Rule rule in inheritedStylesCopy)
                {
                    newInheritedStyles.Add(rule);
                }

                if (element.Children.Count > 0)
                {
                    SetFonts(element.Children, ruleSets, newInheritedStyles);
                }
            }
        }
コード例 #3
0
        private static void SetStyles(List <DOMElement> elements, List <RuleSet> ruleSets, List <Rule> inheritedStyles = null)
        {
            if (inheritedStyles == null)
            {
                inheritedStyles = new List <Rule>();
            }

            foreach (DOMElement element in elements)
            {
                List <Rule> newInheritedStyles  = new List <Rule>();
                List <Rule> inheritedStylesCopy = new List <Rule>();
                inheritedStylesCopy.AddRange(inheritedStyles);

                // Set styles for current element used by its parents.

                foreach (Rule rule in inheritedStyles)
                {
                    if (rule.Property == "padding-top")
                    {
                        float paddingTop = float.Parse(rule.Value.Split(new string[] { "px" }, StringSplitOptions.None)[0]);
                        element.ComputedStyle.Padding.Top = paddingTop;

                        inheritedStylesCopy.Remove(rule);
                    }
                    else if (rule.Property == "padding-left")
                    {
                        float paddingLeft = float.Parse(rule.Value.Split(new string[] { "px" }, StringSplitOptions.None)[0]);
                        element.ComputedStyle.Padding.Left = paddingLeft;

                        inheritedStylesCopy.Remove(rule);
                    }
                }

                // Set styles for current element.
                if (element.Type == DOMElementType.Normal)
                {
                    foreach (RuleSet ruleSet in ruleSets)
                    {
                        // Check if the selector in the rule set is matching current element's selector.
                        if (element.HasSelector(ruleSet.Selector))
                        {
                            element.RuleSet = ruleSet;

                            foreach (Rule rule in ruleSet.Rules)
                            {
                                if (rule.Property == "padding-top")
                                {
                                    element.Style.Padding.Top = CSSUnits.ParseValue(rule, element).Value;

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "padding-left")
                                {
                                    element.Style.Padding.Left = CSSUnits.ParseValue(rule, element).Value;

                                    newInheritedStyles.Add(rule);
                                }
                                else if (rule.Property == "padding-right")
                                {
                                    element.Style.Padding.Right = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "padding-bottom")
                                {
                                    element.Style.Padding.Bottom = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "margin-top")
                                {
                                    element.Style.Margin.Top = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "margin-bottom")
                                {
                                    element.Style.Margin.Bottom = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "margin-left")
                                {
                                    element.Style.Margin.Left = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "margin-right")
                                {
                                    element.Style.Margin.Right = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "height")
                                {
                                    element.Style.Size.Height = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "width")
                                {
                                    element.Style.Size.Width = CSSUnits.ParseValue(rule, element).Value;
                                }
                                else if (rule.Property == "background-color")
                                {
                                    element.Style.BackgroundColor = ColorTranslator.FromHtml(rule.Value);
                                }
                                else if (rule.Property == "border")
                                {
                                    float  borderWidth = float.Parse(rule.Value.Split(' ')[0].Split(new string[] { "px" }, StringSplitOptions.None)[0]);
                                    string borderType  = rule.Value.Split(' ')[1];
                                    Color  borderColor = ColorTranslator.FromHtml(rule.Value.Split(' ')[2]);

                                    element.Style.Border = new Border(borderWidth, BorderType.Solid, borderColor);
                                }
                                else if (rule.Property == "display")
                                {
                                    if (rule.Value == "none")
                                    {
                                        element.Style.Display = Display.None;
                                    }
                                    else if (rule.Value == "block")
                                    {
                                        element.Style.Display = Display.Block;
                                    }
                                    else if (rule.Value == "initial")
                                    {
                                        element.Style.Display = Display.Initial;
                                    }
                                    else if (rule.Value == "inherit")
                                    {
                                        element.Style.Display = Display.Inherit;
                                    }
                                    else if (rule.Value == "flex")
                                    {
                                        element.Style.Display = Display.Flex;
                                    }
                                    else if (rule.Value == "inline-flex")
                                    {
                                        element.Style.Display = Display.InlineFlex;
                                    }
                                    else if (rule.Value == "inline-table")
                                    {
                                        element.Style.Display = Display.InlineTable;
                                    }
                                    else if (rule.Value == "inline")
                                    {
                                        element.Style.Display = Display.Inline;
                                    }
                                    else if (rule.Value == "inline-block")
                                    {
                                        element.Style.Display = Display.InlineBlock;
                                    }
                                    else if (rule.Value == "list-item")
                                    {
                                        element.Style.Display = Display.ListItem;
                                    }
                                    else if (rule.Value == "run-in")
                                    {
                                        element.Style.Display = Display.RunIn;
                                    }
                                    else if (rule.Value == "table")
                                    {
                                        element.Style.Display = Display.Table;
                                    }
                                    else if (rule.Value == "table-cell")
                                    {
                                        element.Style.Display = Display.TableCell;
                                    }
                                    else if (rule.Value == "table-row")
                                    {
                                        element.Style.Display = Display.TableRow;
                                    }
                                    else if (rule.Value == "table-caption")
                                    {
                                        element.Style.Display = Display.TableCaption;
                                    }
                                    else if (rule.Value == "table-column-group")
                                    {
                                        element.Style.Display = Display.TableColumnGroup;
                                    }
                                    else if (rule.Value == "table-header-group")
                                    {
                                        element.Style.Display = Display.TableHeaderGroup;
                                    }
                                    else if (rule.Value == "table-footer-group")
                                    {
                                        element.Style.Display = Display.TableFooterGroup;
                                    }
                                    else if (rule.Value == "table-row-group")
                                    {
                                        element.Style.Display = Display.TableRowGroup;
                                    }
                                    else if (rule.Value == "table-column")
                                    {
                                        element.Style.Display = Display.TableColumn;
                                    }
                                }
                            }
                        }
                    }
                }

                // Pass used styles by the current element and its parents, to its children.
                foreach (Rule rule in inheritedStylesCopy)
                {
                    newInheritedStyles.Add(rule);
                }

                if (element.Children.Count > 0)
                {
                    SetStyles(element.Children, ruleSets, newInheritedStyles);
                }
            }
        }