#region PDFsharp - A .NET library for processing PDF // // Authors: // Stefan Lange // // Copyright (c) 2005-2017 empira Software GmbH, Cologne Area (Germany) // // http://www.pdfsharp.com // http://sourceforge.net/projects/pdfsharp // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #endregion using System; using System.Diagnostics; namespace PdfSharp.Pdf.AcroForms { /// /// Represents the base class for all choice field dictionaries. /// public abstract class PdfChoiceField : PdfAcroField { /// /// Initializes a new instance of the class. /// protected PdfChoiceField(PdfDocument document) : base(document) { } /// /// Initializes a new instance of the class. /// protected PdfChoiceField(PdfDictionary dict) : base(dict) { } /// /// Gets the index of the specified string in the /Opt array or -1, if no such string exists. /// protected int IndexInOptArray(string value) { PdfArray opt = Elements.GetArray(Keys.Opt); #if DEBUG // Check with //R080317 implemention PdfArray opt2 = null; if (Elements[Keys.Opt] is PdfArray) opt2 = Elements[Keys.Opt] as PdfArray; else if (Elements[Keys.Opt] is Advanced.PdfReference) { //falls das Array nicht direkt am Element hängt, //das Array aus dem referenzierten Element holen opt2 = ((Advanced.PdfReference)Elements[Keys.Opt]).Value as PdfArray; } Debug.Assert(ReferenceEquals(opt, opt2)); #endif if (opt != null) { int count = opt.Elements.Count; for (int idx = 0; idx < count; idx++) { PdfItem item = opt.Elements[idx]; if (item is PdfString) { if (item.ToString() == value) return idx; } else if (item is PdfArray) { PdfArray array = (PdfArray)item; if (array.Elements.Count != 0) { if (array.Elements[0].ToString() == value) return idx; } } } } return -1; } /// /// Gets the value from the index in the /Opt array. /// protected string ValueInOptArray(int index) { PdfArray opt = Elements.GetArray(Keys.Opt); if (opt != null) { int count = opt.Elements.Count; if (index < 0 || index >= count) throw new ArgumentOutOfRangeException("index"); PdfItem item = opt.Elements[index]; if (item is PdfString) return item.ToString(); if (item is PdfArray) { PdfArray array = (PdfArray)item; if (array.Elements.Count != 0) return array.Elements[0].ToString(); } } return ""; } /// /// Predefined keys of this dictionary. /// The description comes from PDF 1.4 Reference. /// public new class Keys : PdfAcroField.Keys { // ReSharper disable InconsistentNaming /// /// (Required; inheritable) An array of options to be presented to the user. Each element of /// the array is either a text string representing one of the available options or a two-element /// array consisting of a text string together with a default appearance string for constructing /// the item’s appearance dynamically at viewing time. /// [KeyInfo(KeyType.Array | KeyType.Optional)] public const string Opt = "/Opt"; /// /// (Optional; inheritable) For scrollable list boxes, the top index (the index in the Opt array /// of the first option visible in the list). /// [KeyInfo(KeyType.Integer | KeyType.Optional)] public const string TI = "/TI"; /// /// (Sometimes required, otherwise optional; inheritable; PDF 1.4) For choice fields that allow /// multiple selection (MultiSelect flag set), an array of integers, sorted in ascending order, /// representing the zero-based indices in the Opt array of the currently selected option /// items. This entry is required when two or more elements in the Opt array have different /// names but the same export value, or when the value of the choice field is an array; in /// other cases, it is permitted but not required. If the items identified by this entry differ /// from those in the V entry of the field dictionary (see below), the V entry takes precedence. /// [KeyInfo(KeyType.Array | KeyType.Optional)] public const string I = "/I"; /// /// Gets the KeysMeta for these keys. /// internal static DictionaryMeta Meta { get { return _meta ?? (_meta = CreateMeta(typeof(Keys))); } } static DictionaryMeta _meta; // ReSharper restore InconsistentNaming } /// /// Gets the KeysMeta of this dictionary type. /// internal override DictionaryMeta Meta { get { return Keys.Meta; } } } }