Ejemplo n.º 1
0
        /// <summary>
        /// Get each paragraph xml element's attributes to update their style.
        /// </summary>
        private void UpdateElementColor(InDesign.XMLElement p_element)
        {
            InDesign.Paragraph  paragraph = null;
            InDesign.XMLElement element   = null;

            if (p_element.Paragraphs.Count > 0)
            {
                element = p_element;
            }
            else if (((InDesign.XMLElement)p_element.Parent).Paragraphs.Count > 0)
            {
                element = (InDesign.XMLElement)p_element.Parent;
            }

            if (element != null)
            {
                InDesign.Color color = null;

                for (int ii = 0; ii < element.Paragraphs.Count; ii++)
                {
                    if (ii == 0)
                    {
                        paragraph = (InDesign.Paragraph)element.Paragraphs.FirstItem();
                    }
                    else
                    {
                        paragraph = (InDesign.Paragraph)element.Paragraphs.NextItem(paragraph);
                    }

                    color = UpdateParagraphColor(paragraph, color);
                }
            }
        }
Ejemplo n.º 2
0
        private void CheckByChar(InDesign.Paragraph paragraph)
        {
            int count = paragraph.Characters.Count;

            InDesign.Character cha = null;

            for (int i = 0; i < count; i++)
            {
                if (i == 0)
                {
                    cha = (InDesign.Character)paragraph.Characters.FirstItem();
                }
                else
                {
                    cha = (InDesign.Character)paragraph.Characters.NextItem(cha);
                }

                InDesign.Color color = (InDesign.Color)cha.FillColor;

                if (color != null && !color.Name.StartsWith(S_COLOR_PRE))
                {
                    InDesign.Character nextcha = null;
                    InDesign.Character precha  = null;
                    try
                    {
                        nextcha = (InDesign.Character)paragraph.Characters.NextItem(cha);
                        while (nextcha != null && nextcha.FillColor != null &&
                               !((InDesign.Color)nextcha.FillColor).Name.StartsWith(S_COLOR_PRE))
                        {
                            nextcha = (InDesign.Character)paragraph.Characters.NextItem(nextcha);
                        }
                    }
                    catch { }
                    try
                    {
                        precha = (InDesign.Character)paragraph.Characters.PreviousItem(cha);
                        while (precha != null && precha.FillColor != null &&
                               !((InDesign.Color)precha.FillColor).Name.StartsWith(S_COLOR_PRE))
                        {
                            precha = (InDesign.Character)paragraph.Characters.PreviousItem(precha);
                        }
                    }
                    catch { }

                    if (nextcha != null && nextcha.FillColor != null &&
                        ((InDesign.Color)nextcha.FillColor).Name.StartsWith(S_COLOR_PRE))
                    {
                        cha.FillColor = nextcha.FillColor;
                    }
                    else if (precha != null && precha.FillColor != null &&
                             ((InDesign.Color)precha.FillColor).Name.StartsWith(S_COLOR_PRE))
                    {
                        cha.FillColor = precha.FillColor;
                    }
                }
            }
        }
Ejemplo n.º 3
0
        private void UpdateTableStyle(InDesign.Paragraph p_paragraph)
        {
            InDesign.Table     table = null;
            InDesign.Cell      cell  = null;
            InDesign.Paragraph p     = null;
            // update tables styles if paragraph has tables.
            for (int t = 0; t < p_paragraph.Tables.Count; t++)
            {
                if (t == 0)
                {
                    table = (InDesign.Table)p_paragraph.Tables.FirstItem();
                }
                else
                {
                    table = (InDesign.Table)p_paragraph.Tables.NextItem(table);
                }

                // update cells one by one
                for (int i = 0; i < table.Cells.Count; i++)
                {
                    if (i == 0)
                    {
                        cell = (InDesign.Cell)table.Cells.FirstItem();
                    }
                    else
                    {
                        cell = (InDesign.Cell)table.Cells.NextItem(cell);
                    }

                    InDesign.Color      color = null;
                    InDesign.Paragraphs ps    = cell.Paragraphs;

                    for (int j = 0; j < ps.Count; j++)
                    {
                        if (j == 0)
                        {
                            p = (InDesign.Paragraph)ps.FirstItem();
                        }
                        else
                        {
                            p = (InDesign.Paragraph)ps.NextItem(p);
                        }

                        color = UpdateParagraphColor(p, color);
                    }
                }
            }
        }
Ejemplo n.º 4
0
        private InDesign.Color UpdateParagraphColor(InDesign.Paragraph paragraph, InDesign.Color color)
        {
            int wordsCount = paragraph.Words.Count;

            InDesign.Word lastWord = null;
            ContentColor  lastcc   = null;

            for (int i = 0; i < wordsCount; i++)
            {
                InDesign.Word word = null;
                if (i == 0)
                {
                    word = (InDesign.Word)paragraph.Words.FirstItem();
                }
                else
                {
                    word = (InDesign.Word)paragraph.Words.NextItem(lastWord);
                }

                if (lastWord != null && lastcc != null)
                {
                    lastWord.Contents  = lastcc.Content;
                    lastWord.FillColor = lastcc.Color;
                }

                string       content = word.Contents.ToString();
                ContentColor cc      = DetermineColor(content, color);
                color    = cc.Color;
                lastWord = word;
                lastcc   = cc;
            }

            if (lastWord != null && lastcc != null)
            {
                lastWord.Contents  = lastcc.Content;
                lastWord.FillColor = lastcc.Color;
            }

            //CheckByChar(paragraph);

            UpdateTableStyle(paragraph);

            return(color);
        }
Ejemplo n.º 5
0
        private void addOneColor(string colorName, double[] colorValue)
        {
            string colorKey = S_COLOR_PRE + colorName;

            InDesign.Color color      = null;
            InDesign.Color existColor = null;
            InDesign.Color oriColor   = null;

            for (int i = 0; i < m_inDesignDoc.Colors.Count; i++)
            {
                if (i == 0)
                {
                    existColor = (InDesign.Color)m_inDesignDoc.Colors.FirstItem();
                }
                else
                {
                    existColor = (InDesign.Color)m_inDesignDoc.Colors.NextItem(existColor);
                }

                if (oriColor == null && existColor.Name.Length > 0)
                {
                    oriColor = existColor;
                }

                if (existColor.Name.Equals(colorKey))
                {
                    color = existColor;
                    break;
                }
            }

            if (color == null)
            {
                color            = oriColor.Duplicate();
                color.Name       = colorKey;
                color.ColorValue = colorValue;
            }

            colorTable.Add(colorKey, color);
        }
Ejemplo n.º 6
0
        private ContentColor DetermineColor(string content, InDesign.Color lastColor)
        {
            InDesign.Color defaultColor = (InDesign.Color)colorTable[S_COLOR_PRE + "black"];

            /*
             * ((GS_COLOR_START)(Black))This is content 1 fr.
             * ((GS_COLOR_END)(Black))((GS_COLOR_START)(Blue))This
             * is content 2 fr.
             * ((GS_COLOR_END)(Blue))((GS_COLOR_START)(Black))
             * This is content 3 fr.((GS_COLOR_END)(Black)) */

            InDesign.Color color = lastColor == null ? defaultColor : lastColor;
            Match          m     = regS.Match(content);

            if (m != null && m.Success)
            {
                string colorHere = m.Groups[1].Value;
                color = (InDesign.Color)colorTable[S_COLOR_PRE + colorHere.ToLower()];

                if (color == null)
                {
                    color = lastColor == null ? defaultColor : lastColor;
                }
            }

            string newContent = regS.Replace(content, "");

            newContent = regE.Replace(newContent, "");

            ContentColor cc = new ContentColor();

            cc.Color   = color;
            cc.Content = newContent;

            return(cc);
        }