23 lines
407 B
Python
23 lines
407 B
Python
#
|
|
# PyGUI - Edit command handling - Win32
|
|
#
|
|
|
|
from GUI import export
|
|
from GUI.GEditCmdHandlers import EditCmdHandler as GEditCmdHandler
|
|
|
|
class EditCmdHandler(GEditCmdHandler):
|
|
|
|
def cut_cmd(self):
|
|
self._win.Cut()
|
|
|
|
def copy_cmd(self):
|
|
self._win.Copy()
|
|
|
|
def paste_cmd(self):
|
|
self._win.Paste()
|
|
|
|
def clear_cmd(self):
|
|
self._win.Clear()
|
|
|
|
export(EditCmdHandler)
|