~ubuntu-branches/ubuntu/trusty/pdfmod/trusty

« back to all changes in this revision

Viewing changes to lib/PdfSharp/PdfSharp.Pdf.Annotations/PdfWidgetAnnotation.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-06-18 03:44:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100618034446-bogifrsscpayp361
Tags: upstream-0.8.3
Import upstream version 0.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region PDFsharp - A .NET library for processing PDF
 
2
//
 
3
// Authors:
 
4
//   Stefan Lange (mailto:Stefan.Lange@pdfsharp.com)
 
5
//
 
6
// Copyright (c) 2005-2008 empira Software GmbH, Cologne (Germany)
 
7
//
 
8
// http://www.pdfsharp.com
 
9
// http://sourceforge.net/projects/pdfsharp
 
10
//
 
11
// Permission is hereby granted, free of charge, to any person obtaining a
 
12
// copy of this software and associated documentation files (the "Software"),
 
13
// to deal in the Software without restriction, including without limitation
 
14
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
15
// and/or sell copies of the Software, and to permit persons to whom the
 
16
// Software is furnished to do so, subject to the following conditions:
 
17
//
 
18
// The above copyright notice and this permission notice shall be included
 
19
// in all copies or substantial portions of the Software.
 
20
//
 
21
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
22
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
23
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 
24
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
25
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
26
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
 
27
// DEALINGS IN THE SOFTWARE.
 
28
#endregion
 
29
 
 
30
using System;
 
31
using System.Globalization;
 
32
using System.Diagnostics;
 
33
using System.Collections;
 
34
using PdfSharp.Internal;
 
35
using PdfSharp.Drawing;
 
36
using PdfSharp.Pdf;
 
37
using PdfSharp.Pdf.IO;
 
38
using PdfSharp.Pdf.Internal;
 
39
 
 
40
namespace PdfSharp.Pdf.Annotations
 
41
{
 
42
  /// <summary>
 
43
  /// Represents a text annotation.
 
44
  /// </summary>
 
45
  internal sealed class PdfWidgetAnnotation : PdfAnnotation
 
46
  {
 
47
    public PdfWidgetAnnotation()
 
48
    {
 
49
      Initialize();
 
50
    }
 
51
 
 
52
    public PdfWidgetAnnotation(PdfDocument document)
 
53
      : base(document)
 
54
    {
 
55
      Initialize();
 
56
    }
 
57
 
 
58
    void Initialize()
 
59
    {
 
60
      Elements.SetName(Keys.Subtype, "/Widget");
 
61
    }
 
62
 
 
63
    /// <summary>
 
64
    /// Predefined keys of this dictionary.
 
65
    /// </summary>
 
66
    internal new class Keys : PdfAnnotation.Keys
 
67
    {
 
68
      /// <summary>
 
69
      /// (Optional) The annotation�s highlighting mode, the visual effect to be used when
 
70
      /// the mouse button is pressed or held down inside its active area:
 
71
      ///   N (None) No highlighting.
 
72
      ///   I (Invert) Invert the contents of the annotation rectangle.
 
73
      ///   O (Outline) Invert the annotation�s border.
 
74
      ///   P (Push) Display the annotation�s down appearance, if any. If no down appearance is defined,
 
75
      ///     offset the contents of the annotation rectangle to appear as if it were being pushed below
 
76
      ///     the surface of the page.
 
77
      ///   T (Toggle) Same as P (which is preferred).
 
78
      /// A highlighting mode other than P overrides any down appearance defined for the annotation. 
 
79
      /// Default value: I.
 
80
      /// </summary>
 
81
      [KeyInfo(KeyType.Name | KeyType.Optional)]
 
82
      public const string H = "/H";
 
83
 
 
84
      /// <summary>
 
85
      /// (Optional) An appearance characteristics dictionary to be used in constructing a dynamic 
 
86
      /// appearance stream specifying the annotation�s visual presentation on the page.
 
87
      /// The name MK for this entry is of historical significance only and has no direct meaning.
 
88
      /// </summary>
 
89
      [KeyInfo(KeyType.Dictionary | KeyType.Optional)]
 
90
      public const string MK = "/MK";
 
91
 
 
92
      public static DictionaryMeta Meta
 
93
      {
 
94
        get
 
95
        {
 
96
          if (Keys.meta == null)
 
97
            Keys.meta = CreateMeta(typeof(Keys));
 
98
          return Keys.meta;
 
99
        }
 
100
      }
 
101
      static DictionaryMeta meta;
 
102
    }
 
103
 
 
104
    /// <summary>
 
105
    /// Gets the KeysMeta of this dictionary type.
 
106
    /// </summary>
 
107
    internal override DictionaryMeta Meta
 
108
    {
 
109
      get { return Keys.Meta; }
 
110
    }
 
111
  }
 
112
}