コード例 #1
0
 def _setup(self):
     """
     Set up the class. This method is mocked out by the tests.
     """
     self.services = FormattingTagController()
     self.tag_table_widget.itemSelectionChanged.connect(self.on_row_selected)
     self.new_button.clicked.connect(self.on_new_clicked)
     self.delete_button.clicked.connect(self.on_delete_clicked)
     self.tag_table_widget.currentCellChanged.connect(self.on_current_cell_changed)
     self.button_box.rejected.connect(self.close)
     # Forces reloading of tags from openlp configuration.
     FormattingTags.load_tags()
     self.is_deleting = False
     self.reloading = False
コード例 #2
0
 def setUp(self):
     self.services = FormattingTagController()