def choose_font(self): dlg = widgets.FontDialog() if self._current_font: dlg.setCurrentFont(self._current_font) if dlg.main_loop(): self.set_current_font(dlg.current_font()) self.value_changed.emit(dlg.current_font())
def test_fontdialog(): widgets.FontDialog()
def test_fontdialog(): dlg = widgets.FontDialog() dlg.show() dlg.close()