コード例 #1
0
 def setup_functions_list(self):
     '''
     Add all of the functions as well as their text to the listbox
     '''
     #Clear Box
     self.functions_list_box.Clear()
     #Get all function titles
     titles = Graph.get_function_titles()
     #Add title to list
     for title in titles:
         self.functions_list_box.Append(title)