""" Author: RedFantom License: GNU GPLv3 Source: This repository """ # Based on an idea by Nelson Brochado (https://www.github.com/nbro/tkinter-kit) import tkinter as tk from tkinter import font from ttkwidgets.autocomplete import AutocompleteCombobox class FontFamilyDropdown(AutocompleteCombobox): """ A dropdown menu to select a font family with callback support and selection property. """ def __init__(self, master=None, callback=None, **kwargs): """ Create a FontFamilyDropdown. :param master: master widget :type master: widget :param callback: callable object with single argument: font family name :type callback: function :param kwargs: keyword arguments passed on to the :class:`~ttkwidgets.autocomplete.AutocompleteCombobox` initializer """ font_families = sorted(set(font.families())) self._fonts = font_families self._font = tk.StringVar(master) self.__callback = callback AutocompleteCombobox.__init__(self, master, textvariable=self._font, completevalues=font_families, **kwargs) self.bind("<>", self._on_select) self.bind("", self._on_select) def _on_select(self, *args): """ Function bound to event of selection in the Combobox, calls callback if callable :param args: Tkinter event """ if callable(self.__callback): self.__callback(self.selection) @property def selection(self): """ Selection property. :return: None if no font is selected and font family name if one is selected. :rtype: None or str """ if self._font.get() is "" or self._font.get() not in self._fonts: return None else: return self._font.get()