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

« back to all changes in this revision

Viewing changes to lib/PdfSharp/PdfSharp.Pdf.Advanced/PdfGroupAttributes.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.Diagnostics;
 
32
using System.Collections;
 
33
using System.Text;
 
34
using System.IO;
 
35
#if GDI
 
36
using System.Drawing;
 
37
using System.Drawing.Imaging;
 
38
#endif
 
39
#if WPF
 
40
using System.Windows.Media;
 
41
#endif
 
42
using PdfSharp.Drawing;
 
43
using PdfSharp.Fonts.TrueType;
 
44
using PdfSharp.Internal;
 
45
using PdfSharp.Pdf.Internal;
 
46
 
 
47
namespace PdfSharp.Pdf.Advanced
 
48
{
 
49
  /// <summary>
 
50
  /// Represents a PDF group XObject.
 
51
  /// </summary>
 
52
  public abstract class PdfGroupAttributes : PdfDictionary
 
53
  {
 
54
    internal PdfGroupAttributes(PdfDocument thisDocument)
 
55
      : base(thisDocument)
 
56
    {
 
57
      Elements.SetName(Keys.Type, "/Group");
 
58
    }
 
59
 
 
60
    /// <summary>
 
61
    /// Predefined keys of this dictionary.
 
62
    /// </summary>
 
63
    public class Keys : KeysBase
 
64
    {
 
65
      /// <summary>
 
66
      ///(Optional) The type of PDF object that this dictionary describes;
 
67
      ///if present, must be Group for a group attributes dictionary.
 
68
      /// </summary>
 
69
      [KeyInfo(KeyType.Name | KeyType.Optional)]
 
70
      public const string Type = "/Type";
 
71
 
 
72
      /// <summary>
 
73
      /// (Required) The group subtype, which identifies the type of group whose
 
74
      /// attributes this dictionary describes and determines the format and meaning
 
75
      /// of the dictionary�s remaining entries. The only group subtype defined in
 
76
      /// PDF 1.4 is Transparency. Other group subtypes may be added in the future.
 
77
      /// </summary>
 
78
      [KeyInfo(KeyType.Name | KeyType.Required)]
 
79
      public const string S = "/S";
 
80
 
 
81
      /// <summary>
 
82
      /// Gets the KeysMeta for these keys.
 
83
      /// </summary>
 
84
      internal static DictionaryMeta Meta
 
85
      {
 
86
        get
 
87
        {
 
88
          if (Keys.meta == null)
 
89
            Keys.meta = CreateMeta(typeof(Keys));
 
90
          return Keys.meta;
 
91
        }
 
92
      }
 
93
      static DictionaryMeta meta;
 
94
    }
 
95
 
 
96
    /// <summary>
 
97
    /// Gets the KeysMeta of this dictionary type.
 
98
    /// </summary>
 
99
    internal override DictionaryMeta Meta
 
100
    {
 
101
      get { return Keys.Meta; }
 
102
    }
 
103
  }
 
104
}
 
 
b'\\ No newline at end of file'