24 lines
663 B
Python
24 lines
663 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
class command():
|
|
def __init__(self):
|
|
pass
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
def shutdown(self):
|
|
pass
|
|
def getDescription(self):
|
|
return _('clears the currently selected clipboard')
|
|
|
|
def run(self):
|
|
self.env['runtime']['memoryManager'].clearCurrentIndexList('clipboardHistory')
|
|
self.env['runtime']['outputManager'].presentText(_('clipboard cleared'), interrupt=True)
|
|
return
|
|
def setCallback(self, callback):
|
|
pass
|