pdfPageMarker.cs :  » PDF » SharpPDF » sharpPDF » 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 » PDF » SharpPDF 
SharpPDF » sharpPDF » pdfPageMarker.cs
using System;
using System.Text;

using sharpPDF.Fonts;
using sharpPDF.Enumerators;

namespace sharpPDF{
  /// <summary>
  /// Class that implements a pdf page marker
  /// </summary>
  public class pdfPageMarker
  {

    private predefinedMarkerStyle _style = predefinedMarkerStyle.csArabic;
    private int _coordX;
    private int _coordY;
    private pdfAbstractFont _fontType;
    private int _fontSize;
    private pdfColor _fontColor;
    private string _pattern;

    /// <summary>
    /// X position of the marker
    /// </summary>
    public int coordX
    {
      get
      {
        return _coordX;
      }
      set
      {
        _coordX = value;
      }
    }

    /// <summary>
    /// Y position of the marker
    /// </summary>
    public int coordY
    {
      get
      {
        return _coordY;
      }
      set
      {
        _coordY = value;
      }
    }

    /// <summary>
    /// Font's type
    /// </summary>
    public pdfAbstractFont fontType
    {
      get
      {
        return _fontType;
      }
      set
      {
        _fontType = value;
      }
    }

    /// <summary>
    /// Font's size
    /// </summary>
    public int fontSize
    {
      get
      {
        return _fontSize;
      }
      set
      {
        _fontSize = value;
      }
    }

    /// <summary>
    /// Marker's color
    /// </summary>
    public pdfColor fontColor
    {
      get
      {
        return _fontColor;
      }
      set
      {
        _fontColor = value;
      }
    }

    /// <summary>
    /// Marker's pattern. In the pattern there are two simbols: #n# (that represents the
    /// actual page) and #N# (that represents the number of pages).
    /// The Default pattern is : "Page #n# Of #N#"
    /// </summary>
    /// <example>
    /// This example shows how to use the pattern property:
    /// <code>
    /// pdfPageMarker marker = new pdfPageMarker(400,30);
    /// marker.pattern = "Page #n#/#N#";
    /// myDoc.pageMarker = marker
    /// ......
    /// ......
    /// </code>
    /// The result on the document is : "Page 1/2"
    /// </example>
    public string pattern
    {
      get
      {
        return _pattern;
      }
      set
      {
        _pattern = value;
      }
    }

    /// <summary>
    /// Class's constructor
    /// </summary>
    /// <param name="coordX">X position in the PDF document</param>
    /// <param name="coordY">Y position in the PDF document</param>
    /// <param name="style">Marker's style</param>
    /// <param name="fontReference">Font's reference object</param>
    /// <param name="fontSize">Font's Size</param>
    public pdfPageMarker(int coordX, int coordY, predefinedMarkerStyle style, pdfAbstractFont fontReference, int fontSize):this(coordX, coordY, style, fontReference, fontSize, pdfColor.Black, "Page #n# Of #N#")
    {    
    }

    /// <summary>
    /// Class's constructor
    /// </summary>
    /// <param name="coordX">X position in the PDF document</param>
    /// <param name="coordY">Y position in the PDF document</param>
    /// <param name="style">Marker's style</param>
    /// <param name="fontReference">Font's reference object</param>
    /// /// <param name="fontSize">Font's Size</param>
    /// <param name="fontColor">Font's Color</param>    
    public pdfPageMarker(int coordX, int coordY, predefinedMarkerStyle style, pdfAbstractFont fontReference, int fontSize, pdfColor fontColor):this(coordX, coordY, style, fontReference, fontSize, fontColor, "Page #n# Of #N#")
    {
    }

    /// <summary>
    /// Class's constructor
    /// </summary>
    /// <param name="coordX">X position in the PDF document</param>
    /// <param name="coordY">Y position in the PDF document</param>
    /// <param name="style">Marker's style</param>
    /// <param name="fontReference">Font's reference object</param>
    /// <param name="fontSize">Font's Size</param>
    /// <param name="pattern">Page Marker's Pattern</param>
    public pdfPageMarker(int coordX, int coordY, predefinedMarkerStyle style, pdfAbstractFont fontReference, int fontSize, string pattern):this(coordX, coordY, style, fontReference, fontSize, pdfColor.Black, pattern)
    {
    }

    /// <summary>
    /// Class's constructor
    /// </summary>
    /// <param name="coordX">X position in the PDF document</param>
    /// <param name="coordY">Y position in the PDF document</param>
    /// <param name="style">Marker's style</param>
    /// <param name="fontReference">Font's reference object</param>
    /// <param name="fontSize">Font's Size</param>
    /// <param name="fontColor">Font's Color</param>
    /// <param name="pattern">Page Marker's Pattern</param>
    public pdfPageMarker(int coordX, int coordY, predefinedMarkerStyle style, pdfAbstractFont fontReference, int fontSize, pdfColor fontColor, string pattern)
    {
      _style = style;
      _coordX = coordX;
      _coordY = coordY;
      _fontType = fontReference;
      _fontSize = fontSize;
      _fontColor = fontColor;
      _pattern = pattern;
    }

    /// <summary>
    /// Method that creates a string for the page's marker
    /// </summary>
    /// <param name="pgIndex">Actual page</param>
    /// <param name="pgNum">Number of pages</param>
    /// <returns>Text that represents page's marker</returns>
    public string getMarker(int pgIndex, int pgNum)
    {
      string strPgIndex;
      string strPgNum;
      switch (_style) {
        case predefinedMarkerStyle.csArabic:
        default:
          strPgIndex = pgIndex.ToString();
          strPgNum = pgNum.ToString();
          break;
                case predefinedMarkerStyle.csRoman:
          strPgIndex = arabicToRoman(pgIndex);
          strPgNum = arabicToRoman(pgNum);
          break;
      }
      return _pattern.Replace("#n#",strPgIndex).Replace("#N#",strPgNum);
    }

    /// <summary>
    /// Private method that converts arabic numbers into roman numbers
    /// </summary>
    /// <param name="arabic">Arabic number</param>
    /// <returns>Equivalent roman number</returns>
    private string arabicToRoman(int arabic)
    {      
      StringBuilder roman = new StringBuilder();

      while (arabic - 1000000 >= 0) {
        roman.Append("m");
        arabic -= 1000000;
      }

      while (arabic - 900000 >= 0){
        roman.Append("cm");
        arabic -= 900000;
      }

      while (arabic - 500000 >= 0){
        roman.Append("d");
        arabic -= 500000;
      }

      while (arabic - 400000 >= 0){
        roman.Append("cd");
        arabic -= 400000;
      }

      while (arabic - 100000 >= 0){
        roman.Append("c");
        arabic -= 100000;
      }

      while (arabic - 90000 >= 0){
        roman.Append("xc");
        arabic -= 90000;
      }

      while (arabic - 50000 >= 0){
        roman.Append("l");
        arabic -= 50000;
      }

      while (arabic - 40000 >= 0){
        roman.Append("xl");
        arabic -= 40000;
      }

      while (arabic - 10000 >= 0){
        roman.Append("x");
        arabic -= 10000;
      }

      while (arabic - 9000 >= 0){
        roman.Append("Mx");
        arabic -= 9000;
      }

      while (arabic - 5000 >= 0){
        roman.Append("v");
        arabic -= 5000;
      }

      while (arabic - 4000 >= 0){
        roman.Append("Mv");
        arabic -= 4000;
      }

      while (arabic - 1000 >= 0){
        roman.Append("M");
        arabic -= 1000;
      }

      while (arabic - 900 >= 0){
        roman.Append("CM");
        arabic -= 900;
      }

      while (arabic - 500 >= 0){
        roman.Append("D");
        arabic -= 500;
      }

      while (arabic - 400 >= 0){
        roman.Append("CD");
        arabic -= 400;
      }

      while (arabic - 100 >= 0){
        roman.Append("C");
        arabic -= 100;
      }

      while (arabic - 90 >= 0){
        roman.Append("XC");
        arabic -= 90;
      }

      while (arabic - 50 >= 0){
        roman.Append("L");
        arabic -= 50;
      }

      while (arabic - 40 >= 0){
        roman.Append("XL");
        arabic -= 40;
      }

      while (arabic - 10 >= 0){
        roman.Append("X");
        arabic -= 10;
      }

      while (arabic - 9 >= 0){
        roman.Append("IX");
        arabic -= 9;
      }

      while (arabic - 5 >= 0){
        roman.Append("V");
        arabic -= 5;
      }

      while (arabic - 4 >= 0){
        roman.Append("IV");
        arabic -= 4;
      }

      while (arabic - 1 >= 0){
        roman.Append("I");
        arabic -= 1;
      }

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