Transition.cs :  » PDF » PDF-Clown » it » stefanochizzolini » clown » documents » interaction » navigation » page » 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 » PDF Clown 
PDF Clown » it » stefanochizzolini » clown » documents » interaction » navigation » page » Transition.cs
/*
  Copyright 2008 Stefano Chizzolini. http://clown.stefanochizzolini.it

  Contributors:
    * Stefano Chizzolini (original code developer, http://www.stefanochizzolini.it)

  This file should be part of the source code distribution of "PDF Clown library"
  (the Program): see the accompanying README files for more info.

  This Program is free software; you can redistribute it and/or modify it under
  the terms of the GNU General Public License as published by the Free Software
  Foundation; either version 2 of the License, or (at your option) any later version.

  This Program is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY, either expressed or implied; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more details.

  You should have received a copy of the GNU General Public License along with this
  Program (see README files); if not, go to the GNU website (http://www.gnu.org/).

  Redistribution and use, with or without modification, are permitted provided that such
  redistributions retain the above copyright notice, license and disclaimer, along with
  this list of conditions.
*/

using it.stefanochizzolini.clown.documents;
using it.stefanochizzolini.clown.objects;

using System;
using System.Collections.Generic;

namespace it.stefanochizzolini.clown.documents.interaction.navigation.page{
  /**
    <summary>Visual transition to use when moving to a page during a presentation [PDF:1.6:8.3.3].</summary>
  */
  public class Transition
    : PdfObjectWrapper<PdfDictionary>
  {
    #region types
    /**
      <summary>Transition direction [PDF:1.6:8.3.3].</summary>
    */
    public enum DirectionEnum
    {
      /**
        <summary>Left to right.</summary>
      */
      LeftToRight,
      /**
        <summary>Bottom to top.</summary>
      */
      BottomToTop,
      /**
        <summary>Right to left.</summary>
      */
      RightToLeft,
      /**
        <summary>Top to bottom.</summary>
      */
      TopToBottom,
      /**
        <summary>Top-left to bottom-right.</summary>
      */
      TopLeftToBottomRight,
      /**
        <summary>None.</summary>
      */
      None
    };

    /**
      <summary>Transition orientation [PDF:1.6:8.3.3].</summary>
    */
    public enum OrientationEnum
    {
      /**
        <summary>Horizontal.</summary>
      */
      Horizontal,
      /**
        <summary>Vertical.</summary>
      */
      Vertical
    };

    /**
      <summary>Transition direction on page [PDF:1.6:8.3.3].</summary>
    */
    public enum PageDirectionEnum
    {
      /**
        <summary>Inward (from the edges of the page).</summary>
      */
      Inward,
      /**
        <summary>Outward (from the center of the page).</summary>
      */
      Outward
    };

    /**
      <summary>Transition style [PDF:1.6:8.3.3].</summary>
    */
    public enum StyleEnum
    {
      /**
        <summary>Two lines sweep across the screen, revealing the page.</summary>
      */
      Split,
      /**
        <summary>Multiple lines sweep across the screen, revealing the page.</summary>
      */
      Blinds,
      /**
        <summary>A rectangular box sweeps between the edges of the page and the center.</summary>
      */
      Box,
      /**
        <summary>A single line sweeps across the screen from one edge to the other.</summary>
      */
      Wipe,
      /**
        <summary>The old page dissolves gradually.</summary>
      */
      Dissolve,
      /**
        <summary>The old page dissolves gradually sweeping across the page in a wide band
        moving from one side of the screen to the other.</summary>
      */
      Glitter,
      /**
        <summary>No transition.</summary>
      */
      Replace,
      /**
        <summary>Changes are flown across the screen.</summary>
      */
      Fly,
      /**
        <summary>The page slides in, pushing away the old one.</summary>
      */
      Push,
      /**
        <summary>The page slides on to the screen, covering the old one.</summary>
      */
      Cover,
      /**
        <summary>The old page slides off the screen, uncovering the new one.</summary>
      */
      Uncover,
      /**
        <summary>The new page reveals gradually.</summary>
      */
      Fade
    };
    #endregion

    #region static
    #region fields
    private static readonly Dictionary<DirectionEnum,PdfDirectObject> DirectionEnumCodes;
    private static readonly Dictionary<OrientationEnum,PdfName> OrientationEnumCodes;
    private static readonly Dictionary<PageDirectionEnum,PdfName> PageDirectionEnumCodes;
    private static readonly Dictionary<StyleEnum,PdfName> StyleEnumCodes;

    private static readonly DirectionEnum DefaultDirection = DirectionEnum.LeftToRight;
    private static readonly double DefaultDuration = 1;
    private static readonly OrientationEnum DefaultOrientation = OrientationEnum.Horizontal;
    private static readonly PageDirectionEnum DefaultPageDirection = PageDirectionEnum.Inward;
    private static readonly double DefaultScale = 1;
    private static readonly StyleEnum DefaultStyle = StyleEnum.Replace;
    #endregion

    #region constructors
    static Transition()
    {
      DirectionEnumCodes = new Dictionary<DirectionEnum,PdfDirectObject>();
      DirectionEnumCodes[DirectionEnum.LeftToRight] = new PdfInteger(0);
      DirectionEnumCodes[DirectionEnum.BottomToTop] = new PdfInteger(90);
      DirectionEnumCodes[DirectionEnum.RightToLeft] = new PdfInteger(180);
      DirectionEnumCodes[DirectionEnum.TopToBottom] = new PdfInteger(270);
      DirectionEnumCodes[DirectionEnum.TopLeftToBottomRight] = new PdfInteger(315);
      DirectionEnumCodes[DirectionEnum.None] = PdfName.None;

      OrientationEnumCodes = new Dictionary<OrientationEnum,PdfName>();
      OrientationEnumCodes[OrientationEnum.Horizontal] = PdfName.H;
      OrientationEnumCodes[OrientationEnum.Vertical] = PdfName.V;

      PageDirectionEnumCodes = new Dictionary<PageDirectionEnum,PdfName>();
      PageDirectionEnumCodes[PageDirectionEnum.Inward] = PdfName.I;
      PageDirectionEnumCodes[PageDirectionEnum.Outward] = PdfName.O;

      StyleEnumCodes = new Dictionary<StyleEnum,PdfName>();
      StyleEnumCodes[StyleEnum.Split] = PdfName.Split;
      StyleEnumCodes[StyleEnum.Blinds] = PdfName.Blinds;
      StyleEnumCodes[StyleEnum.Box] = PdfName.Box;
      StyleEnumCodes[StyleEnum.Wipe] = PdfName.Wipe;
      StyleEnumCodes[StyleEnum.Dissolve] = PdfName.Dissolve;
      StyleEnumCodes[StyleEnum.Glitter] = PdfName.Glitter;
      StyleEnumCodes[StyleEnum.Replace] = PdfName.R;
      StyleEnumCodes[StyleEnum.Fly] = PdfName.Fly;
      StyleEnumCodes[StyleEnum.Push] = PdfName.Push;
      StyleEnumCodes[StyleEnum.Cover] = PdfName.Cover;
      StyleEnumCodes[StyleEnum.Uncover] = PdfName.Uncover;
      StyleEnumCodes[StyleEnum.Fade] = PdfName.Fade;
    }
    #endregion

    #region interface
    #region private
    /**
      <summary>Gets the code corresponding to the given value.</summary>
    */
    private static PdfDirectObject ToCode(
      DirectionEnum value
      )
    {return DirectionEnumCodes[value];}

    /**
      <summary>Gets the code corresponding to the given value.</summary>
    */
    private static PdfName ToCode(
      OrientationEnum value
      )
    {return OrientationEnumCodes[value];}

    /**
      <summary>Gets the code corresponding to the given value.</summary>
    */
    private static PdfName ToCode(
      PageDirectionEnum value
      )
    {return PageDirectionEnumCodes[value];}

    /**
      <summary>Gets the code corresponding to the given value.</summary>
    */
    private static PdfName ToCode(
      StyleEnum value
      )
    {return StyleEnumCodes[value];}

    /**
      <summary>Gets the direction corresponding to the given value.</summary>
    */
    private static DirectionEnum ToDirectionEnum(
      PdfDirectObject value
      )
    {
      foreach(KeyValuePair<DirectionEnum,PdfDirectObject> direction in DirectionEnumCodes)
      {
        if(direction.Value.Equals(value))
          return direction.Key;
      }
      return DefaultDirection;
    }

    /**
      <summary>Gets the orientation corresponding to the given value.</summary>
    */
    private static OrientationEnum ToOrientationEnum(
      PdfName value
      )
    {
      foreach(KeyValuePair<OrientationEnum,PdfName> orientation in OrientationEnumCodes)
      {
        if(orientation.Value.Equals(value))
          return orientation.Key;
      }
      return DefaultOrientation;
    }

    /**
      <summary>Gets the page direction corresponding to the given value.</summary>
    */
    private static PageDirectionEnum ToPageDirectionEnum(
      PdfName value
      )
    {
      foreach(KeyValuePair<PageDirectionEnum,PdfName> direction in PageDirectionEnumCodes)
      {
        if(direction.Value.Equals(value))
          return direction.Key;
      }
      return DefaultPageDirection;
    }

    /**
      <summary>Gets the style corresponding to the given value.</summary>
    */
    private static StyleEnum ToStyleEnum(
      PdfName value
      )
    {
      foreach(KeyValuePair<StyleEnum,PdfName> style in StyleEnumCodes)
      {
        if(style.Value.Equals(value))
          return style.Key;
      }
      return DefaultStyle;
    }
    #endregion
    #endregion
    #endregion

    #region dynamic
    #region constructors
    /**
      <summary>Creates a new action within the given document context.</summary>
    */
    public Transition(
      Document context
      ) : base(
        context.File,
        new PdfDictionary(
          new PdfName[]{PdfName.Type},
          new PdfDirectObject[]{PdfName.Trans}
          )
        )
    {}

    public Transition(
      Document context,
      StyleEnum style
      ) : this(
        context,
        style,
        DefaultDuration,
        DefaultOrientation,
        DefaultPageDirection,
        DefaultDirection,
        DefaultScale
        )
    {}

    public Transition(
      Document context,
      StyleEnum style,
      double duration
      ) : this(
        context,
        style,
        duration,
        DefaultOrientation,
        DefaultPageDirection,
        DefaultDirection,
        DefaultScale
        )
    {}

    public Transition(
      Document context,
      StyleEnum style,
      Double duration,
      OrientationEnum orientation,
      PageDirectionEnum pageDirection,
      DirectionEnum direction,
      double scale
      ) : this(context)
    {
      Style = style;
      Duration = duration;
      Orientation = orientation;
      PageDirection = pageDirection;
      Direction = direction;
      Scale = scale;
    }

    public Transition(
      PdfDirectObject baseObject,
      PdfIndirectObject container
      ) : base(
        baseObject,
        container
        )
    {}
    #endregion

    #region interface
    #region public
    public override object Clone(
      Document context
      )
    {throw new NotImplementedException();}

    /**
      <summary>Gets/Sets the transition direction.</summary>
    */
    public DirectionEnum Direction
    {
      get
      {return ToDirectionEnum(BaseDataObject[PdfName.Di]);}
      set
      {
        if(value == DefaultDirection)
        {BaseDataObject.Remove(PdfName.Di);}
        else
        {BaseDataObject[PdfName.Di] = ToCode(value);}
      }
    }

    /**
      <summary>Gets/Sets the duration of the transition effect, in seconds.</summary>
    */
    public double Duration
    {
      get
      {
        IPdfNumber durationObject = (IPdfNumber)BaseDataObject[PdfName.D];
        if(durationObject == null)
          return DefaultDuration;

        return durationObject.RawValue;
      }
      set
      {
        if(value == DefaultDuration)
        {BaseDataObject.Remove(PdfName.D);}
        else
        {BaseDataObject[PdfName.D] = new PdfReal(value);}
      }
    }

    /**
      <summary>Gets/Sets the transition orientation.</summary>
    */
    public OrientationEnum Orientation
    {
      get
      {return ToOrientationEnum((PdfName)BaseDataObject[PdfName.Dm]);}
      set
      {
        if(value == DefaultOrientation)
        {BaseDataObject.Remove(PdfName.Dm);}
        else
        {BaseDataObject[PdfName.Dm] = ToCode(value);}
      }
    }

    /**
      <summary>Gets/Sets the transition direction on page.</summary>
    */
    public PageDirectionEnum PageDirection
    {
      get
      {return ToPageDirectionEnum((PdfName)BaseDataObject[PdfName.M]);}
      set
      {
        if(value == DefaultPageDirection)
        {BaseDataObject.Remove(PdfName.M);}
        else
        {BaseDataObject[PdfName.M] = ToCode(value);}
      }
    }

    /**
      <summary>Gets/Sets the scale at which the changes are drawn.</summary>
    */
    public double Scale
    {
      get
      {
        IPdfNumber scaleObject = (IPdfNumber)BaseDataObject[PdfName.SS];
        if(scaleObject == null)
          return DefaultScale;

        return scaleObject.RawValue;
      }
      set
      {
        if(value == DefaultScale)
        {BaseDataObject.Remove(PdfName.SS);}
        else
        {BaseDataObject[PdfName.SS] = new PdfReal(value);}
      }
    }

    /**
      <summary>Gets/Sets the transition style.</summary>
    */
    public StyleEnum Style
    {
      get
      {return ToStyleEnum((PdfName)BaseDataObject[PdfName.S]);}
      set
      {
        if(value == DefaultStyle)
        {BaseDataObject.Remove(PdfName.S);}
        else
        {BaseDataObject[PdfName.S] = ToCode(value);}
      }
    }
    #endregion
    #endregion
    #endregion
  }
}
w_ww_._j__ava_2_s__.__co_m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.