def __init__(self, send_packet_cb, progress_cb=None, local_clipboard="CLIPBOARD", remote_clipboard="CLIPBOARD"): self.local_clipboard = local_clipboard self.remote_clipboard = remote_clipboard ClipboardProtocolHelperBase.__init__(self, send_packet_cb, progress_cb, [local_clipboard])
def __init__(self, send_packet_cb, local_clipboard="CLIPBOARD", remote_clipboard="PRIMARY"): self.local_clipboard = local_clipboard self.remote_clipboard = remote_clipboard ClipboardProtocolHelperBase.__init__(self, send_packet_cb, [local_clipboard])
def __init__(self, send_packet_cb): ClipboardProtocolHelperBase.__init__(self, send_packet_cb, ["CLIPBOARD", "PRIMARY", "SECONDARY"])
def __init__(self, send_packet_cb, progress_cb=None): ClipboardProtocolHelperBase.__init__(self, send_packet_cb, progress_cb, ["CLIPBOARD"])
def __init__(self, send_packet_cb, progress_cb=None, clipboards=CLIPBOARDS, filter_res=None): ClipboardProtocolHelperBase.__init__(self, send_packet_cb, progress_cb, clipboards, filter_res)