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

namespace Fireball.Syntax{
  /// <summary>
  /// Printer document class.
  /// </summary>
  /// <example >
  /// 
  /// 
  /// <b>Print the content of a SyntaxDocument:</b>
  /// <code>
  /// SourceCodePrintDocument PrintDoc=new SourceCodePrintDocument(MySyntaxDocument);
  ///
  ///  PrintDialog1.Document =PrintDoc;
  ///  if (PrintDialog1.ShowDialog ()==DialogResult.OK)
  ///    PrintDoc.Print ();
  /// </code>
  /// <hr/>
  /// <b>Print Preview the content of a SyntaxDocument</b>
  /// <code>
  /// SourceCodePrintDocument PrintDoc=new SourceCodePrintDocument(MySyntaxDocument);
  /// PrintPreviewDialog1.Document = PrintDoc
  /// PrintPreviewDialog1.ShowDialog ();
  /// </code>
  /// </example>
  public class SourceCodePrintDocument
  {
    private Font fontNormal = null;
    private Font fontBreak  = null;
    private int RowIndex = 0;


    private SyntaxDocument _Document = null;
    private RowCollection rc = null;

    public SyntaxDocument Document
    {
      get { return _Document; }
      set { _Document = value; }

    }

    public SourceCodePrintDocument() : base()
    {
    }

    public SourceCodePrintDocument(SyntaxDocument document) : base()
    {
      this.Document = document;
    }

    //Override OnBeginPrint to set up the font we are going to use
    /*protected override void OnBeginPrint(PrintEventArgs ev)
    {
      base.OnBeginPrint(ev);
      fontNormal = new Font("Courier new", 8, FontStyle.Regular);
      fontBreak = new Font("Symbol", 8, FontStyle.Bold);
      RowIndex = 0;
    }

    //Override the OnPrintPage to provide the printing logic for the document
    protected override void OnPrintPage(PrintPageEventArgs ev)
    {
      float lpp = 0;
      float yPos = 0;
      int count = 0;
      float leftMargin = ev.MarginBounds.Left;
      float rightMargin = ev.MarginBounds.Right;
      float topMargin = ev.MarginBounds.Top;
      //ev.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit;

      if (rc == null)
      {
        Document.ParseAll();
        Document.ParseAll(true);


        rc = new RowCollection();
        foreach (Row r in Document)
        {
          bool hasbreak = false;
          float x = leftMargin;
          Row newRow = new Row();
          rc.Add(newRow);
          foreach (Word w in r)
          {
            Font f = fontNormal;
            if (w.Style != null)
            {
              FontStyle fs = 0;

              if (w.Style.Bold)
                fs |= FontStyle.Bold;

              if (w.Style.Italic)
                fs |= FontStyle.Italic;

              if (w.Style.Underline)
                fs |= FontStyle.Underline;

              f = new Font("Courier new", 8, fs);
            }
            SizeF sf = ev.Graphics.MeasureString(w.Text, f);
            if (x + sf.Width > rightMargin)
            {
              char chr = (char) 0xbf;
              Word br = new Word();
              br.Text = chr + "";
              br.InfoTip = "break char";
              newRow.Add(br);
              hasbreak = true;


              newRow = new Row();
              rc.Add(newRow);
              x = leftMargin;
            }
            x += sf.Width;
            newRow.Add(w);


          }
          if (hasbreak)
          {
            rc.Add(new Row());
          }
        }
      }
      //------------------------------------------------------

      base.OnPrintPage(ev);


      lpp = ev.MarginBounds.Height/fontNormal.GetHeight(ev.Graphics);


      while (count < lpp && (RowIndex < rc.Count))
      {
        float x = leftMargin;
        yPos = topMargin + (count*fontNormal.GetHeight(ev.Graphics));

        Row r = rc[RowIndex];

        foreach (Word w in r)
        {
          if (w.InfoTip != null && w.InfoTip == "break char")
          {
            ev.Graphics.DrawString(w.Text, fontBreak, Brushes.Black, x, yPos, new StringFormat());
          }
          else
          {
            SizeF sf = ev.Graphics.MeasureString(w.Text, fontNormal);

            if (w.Text != null && (".,:;".IndexOf(w.Text) >= 0))
            {
              sf.Width = 6;
              x -= 4;
            }
            if (w.Text == "\t")
            {
              sf.Width = ev.Graphics.MeasureString("...", fontNormal).Width;
            }


            Color c = Color.Black;
            Font f = fontNormal;
            if (w.Style != null)
            {
              c = w.Style.ForeColor;
              FontStyle fs = 0;

              if (w.Style.Bold)
                fs |= FontStyle.Bold;

              if (w.Style.Italic)
                fs |= FontStyle.Italic;

              if (w.Style.Underline)
                fs |= FontStyle.Underline;

              f = new Font("Courier new", 8, fs);

              if (!w.Style.Transparent)
              {
                Color bg = w.Style.BackColor;
                ev.Graphics.FillRectangle(new SolidBrush(bg), x, yPos, sf.Width, fontNormal.GetHeight(ev.Graphics));


              }

            }

            c = Color.FromArgb(c.R, c.G, c.B);


            ev.Graphics.DrawString(w.Text, f, new SolidBrush(c), x, yPos, new StringFormat());
            x += sf.Width;
          }
        }

        count++;
        RowIndex++;
      }

      //If we have more lines then print another page
      if (RowIndex < rc.Count)
        ev.HasMorePages = true;
      else
        ev.HasMorePages = false;
    }*/

  }
  
  public class Font
  {

  }

}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.