Introduction
The python dictionaryeditor example is extracted from the most popular open source projects, you can refer to the following example for usage.
Programming language: Python
Namespace/package name: plovergui_qtdictionary_editor
Example#1File:
dictionaries_widget.pyProject:
percidae/plover
def _edit(self, dictionaries):
editor = DictionaryEditor(self._engine, dictionaries, self)
editor.exec_()
Example#2File:
dictionaries_widget.pyProject:
ohAitch/plover
def _edit(self, dictionaries):
editor = DictionaryEditor(self._engine, [d.path for d in dictionaries])
editor.exec_()