def create_phatch_inspector_droplet(folder, icon='phatch'): """""" create_droplet( name=ct.LABEL_PHATCH_INSPECTOR, command=ct.COMMAND['INSPECTOR'], folder=folder, icon=icon, )
def create_phatch_recent_droplet(folder, icon='phatch'): """""" create_droplet( name=ct.LABEL_PHATCH_RECENT, command=ct.COMMAND['RECENT'], folder=folder, icon=icon, )
def create_phatch_droplet(actionlist, folder, icon='phatch'): """""" create_droplet( name=system.filename_to_title(actionlist), command=ct.COMMAND['DROP'] % actionlist, folder=folder, icon=icon, )
def create_phatch_inspector_droplet(folder, icon="phatch"): """""" create_droplet(name=ct.LABEL_PHATCH_INSPECTOR, command=ct.COMMAND["INSPECTOR"], folder=folder, icon=icon)
def create_phatch_recent_droplet(folder, icon="phatch"): """""" create_droplet(name=ct.LABEL_PHATCH_RECENT, command=ct.COMMAND["RECENT"], folder=folder, icon=icon)
def create_phatch_droplet(actionlist, folder, icon="phatch"): """""" create_droplet( name=system.filename_to_title(actionlist), command=ct.COMMAND["DROP"] % actionlist, folder=folder, icon=icon )