using System; using Paroxe.PdfRenderer.Internal; using System.Text; namespace Paroxe.PdfRenderer { #if !UNITY_WEBGL /// /// Represents the PDF action into a PDF document. /// public sealed class PDFAction { private IntPtr m_NativePointer; private object m_Source; private PDFDocument m_Document; private PDFDest m_Dest; private ActionType? m_ActionType; private string m_FilePath; private string m_URIPath; private bool m_DestCached; public PDFAction(PDFLink link, IntPtr nativePointer) { if (link == null) throw new ArgumentNullException("link"); if (nativePointer == IntPtr.Zero) throw new ArgumentNullException("nativePointer"); m_Source = link; m_Document = link.Page.Document; m_NativePointer = nativePointer; } public PDFAction(PDFBookmark bookmark, IntPtr nativePointer) { if (bookmark == null) throw new ArgumentNullException("bookmark"); if (nativePointer == IntPtr.Zero) throw new ArgumentNullException("nativePointer"); m_Source = bookmark; m_Document = bookmark.Document; m_NativePointer = nativePointer; } public enum ActionType { /// /// Unsupported action type. /// Unsupported = 0, /// /// Go to a destination within current document. /// GoTo = 1, /// /// Go to a destination within another document. /// RemoteGoTo = 2, /// /// Universal Resource Identifier, including web pages and other Internet based resources. /// Uri = 3, /// /// Launch an application or open a file. /// Launch = 4, Unknown = 133709999 }; public object Source { get { return m_Source; } } public PDFDocument Document { get { return m_Document; } } public IntPtr NativePointer { get { return m_NativePointer; } } /// /// Gets the PDFDest object associated with this action. /// /// public PDFDest GetDest() { if (m_DestCached) return m_Dest; IntPtr destPtr = NativeMethods.FPDFAction_GetDest(m_Document.NativePointer, m_NativePointer); if (destPtr != IntPtr.Zero) m_Dest = new PDFDest(this, destPtr); m_DestCached = true; return m_Dest; } public string GetFilePath() { if (string.IsNullOrEmpty(m_FilePath)) { byte[] buffer = new byte[4096]; int filePathLength = (int)NativeMethods.FPDFAction_GetFilePath(m_NativePointer, buffer, (uint)buffer.Length); if (filePathLength > 0) { m_FilePath = Encoding.Unicode.GetString(Encoding.Convert(Encoding.ASCII, Encoding.Unicode, buffer, 0, filePathLength)); } } return m_FilePath; } /// /// Gets type of current action. /// /// public ActionType GetActionType() { if (!m_ActionType.HasValue) m_ActionType = (ActionType)NativeMethods.FPDFAction_GetType(m_NativePointer); return m_ActionType.Value; } /// /// Gets URL assigned to the current action. /// /// public string GetURIPath() { if (string.IsNullOrEmpty(m_URIPath)) { byte[] buffer = new byte[4096]; int uriLength = (int) NativeMethods.FPDFAction_GetURIPath(m_Document.NativePointer, m_NativePointer, buffer, (uint)buffer.Length); if (uriLength > 0) { m_URIPath = Encoding.Unicode.GetString(Encoding.Convert(Encoding.ASCII, Encoding.Unicode, buffer, 0, uriLength)); } } return m_URIPath; } } #endif }