static public int AddActionLaunch(Form1 Parent) { if (Parent.m_CurDoc == null) { Document.CreateNewDoc(Parent); } IPXC_Bookmark bookmark = null; if (Parent.SelectedBookmarkNode == null) { bookmark = Parent.m_CurDoc.BookmarkRoot.AddNewChild(true); } else { bookmark = Parent.SelectedBookmarkNode.m_Bookmark.AddNewSibling(false); } IPXC_ActionsList aList = Parent.m_CurDoc.CreateActionsList(); bookmark.Title = "Launch Action"; bookmark.Style = PXC_BookmarkStyle.BookmarkFont_Normal; string sFilePath = System.Environment.CurrentDirectory + "\\Documents\\FeatureChartEU.pdf"; aList.AddLaunch(sFilePath); bookmark.Actions = aList; return((int)Form1.eFormUpdateFlags.efuf_Bookmarks); }
static public void AddButtonWithIconAndURI(Form1 Parent) { int index = 1; //delegate string CheckNamesFields(IPXC_Document Doc, string fieldName, ref int x); CheckNamesFields checkNamesFields = (IPXC_Document Doc, string fName, ref int inx) => { string sFieldName = ""; uint i = 0; do { sFieldName = fName + inx; IPXC_FormField ff = Doc.AcroForm.GetFieldByName(sFieldName); if (ff == null) { break; } inx++; i++; }while (i <= Doc.AcroForm.FieldsCount); inx++; return(sFieldName); }; if (Parent.m_CurDoc == null) { Document.CreateNewDoc(Parent); } PXC_Rect rc = new PXC_Rect(); rc.top = 800; rc.right = 600; //Adding button with icon with the URI action IPXC_UndoRedoData urD = null; IPXC_Pages pages = Parent.m_CurDoc.Pages; IPXC_Page Page = pages.InsertPage(0, rc, out urD); PXC_Rect rcPB = new PXC_Rect(); rcPB.left = 1.5 * 72.0; rcPB.right = rcPB.left + 0.5 * 72.0; rcPB.top = rc.top - 0.14 * 72.0; rcPB.bottom = rcPB.top - 0.5 * 72.0; //top is greater then bottom (PDF Coordinate System) IPXC_FormField googleButton = Parent.m_CurDoc.AcroForm.CreateField(checkNamesFields(Parent.m_CurDoc, "Button", ref index), PXC_FormFieldType.FFT_PushButton, 0, ref rcPB); //Now we'll need to add the icon IPXC_Annotation annot = googleButton.Widget[0]; IPXC_AnnotData_Widget WData = (IPXC_AnnotData_Widget)annot.Data; string sPath = System.Environment.CurrentDirectory + "\\Images\\gotoSource_24.png"; IPXC_Image img = Parent.m_CurDoc.AddImageFromFile(sPath); float imgw = img.Width; float imgh = img.Height; IPXC_ContentCreator CC = Parent.m_CurDoc.CreateContentCreator(); CC.SaveState(); CC.ScaleCS(imgw, imgh); //the image will be scaled to the button's size CC.PlaceImage(img); CC.RestoreState(); IPXC_Content content = CC.Detach(); PXC_Rect rcBBox; rcBBox.left = 0; rcBBox.top = imgh; rcBBox.right = imgw; rcBBox.bottom = 0; content.set_BBox(rcBBox); IPXC_XForm xForm = Parent.m_CurDoc.CreateNewXForm(ref rcPB); xForm.SetContent(content); WData.ButtonTextPosition = PXC_WidgetButtonTextPosition.WidgetText_IconOnly; WData.SetIcon(PXC_AnnotAppType.AAT_Normal, xForm, true); WData.Contents = "http://www.google.com"; //tooltip annot.Data = WData; //Setting the annotation's URI action IPXC_ActionsList AL = Parent.m_CurDoc.CreateActionsList(); AL.AddURI("https://www.google.com"); annot.set_Actions(PXC_TriggerType.Trigger_Up, AL); Marshal.ReleaseComObject(googleButton); //Adding button with icon and label and JS that goes to next page rcPB.left += 1.2 * 72.0; rcPB.right = rcPB.left + 0.6 * 72.0; IPXC_FormField nextButton = Parent.m_CurDoc.AcroForm.CreateField(checkNamesFields(Parent.m_CurDoc, "Button", ref index), PXC_FormFieldType.FFT_PushButton, 0, ref rcPB); //Now we'll need to add the icon annot = nextButton.Widget[0]; WData = (IPXC_AnnotData_Widget)annot.Data; sPath = System.Environment.CurrentDirectory + "\\Images\\next_24.png"; img = Parent.m_CurDoc.AddImageFromFile(sPath); imgw = img.Width; imgh = img.Height; CC.SaveState(); CC.ScaleCS(imgw, imgh); //the image will be scaled to the button's size CC.PlaceImage(img); CC.RestoreState(); content = CC.Detach(); rcBBox.left = 0; rcBBox.top = imgh; rcBBox.right = imgw; rcBBox.bottom = 0; content.set_BBox(rcBBox); xForm = Parent.m_CurDoc.CreateNewXForm(ref rcPB); xForm.SetContent(content); WData.SetCaption(PXC_AnnotAppType.AAT_Normal, "Next Page"); WData.ButtonTextPosition = PXC_WidgetButtonTextPosition.WidgetText_IconTextV; PXC_Point p = new PXC_Point(); p.x = 0.5; p.y = 0.5; WData.set_IconOffset(p); WData.SetIcon(PXC_AnnotAppType.AAT_Normal, xForm, true); WData.Contents = "Next Page"; //tooltip annot.Data = WData; //Setting the annotation's Goto action PXC_Destination dest = new PXC_Destination(); dest.nPageNum = Page.Number + 1; dest.nType = PXC_DestType.Dest_XYZ; dest.nNullFlags = 15; AL = Parent.m_CurDoc.CreateActionsList(); AL.AddGoto(dest); annot.set_Actions(PXC_TriggerType.Trigger_Up, AL); Marshal.ReleaseComObject(nextButton); //Adding text button that opens the file rcPB.left += 1.5 * 72.0; rcPB.right = rcPB.left + 2.0 * 72.0; IPXC_FormField openButton = Parent.m_CurDoc.AcroForm.CreateField(checkNamesFields(Parent.m_CurDoc, "Button", ref index), PXC_FormFieldType.FFT_PushButton, 0, ref rcPB); //Now we'll need to add the icon annot = openButton.Widget[0]; WData = (IPXC_AnnotData_Widget)annot.Data; WData.ButtonTextPosition = PXC_WidgetButtonTextPosition.WidgetText_TextOnly; WData.SetCaption(PXC_AnnotAppType.AAT_Normal, "Open File"); WData.Contents = "Open File"; //tooltip annot.Data = WData; //Setting the annotation's Launch action AL = Parent.m_CurDoc.CreateActionsList(); sPath = System.Environment.CurrentDirectory + "\\Documents\\FeatureChartEU.pdf"; AL.AddLaunch(sPath); annot.set_Actions(PXC_TriggerType.Trigger_Up, AL); Marshal.ReleaseComObject(openButton); Marshal.ReleaseComObject(Page); Marshal.ReleaseComObject(pages); }