Skip to content

Commit

Permalink
Print messages removed as initial logging capability has been added
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalegre committed Apr 17, 2015
1 parent 16ef177 commit b1e8558
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions python/nammu/view/MenuView.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,53 +182,41 @@ def __init__(self, controller):
#Suboptions: Help | About

def onNewFileSelect(self, event):
print "Prompt save current, close it and clean text area."
self.controller.newFile()

def onOpenFileSelect(self, event):
print "Browse for new file to open and load it in text area."
self.controller.openFile()

#
def onSaveFileSelect(self, event):
print "Browse for place to save current file."
self.controller.saveFile()

#Delegate all events to view controller
def onCloseFileSelect(self, event):
print "Prompt save current, close it and clean text area."
self.controller.closeFile()

def onQuitFileSelect(self, event):
print "Prompt save current, exit Nammu."
self.controller.quit()

def onUndoSelect(self, event):
print "Undo last change."
self.controller.undo()

def onRedoSelect(self, event):
print "Redo last undone action."
self.controller.redo()

def onCopySelect(self, event):
print "Copy selected text."
self.controller.copy()

def onCutSelect(self, event):
print "Cut selected text."
self.controller.cut()

def onPasteSelect(self, event):
print "Paste clipboard text."
self.controller.paste()

def onValidateSelect(self, event):
print "Validate ATF."
self.controller.validate("text area content or path to file?")

def onLemmatiseSelect(self, event):
print "Lemmatise ATF."
self.controller.lemmatise("text area content or path to file?")

def onHelpSelect(self, event):
Expand All @@ -240,7 +228,6 @@ def onAboutSelect(self, event):
self.controller.showAbout()

def onModelSelect(self, event):
print "Change to model view."
self.controller.displayModelView()

def onConsoleSelect(self, event):
Expand Down

0 comments on commit b1e8558

Please sign in to comment.