classFontDatabase(QtGui.QFontDatabase):"""Information about the fonts available in the underlying window system."""font_paths:dict[str,int]={}@classmethoddefadd_fonts_from_folder(cls,path:datatypes.PathType):path=pathlib.Path(path)forpinpath.iterdir():ifp.suffix.lower()in[".ttf",".otf"]:logger.debug(f"adding font {p!r} to database.")cls.addApplicationFont(str(p))@classmethoddefadd_font(cls,path:datatypes.PathType,ttf_hash:str|None=None)->int:path=pathlib.Path(path)font_id=cls.addApplicationFont(str(path))ifnotcls.applicationFontFamilies(font_id):raiseRuntimeError(f"Font {path!r} appears to be empty. ""If you are on Windows 10, please read ""https://support.microsoft.com/""en-us/kb/3053676")ifttf_hashisnotNone:content=path.read_bytes()ifhashlib.md5(content).hexdigest()!=ttf_hash:raiseOSError(f"Font is corrupt at: {path!r}")cls.font_paths[str(path)]=font_idreturnfont_id@classmethoddefremove_font(cls,font:datatypes.PathType|int):font_id=fontifisinstance(font,int)elsecls.font_paths[str(font)]cls.removeApplicationFont(font_id)@classmethoddefget_system_font(cls,font_type:SystemFontStr|QtGui.QFontDatabase.SystemFont):returncls.systemFont(SYSTEM_FONT[font_type])