Row.cs :  » Game » Balder » Fireball » Syntax » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Game » Balder 
Balder » Fireball » Syntax » Row.cs
//Original source code coming from Compona.com
/*
 * this file was modified for resolve some bugs removed all try catch because it hide some
 * bug on the code and because aren't speed safe all modification are copyright of 
 * <sebastian.faltoni[at]gmail.com> and are under the LGPL licenze
*/

using System.Collections;
using System.Windows.Media;
using Fireball.Syntax;

namespace Fireball.Syntax{
  /// <summary>
  /// Parser state of a row
  /// </summary>
  public enum RowState
  {
    /// <summary>
    /// the row is not parsed
    /// </summary>
    NotParsed = 0,
    /// <summary>
    /// the row is segment parsed
    /// </summary>
    SegmentParsed = 1,
    /// <summary>
    /// the row is both segment and keyword parsed
    /// </summary>
    AllParsed = 2
  }

  /// <summary>
  /// The row class represents a row in a SyntaxDocument
  /// </summary>
  public sealed class Row : IEnumerable
  {
    #region General Declarations

    private string mText = "";
    internal WordCollection mWords = new WordCollection();

    public WordCollection FormattedWords = new WordCollection();

    /// <summary>
    /// Segments that start on this row
    /// </summary>
    public SegmentCollection StartSegments = new SegmentCollection();

    /// <summary>
    /// Segments that ends in this row
    /// </summary>
    public SegmentCollection EndSegments = new SegmentCollection();

    /// <summary>
    /// The owner document
    /// </summary>
    public SyntaxDocument Document = null;

    /// <summary>
    /// The first collapsable segment on this row.
    /// </summary>
    public Segment StartSegment = null;

    /// <summary>
    /// The first segment that terminates on this row.
    /// </summary>
    public Segment EndSegment = null;

    /// <summary>
    /// 
    /// </summary>
    public Segment Expansion_StartSegment = null;

    /// <summary>
    /// 
    /// </summary>
    public Segment Expansion_EndSegment = null;

    private RowState _RowState = RowState.NotParsed;

    #region PUBLIC PROPERTY BACKCOLOR

    private Color _BackColor = Colors.Transparent;

    public Color BackColor
    {
      get { return _BackColor; }
      set { _BackColor = value; }
    }

    #endregion

    public int Depth
    {
      get
      {
        int i = 0;
        Segment s = this.StartSegment;
        while (s != null)
        {
          if (s.Scope != null && s.Scope.CauseIndent)
            i++;

          s = s.Parent;
        }
        //        if (i>0)
        //          i--;

        if (ShouldOutdent)
          i--;

        return i;
      }
    }

    public bool ShouldOutdent
    {
      get
      {
        if (this.StartSegment.EndRow == this)
        {
          if (this.StartSegment.Scope.CauseIndent)
            return true;
        }

        return false;
      }
    }

    /// <summary>
    /// Collection of Image indices assigned to a row.
    /// </summary>
    /// <example>
    /// <b>Add an image to the current row.</b>
    /// <code>
    /// MySyntaxBox.Caret.CurrentRow.Images.Add(3);
    /// </code>
    /// </example>
    public ImageIndexCollection Images = new ImageIndexCollection();


    /// <summary>
    /// Object tag for storage of custom user data..
    /// </summary>
    /// <example>
    /// <b>Assign custom data to a row</b>
    /// <code>
    /// //custom data class
    /// class CustomData{
    ///    public int    abc=123;
    ///    publci string  def="abc";
    /// }
    /// 
    /// ...
    /// 
    /// //assign custom data to a row
    /// Row MyRow=MySyntaxBox.Caret.CurrentRow;
    /// CustomData MyData=new CustomData();
    /// MyData.abc=1337;
    /// MyRow.Tag=MyData;
    /// 
    /// ...
    /// 
    /// //read custom data from a row
    /// Row MyRow=MySyntaxBox.Caret.CurrentRow;
    /// if (MyRow.Tag != null){
    ///    CustomData MyData=(CustomData)MyRow.Tag;
    ///    if (MyData.abc==1337){
    ///      //Do something...
    ///    }
    /// }
    /// 
    /// 
    /// </code>
    /// </example>
    public object Tag = null;

    /// <summary>
    /// The parse state of this row
    /// </summary>
    /// <example>
    /// <b>Test if the current row is fully parsed.</b>
    /// <code>
    /// if (MySyntaxBox.Caret.CurrentRow.RowState==RowState.AllParsed)
    /// {
    ///    //do something
    /// }
    /// </code>
    /// </example>
    public RowState RowState
    {
      get { return _RowState; }
      set
      {
        if (value == _RowState)
          return;

        if (value == RowState.SegmentParsed && !InKeywordQueue)
        {
          this.Document.KeywordQueue.Add(this);
          this.InKeywordQueue = true;
        }

        if ((value == RowState.AllParsed || value == RowState.NotParsed) && InKeywordQueue)
        {
          this.Document.KeywordQueue.Remove(this);
          this.InKeywordQueue = false;
        }

        _RowState = value;
      }

    }


    //----Lookuptables-----------------
    //    public    char[]          Buffer_Text      =null;
    //  //  public    char[]          Buffer_Separators  =null;
    //---------------------------------

    /// <summary>
    /// Returns true if the row is in the owner documents parse queue
    /// </summary>
    public bool InQueue = false; //is this line in the parseQueue?
    /// <summary>
    /// Returns true if the row is in the owner documents keyword parse queue
    /// </summary>
    public bool InKeywordQueue = false; //is this line in the parseQueue?
    private bool mBookmarked = false; //is this line bookmarked?
    private bool mBreakpoint = false; //Does this line have a breakpoint?
    /// <summary>
    /// For public use only
    /// </summary>
    public int Indent = 0; //value indicating how much this line should be indented (c style)

    /// <summary>
    /// For public use only
    /// </summary>
    public int Expansion_PixelStart = 0;

    /// <summary>
    /// For public use only
    /// </summary>
    public int Expansion_StartChar = 0;

    /// <summary>
    /// For public use only
    /// </summary>
    public int Expansion_PixelEnd = 0;

    /// <summary>
    /// For public use only
    /// </summary>
    public int Expansion_EndChar = 0;

    #endregion

    public void Clear()
    {
      mWords = new WordCollection();
    }

    public Row()
    {
      IsRendered = false;
    }

    /// <summary>
    /// If the row is hidden inside a collapsed segment , call this method to make the collapsed segments expanded.
    /// </summary>
    public void EnsureVisible()
    {
      if (this.RowState == RowState.NotParsed)
        return;

      Segment seg = this.StartSegment;
      while (seg != null)
      {
        seg.Expanded = true;
        seg = seg.Parent;
      }
      this.Document.ResetVisibleRows();
    }

    /// <summary>
    /// Gets or Sets if this row has a bookmark or not.
    /// </summary>
    public bool Bookmarked
    {
      get { return mBookmarked; }
      set
      {
        mBookmarked = value;

        if (value)
          Document.InvokeBookmarkAdded(this);
        else
          Document.InvokeBookmarkRemoved(this);

        Document.InvokeChange();
      }

    }

    /// <summary>
    /// Gets or Sets if this row has a breakpoint or not.
    /// </summary>
    public bool Breakpoint
    {
      get { return mBreakpoint; }
      set
      {
        mBreakpoint = value;
        if (value)
          Document.InvokeBreakPointAdded(this);
        else
          Document.InvokeBreakPointRemoved(this);

        Document.InvokeChange();
      }
    }

    public Word Add(string text)
    {
      Word xw = new Word();
      xw.Row = this;
      xw.Text = text;
      mWords.Add(xw);
      return xw;
    }

    /// <summary>
    /// Returns the number of words in the row.
    /// (this only applied if the row is fully parsed)
    /// </summary>
    public int Count
    {
      get { return mWords.Count; }

    }

    /// <summary>
    /// Gets or Sets the text of the row.
    /// </summary>
    public string Text
    {
      get { return mText; }

      set
      {
        bool ParsePreview = false;
        if (mText != value)
        {
          ParsePreview = true;
          this.Document.Modified = true;
        }

        mText = value;
        if (Document != null)
        {
          if (ParsePreview)
          {
            Document.Parser.ParsePreviewLine(Document.IndexOf(this));
            this.Document.OnApplyFormatRanges(this);
          }

          AddToParseQueue();
        }
      }
    }

    /// <summary>
    /// Adds this row to the parse queue
    /// </summary>
    public void AddToParseQueue()
    {
      if (!InQueue)
        Document.ParseQueue.Add(this);
      InQueue = true;
      this.RowState = RowState.NotParsed;
    }

    /// <summary>
    /// Assigns a new text to the row.
    /// </summary>
    /// <param name="Text"></param>
    public void SetText(string Text)
    {
      this.Document.StartUndoCapture();
      TextPoint tp = new TextPoint(0, this.Index);
      TextRange tr = new TextRange();
      tr.FirstColumn = 0;
      tr.FirstRow = tp.Y;
      tr.LastColumn = this.Text.Length;
      tr.LastRow = tp.Y;

      this.Document.StartUndoCapture();
      //delete the current line
      this.Document.PushUndoBlock(UndoAction.DeleteRange, this.Document.GetRange(tr), tr.FirstColumn, tr.FirstRow);
      //alter the text
      this.Document.PushUndoBlock(UndoAction.InsertRange, Text, tp.X, tp.Y);
      this.Text = Text;
      this.Document.EndUndoCapture();
      this.Document.InvokeChange();
    }

    /*private char[] GetSeparatorBuffer(string text, string separators)
    {
      char[] buff = text.ToCharArray();
      for (int i = 0; i < text.Length; i++)
      {
        char c = buff[i];
        if (separators.IndexOf(c) >= 0)
          buff[i] = ' ';
        else
          buff[i] = '.';
      }
      return buff;
    }*/


    /// <summary>
    /// Call this method to make all words match the case of their patterns.
    /// (this only applies if the row is fully parsed)
    /// </summary>
    public void MatchCase()
    {
      string s = "";
      foreach (Word w in mWords)
      {
        s = s + w.Text;
      }
      mText = s;
    }

    /// <summary>
    /// Get the Word enumerator for this row
    /// </summary>
    /// <returns></returns>
    public IEnumerator GetEnumerator()
    {
      return mWords.GetEnumerator();
    }

    /// <summary>
    /// Return the Word object at the specified index.
    /// </summary>
    public Word this[int index]
    {
      get
      {
        if (index >= 0)
          return (Word)mWords[index];
        else
          return new Word();
      }
    }

    /// <summary>
    /// Force a segment parse on the row.
    /// </summary>
    public void Parse()
    {
      Document.ParseRow(this);
    }

    /// <summary>
    /// Forces the parser to parse this row directly
    /// </summary>
    /// <param name="ParseKeywords">true if keywords and operators should be parsed</param>
    public void Parse(bool ParseKeywords)
    {
      Document.ParseRow(this, ParseKeywords);
    }

    public void SetExpansionSegment()
    {
      this.Expansion_StartSegment = null;
      this.Expansion_EndSegment = null;
      foreach (Segment s in this.StartSegments)
      {
        if (!this.EndSegments.Contains(s))
        {
          this.Expansion_StartSegment = s;
          break;

        }
      }

      foreach (Segment s in this.EndSegments)
      {
        if (!this.StartSegments.Contains(s))
        {
          this.Expansion_EndSegment = s;
          break;
        }
      }

      if (this.Expansion_EndSegment != null)
        this.Expansion_StartSegment = null;
    }

    /// <summary>
    /// Returns the whitespace string at the begining of this row.
    /// </summary>
    /// <returns>a string containing the whitespace at the begining of this row</returns>
    public string GetLeadingWhitespace()
    {
      string s = mText;
      int i = 0;
      s = s.Replace("  ", " ");
      for (i = 0; i < s.Length; i++)
      {
        if (s.Substring(i, 1) == " ")
        {
        }
        else
        {
          break;
        }
      }
      return mText.Substring(0, i);
    }

    public int StartWordIndex
    {
      get
      {
        if (this.Expansion_StartSegment == null)
          return 0;

        //        if (this.Expansion_StartSegment.StartRow != this)
        //          return 0;

        Word w = this.Expansion_StartSegment.StartWord;

        int i = 0;
        foreach (Word wo in this)
        {
          if (wo == w)
            break;
          i += wo.Text.Length;
        }
        return i;
      }
    }

    public Word FirstNonWsWord
    {
      get
      {
        foreach (Word w in this)
        {
          if (w.Type == WordType.xtWord)
            return w;
        }
        return null;
      }
    }

    public string GetVirtualLeadingWhitespace()
    {
      int i = this.StartWordIndex;
      string ws = "";
      foreach (char c in this.Text)
      {
        if (c == '\t')
          ws += c;
        else
          ws += ' ';

        i--;
        if (i <= 0)
          break;
      }
      return ws;
    }

    /// <summary>
    /// Returns the index of this row in the owner SyntaxDocument.
    /// </summary>
    public int Index
    {
      get { return this.Document.IndexOf(this); }
    }

    /// <summary>
    /// Returns the visible index of this row in the owner SyntaxDocument
    /// </summary>
    public int VisibleIndex
    {
      get
      {
        int i = this.Document.VisibleRows.IndexOf(this);
        if (i == -1)
        {
          if (this.StartSegment != null)
          {
            if (this.StartSegment.StartRow != null)
            {
              if (this.StartSegment.StartRow != this)
                return this.StartSegment.StartRow.VisibleIndex;
              else
                return this.Index;
            }
            else
              return this.Index;
          }
          else
            return this.Index;
        }
        else
          return this.Document.VisibleRows.IndexOf(this);
      }
    }

    /// <summary>
    /// Returns the next visible row.
    /// </summary>
    public Row NextVisibleRow
    {
      get
      {
        int i = this.VisibleIndex;
        if (i > this.Document.VisibleRows.Count)
          return null;

        if (i + 1 < this.Document.VisibleRows.Count)
        {
          return this.Document.VisibleRows[i + 1];
        }
        else
          return null;
      }
    }

    /// <summary>
    /// Returns the next row
    /// </summary>
    public Row NextRow
    {
      get
      {

        int i = this.Index;
        if (i + 1 <= this.Document.Lines.Length - 1)
          return this.Document[i + 1];
        else
          return null;
      }
    }

    /// <summary>
    /// Returns the first visible row before this row.
    /// </summary>
    public Row PrevVisibleRow
    {
      get
      {

        int i = this.VisibleIndex;
        if (i < 0)
          return null;

        if (i - 1 >= 0)
          return this.Document.VisibleRows[i - 1];
        else
          return null;
      }
    }

    /// <summary>
    /// Returns true if the row is collapsed
    /// </summary>
    public bool IsCollapsed
    {
      get
      {
        if (this.Expansion_StartSegment != null)
          if (this.Expansion_StartSegment.Expanded == false)
            return true;
        return false;
      }
    }

    /// <summary>
    /// Returns true if this row is the last part of a collepsed segment
    /// </summary>
    public bool IsCollapsedEndPart
    {
      get
      {
        if (this.Expansion_EndSegment != null)
          if (this.Expansion_EndSegment.Expanded == false)
            return true;
        return false;
      }
    }


    /// <summary>
    /// Returns true if this row can fold
    /// </summary>
    public bool CanFold
    {
      get { return (this.Expansion_StartSegment != null && this.Expansion_StartSegment.EndRow != null && this.Document.IndexOf(this.Expansion_StartSegment.EndRow) != 0); }
    }

    /// <summary>
    /// Gets or Sets if this row is expanded.
    /// </summary>
    public bool Expanded
    {
      get
      {
        if (this.CanFold)
        {
          return (this.Expansion_StartSegment.Expanded);
        }
        else
        {
          return false;
        }
      }
      set
      {
        if (this.CanFold)
        {
          this.Expansion_StartSegment.Expanded = value;
        }
      }
    }

    public string ExpansionText
    {
      get { return this.Expansion_StartSegment.Scope.ExpansionText; }
      set
      {
        Scope oScope = this.Expansion_StartSegment.Scope;
        Scope oNewScope = new Scope();
        oNewScope.CaseSensitive = oScope.CaseSensitive;
        oNewScope.CauseIndent = oScope.CauseIndent;
        oNewScope.DefaultExpanded = oScope.DefaultExpanded;
        oNewScope.EndPatterns = oScope.EndPatterns;
        oNewScope.NormalizeCase = oScope.NormalizeCase;
        oNewScope.Parent = oScope.Parent;
        oNewScope.SpawnBlockOnEnd = oScope.SpawnBlockOnEnd;
        oNewScope.SpawnBlockOnStart = oScope.SpawnBlockOnStart;
        oNewScope.Start = oScope.Start;
        oNewScope.Style = oScope.Style;
        oNewScope.ExpansionText = value;
        this.Expansion_StartSegment.Scope = oNewScope;
        this.Document.InvokeChange();
      }
    }

    /// <summary>
    /// Returns true if this row is the end part of a collapsable segment
    /// </summary>
    public bool CanFoldEndPart
    {
      get { return (this.Expansion_EndSegment != null); }
    }

    /// <summary>
    /// For public use only
    /// </summary>
    public bool HasExpansionLine
    {
      get
      {
        return (this.EndSegment.Parent != null);
      }
    }

    /// <summary>
    /// Returns the last row of a collapsable segment
    /// (this only applies if this row is the start row of the segment)
    /// </summary>
    public Row Expansion_EndRow
    {
      get
      {
        if (this.CanFold)
          return this.Expansion_StartSegment.EndRow;
        else
          return this;
      }
    }

    /// <summary>
    /// Returns the first row of a collapsable segment
    /// (this only applies if this row is the last row of the segment)
    /// </summary>
    public Row Expansion_StartRow
    {
      get
      {
        if (this.CanFoldEndPart)
          return this.Expansion_EndSegment.StartRow;
        else
          return this;
      }
    }

    /// <summary>
    /// Adds a word object to this row
    /// </summary>
    /// <param name="word">Word object</param>
    public void Add(Word word)
    {
      this.mWords.Add(word);
    }

    /// <summary>
    /// For public use only
    /// </summary>
    public Row VirtualCollapsedRow
    {
      get
      {
        Row r = new Row();

        foreach (Word w in this)
        {
          if (this.Expansion_StartSegment == w.Segment)
            break;
          r.Add(w);
        }

        Word wo = r.Add(this.CollapsedText);
        wo.Style = new TextStyle();
        wo.Style.BackColor = new Color().FromHex("#FFC0C0C0");
        wo.Style.ForeColor = new Color().FromHex("#FF00008B");
        wo.Style.Bold = true;

        bool found = false;
        if (this.Expansion_EndRow != null)
        {
          foreach (Word w in this.Expansion_EndRow)
          {
            if (found)
              r.Add(w);
            if (w == this.Expansion_EndRow.Expansion_EndSegment.EndWord)
              found = true;
          }
        }
        return r;
      }
    }

    /// <summary>
    /// Returns the text that should be displayed if the row is collapsed.
    /// </summary>
    public string CollapsedText
    {
      get
      {
        string str = "";
        int pos = 0;
        foreach (Word w in this)
        {
          pos += w.Text.Length;
          if (w.Segment == this.Expansion_StartSegment)
          {
            str = this.Text.Substring(pos).Trim();
            break;
          }
        }
        if (this.Expansion_StartSegment.Scope.ExpansionText != "")
          str = this.Expansion_StartSegment.Scope.ExpansionText.Replace("***", str);
        return str;
      }
    }

    /// <summary>
    /// Returns the index of a specific Word object
    /// </summary>
    /// <param name="word">Word object to find</param>
    /// <returns>index of the word in the row</returns>
    public int IndexOf(Word word)
    {
      return mWords.IndexOf(word);
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="PatternList"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindRightWordByPatternList(PatternList PatternList, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i++;
      Word w = null;
      while (i < mWords.Count)
      {
        w = this[i];
        if (w.Pattern != null)
        {
          if (w.Pattern.Parent != null)
          {
            if (w.Pattern.Parent == PatternList && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
            {
              return w;
            }
          }
        }
        i++;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="PatternListName"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindRightWordByPatternListName(string PatternListName, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i++;

      Word w = null;
      while (i < mWords.Count)
      {
        w = this[i];
        if (w.Pattern != null)
        {
          if (w.Pattern.Parent != null)
          {
            if (w.Pattern.Parent.Name == PatternListName && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
            {
              return w;
            }
          }
        }
        i++;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="PatternList"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindLeftWordByPatternList(PatternList PatternList, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i--;
      Word w = null;
      while (i >= 0)
      {
        w = this[i];
        if (w.Pattern != null)
        {
          if (w.Pattern.Parent != null)
          {
            if (w.Pattern.Parent == PatternList && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
            {
              return w;
            }
          }
        }
        i--;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="PatternListName"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindLeftWordByPatternListName(string PatternListName, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i--;

      Word w = null;
      while (i >= 0)
      {
        w = this[i];
        if (w.Pattern != null)
        {
          if (w.Pattern.Parent != null)
          {
            if (w.Pattern.Parent.Name == PatternListName && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
            {
              return w;
            }
          }
        }
        i--;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="BlockType"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindLeftWordByBlockType(BlockType BlockType, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i--;
      Word w = null;
      while (i >= 0)
      {
        w = this[i];
        if (w.Segment.BlockType == BlockType && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
        {
          return w;
        }
        i--;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="BlockType"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindRightWordByBlockType(BlockType BlockType, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i++;
      Word w = null;
      while (i < mWords.Count)
      {
        w = this[i];
        if (w.Segment.BlockType == BlockType && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
        {
          return w;
        }
        i++;
      }
      return null;
    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="BlockTypeName"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindLeftWordByBlockTypeName(string BlockTypeName, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i--;
      Word w = null;
      while (i >= 0)
      {
        w = this[i];
        if (w.Segment.BlockType.Name == BlockTypeName && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
        {
          return w;
        }
        i--;
      }
      return null;


    }

    /// <summary>
    /// For public use only
    /// </summary>
    /// <param name="BlockTypeName"></param>
    /// <param name="StartWord"></param>
    /// <param name="IgnoreStartWord"></param>
    /// <returns></returns>
    public Word FindRightWordByBlockTypeName(string BlockTypeName, Word StartWord, bool IgnoreStartWord)
    {
      int i = StartWord.Index;
      if (IgnoreStartWord)
        i++;
      Word w = null;
      while (i < mWords.Count)
      {
        w = this[i];
        if (w.Segment.BlockType.Name == BlockTypeName && w.Type != WordType.xtSpace && w.Type != WordType.xtTab)
        {
          return w;
        }
        i++;
      }
      return null;
    }

    /// <summary>
    /// Returns the row before this row.
    /// </summary>
    public Row PrevRow
    {
      get
      {

        int i = this.Index;

        if (i - 1 >= 0)
          return this.Document[i - 1];
        else
          return null;
      }
    }
    
    public bool IsRendered { get; set; }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.