Platforms to show: All Mac Windows Linux Cross-Platform
Required plugins for this example: MBS MacBase Plugin, MBS Main Plugin, MBS PDFKit Plugin, MBS MacFrameworks Plugin, MBS MacCocoa Plugin
Last modified Thu, 6th Apr 2016.
You find this example project in your MBS Xojo Plugin download as a Xojo project file within the examples folder: /PDFKit/PDFView/PDFView
Download this example: PDFView.zip
Project "PDFView.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Delete"
Const kFileQuit = "&Quit"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control CocoaControlMBS1 Inherits CocoaControlMBS
ControlInstance CocoaControlMBS1 Inherits CocoaControlMBS
EventHandler Function GetView() As NSViewMBS
dim file as FolderItem = FindFile("Castles.pdf")
dim doc as PDFDocumentMBS = new PDFDocumentMBS(file)
n=new PDFViewMBS(0,0,me.Width,me.Height)
n.document = doc
Return n
End EventHandler
End Control
EventHandler Sub Open()
if not CocoaControlMBS1.Available then
MsgBox "This example requires Mac OS X 10.5."
quit
end if
End EventHandler
Function FindFile(name as string) As FolderItem
// Look for file in parent folders from executable on
dim parent as FolderItem = app.ExecutableFile.Parent
while parent<>Nil
dim file as FolderItem = parent.Child(name)
if file<>Nil and file.Exists then
Return file
end if
parent = parent.Parent
wend
End Function
Property n As PDFViewMBS
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&File"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "Select &All"
End MenuBar
End Project
See also:
- /PDFKit/PDFView/PDFView customized
- /PDFKit/PDFView/PDFView customized with picture overlay
- /PDFKit/PDFView/PDFView overlay/PDFView overlay
- /PDFKit/PDFView/PDFView overlay/PDFViewControl overlay
Download this example: PDFView.zip
The items on this page are in the following plugins: MBS PDFKit Plugin.