Example #1
0
 def btnBack(self):
     from GUI.noteListGUI import noteListGUI
     self.root.destroy()
     noteListGUI()
Example #2
0
 def btnSave(self, title, content):
     from GUI.noteListGUI import noteListGUI
     Note.add_note(None, title, content)
     tkinter.messagebox.showinfo("추가 확인", "추가되었습니다")
     self.root.destroy()
     noteListGUI()
Example #3
0
 def btnDelete(self, title):
     from GUI.noteListGUI import noteListGUI
     Note.delete_note(None, title)
     tkinter.messagebox.showinfo("삭제 확인", "삭제되었습니다")
     self.root.destroy()
     noteListGUI()
Example #4
0
 def noteClick(self):
     from GUI.noteListGUI import noteListGUI
     self.root.destroy()
     noteListGUI()
Example #5
0
 def btnSave(self, title, mTitle, mContent):
     from GUI.noteListGUI import noteListGUI
     Note.update_note(None, title, mTitle, mContent)
     tkinter.messagebox.showinfo("수정 확인", "수정되었습니다")
     self.root.destroy()
     noteListGUI()