Platforms to show: All Mac Windows Linux Cross-Platform

/MacCocoa/DiscRecording/DataBurn with links


Required plugins for this example: MBS MacBase Plugin, MBS Main Plugin, MBS MacControls Plugin, MBS Images Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /MacCocoa/DiscRecording/DataBurn with links

This example is the version from Thu, 6th Apr 2016.

Project "DataBurn with links.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Delete"
Const kFileQuit = "&Quit"
Const kFileQuitShortcut = ""
EventHandler Sub Open() dim track as DRTrackMBS dim bsp as DRBurnSetupPanelMBS dim bpp as DRBurnProgressPanelMBS // Let's build a folder with a few files dim rootfolder as DRFolderMBS = DRFolderMBS.virtualFolderWithName("My Test CD") rootfolder.explicitFilesystemMask = BitwiseOr(BitwiseOr(DRFolderMBS.DRFilesystemInclusionMaskHFSPlus, DRFolderMBS.DRFilesystemInclusionMaskJoliet), DRFolderMBS.DRFilesystemInclusionMaskISO9660) // a file with some text using Constructor dim testfile1 as new DRFileMBS("test.txt", "Hello World!") rootfolder.addChild testfile1 // a file with a picture dim pic as Picture = LogoMBS(500) dim jpegdata as string = PictureToJPEGStringMBS(pic, 75) dim testfile2 as DRFileMBS = DRFileMBS.virtualFileWithName("MBS Logo.jpg", jpegdata) if testfile2 = nil then MsgBox "testfile2 is nil!?" else rootfolder.addChild testfile2 end if // now add the folder with our project dim folder as DRFolderMBS = DRFolderMBS.folderWithPath(findFile("DiscRecording")) if folder = nil then MsgBox "folder is nil!?" else rootfolder.addChild Folder end if // now add some folder for links dim LinkFolder as new DRFolderMBS("Links") if LinkFolder = nil then MsgBox "LinkFolder is nil!?" else rootfolder.addChild LinkFolder end if // create a pic file on disc dim file as FolderItem = SpecialFolder.Desktop.Child("testfile.jpg") dim b as BinaryStream = file.CreateBinaryFile("") // needs to be BinaryStream.Create in newer REAL Studio versions b.Write jpegdata b.Close // a file with a picture dim testfile3 as new DRFileMBS(file) if testfile3 = nil then MsgBox "testfile3 is nil!?" else rootfolder.addChild testfile3 end if '// add a sym link, does not work currently and no idea why. dim SymLink as DRFileMBS = DRFileMBS.symLinkPointingTo(testfile3, DRFileMBS.DRHFSPlus) if SymLink = nil then MsgBox "SymLink is nil!?" else LinkFolder.addChild SymLink end if // Currently with 10.6.4 creating an alias does create only an empty file and creating a hard link crashes, so go with symbol links. track = DRTrackMBS.trackForRootFolder(rootfolder) if track<>nil then bsp=new DRBurnSetupPanelMBS // set a few options bsp.setCanSelectAppendableMedia true bsp.setCanSelectTestBurn true if bsp.runSetupPanel=bsp.NSOKButton then bpp=new DRBurnProgressPanelMBS // And start off the burn itself. This will put up the progress dialog // and do all the nice pretty things that a happy app does. bpp.beginProgressPanelForBurn bsp.burnObject, track else MsgBox "You pressed cancel." end if end if Exception n as NSExceptionMBS MsgBox n.message 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
End Class
Class Window1 Inherits Window
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:

The items on this page are in the following plugins: MBS MacCocoa Plugin.


The biggest plugin in space...