示例#1
0
    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())
示例#2
0
def test_fontdialog():
    widgets.FontDialog()
示例#3
0
def test_fontdialog():
    dlg = widgets.FontDialog()
    dlg.show()
    dlg.close()