TerminalViewDelegate

public protocol TerminalViewDelegate : AnyObject

Undocumented

  • The client code sending commands to the terminal has requested a new size for the terminal Applications that support this should call the TerminalView.getOptimalFrameSize to get the ideal frame size.

    This is needed for the rare cases where the remote client request 80 or 132 column displays, it is a rare feature and you most likely can ignore this request.

    Declaration

    Swift

    func sizeChanged(source: TerminalView, newCols: Int, newRows: Int)
  • Request to change the title of the terminal.

    Declaration

    Swift

    func setTerminalTitle(source: TerminalView, title: String)
  • Invoked when the OSC command 7 for “current directory has changed” command is sent

    Declaration

    Swift

    func hostCurrentDirectoryUpdate(source: TerminalView, directory: String?)
  • Request that date be sent to the application running inside the terminal.

    Declaration

    Swift

    func send(source: TerminalView, data: ArraySlice<UInt8>)

    Parameters

    data

    Slice of data that should be sent

  • Invoked when the terminal has been scrolled and the new position is provided

    Declaration

    Swift

    func scrolled(source: TerminalView, position: Double)

    Parameters

    position

    the relative position that the code was scrolled to, a value between 0 and 1

  • Invoked in response to the user clicking on a link, which is most likely a url, but is not mandatory, so custom implementations receive a string, and they can act on this as a way of communciating with the host if desired. The default implementation calls NSWorkspace.shared.open() on the URL.

    Declaration

    Swift

    func requestOpenLink(source: TerminalView, link: String, params: [String : String])

    Parameters

    source

    the terminalview that called this method

    link

    the string that was encoded as a link by the client application, typically a url, but could be anything, and could be used to communicate by the embedded application and the host

    params

    the specification allows for key/value pairs to be provided, this contains the key and value pairs that were provided

  • This method will be invoked when the host beeps.

    Declaration

    Swift

    func bell(source: TerminalView)