Word.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 » Word.cs
using System.Windows.Media;

namespace Fireball.Syntax{
  /// <summary>
  /// Word types
  /// </summary>
  public enum WordType
  {
    /// <summary>
    /// The word is a normal word/text
    /// </summary>
    xtWord = 0,
    /// <summary>
    /// The word is a space char
    /// </summary>
    xtSpace = 1,
    /// <summary>
    /// The word is a tab char
    /// </summary>
    xtTab = 2
  }

  /// <summary>
  /// The word object class represents a word in a Row object
  /// </summary>
  public sealed class Word
  {
    #region General Declarations

    /// <summary>
    /// The parent row
    /// </summary>
    public Row Row; //the row that holds this word
    /// <summary>
    /// The parent segment
    /// </summary>
    public Segment Segment; //the segment that this word is located in
    /// <summary>
    /// The type of the word
    /// </summary>
    public WordType Type; //word type , space , tab , word
    /// <summary>
    /// The pattern that created this word
    /// </summary>
    public Pattern Pattern; //the pattern that found this word

    /// <summary>
    /// The text of the word
    /// </summary>
    public string Text; //the text in the word
    /// <summary>
    /// The style of the word
    /// </summary>
    public TextStyle Style; //the style of the word
    /// <summary>
    /// Color of the error wave lines
    /// </summary>
    public Color ErrorColor = Colors.Red;

    /// <summary>
    /// True if the word has error wave lines
    /// </summary>
    public bool HasError = false;

    /// <summary>
    /// The ToolTip text for the word
    /// </summary>
    public string InfoTip = null;

    #endregion

    /// <summary>
    /// Gets the index of the word in the parent row
    /// </summary>
    public int Index
    {
      get { return this.Row.IndexOf(this); }
    }

    /// <summary>
    /// Returns the column where the word starts on the containing row.
    /// </summary>
    public int Column
    {
      get
      {
        int x = 0;
        foreach (Word w in this.Row)
        {
          if (w == this)
            return x;
          x += w.Text.Length;
        }
        return -1;
      }
    }


    /// <summary>
    /// 
    /// </summary>
    public Word()
    {
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.