diff --git a/openpype/style/__init__.py b/openpype/style/__init__.py index b2ff7d99e9..ac2adf52be 100644 --- a/openpype/style/__init__.py +++ b/openpype/style/__init__.py @@ -5,6 +5,9 @@ from openpype import resources _STYLESHEET_CACHE = None +_FONT_IDS = None + +current_dir = os.path.dirname(os.path.abspath(__file__)) def _load_stylesheet(): @@ -12,7 +15,6 @@ def _load_stylesheet(): qrc_resources.qInitResources() - current_dir = os.path.dirname(os.path.abspath(__file__)) style_path = os.path.join(current_dir, "style.css") with open(style_path, "r") as style_file: stylesheet = style_file.read() @@ -41,10 +43,48 @@ def _load_stylesheet(): return stylesheet +def _load_font(): + from Qt import QtGui + + global _FONT_IDS + + # Check if font ids are still loaded + if _FONT_IDS is not None: + for font_id in tuple(_FONT_IDS): + font_families = QtGui.QFontDatabase.applicationFontFamilies( + font_id + ) + # Reset font if font id is not available + if not font_families: + _FONT_IDS = None + break + + if _FONT_IDS is None: + _FONT_IDS = [] + fonts_dirpath = os.path.join(current_dir, "fonts") + font_dirs = [] + font_dirs.append(os.path.join(fonts_dirpath, "Poppins")) + + loaded_fonts = [] + for font_dir in font_dirs: + for filename in os.listdir(font_dir): + if os.path.splitext(filename)[1] != ".ttf": + continue + full_path = os.path.join(font_dir, filename) + font_id = QtGui.QFontDatabase.addApplicationFont(full_path) + _FONT_IDS.append(font_id) + font_families = QtGui.QFontDatabase.applicationFontFamilies( + font_id + ) + loaded_fonts.extend(font_families) + print("Registered font families: {}".format(", ".join(loaded_fonts))) + + def load_stylesheet(): global _STYLESHEET_CACHE if _STYLESHEET_CACHE is None: _STYLESHEET_CACHE = _load_stylesheet() + _load_font() return _STYLESHEET_CACHE diff --git a/openpype/style/fonts/Poppins/OFL.txt b/openpype/style/fonts/Poppins/OFL.txt new file mode 100644 index 0000000000..76df3b5656 --- /dev/null +++ b/openpype/style/fonts/Poppins/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/openpype/style/fonts/Poppins/Poppins-Black.ttf b/openpype/style/fonts/Poppins/Poppins-Black.ttf new file mode 100644 index 0000000000..a9520b78ac Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Black.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-BlackItalic.ttf b/openpype/style/fonts/Poppins/Poppins-BlackItalic.ttf new file mode 100644 index 0000000000..ebfdd707e5 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-BlackItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Bold.ttf b/openpype/style/fonts/Poppins/Poppins-Bold.ttf new file mode 100644 index 0000000000..b94d47f3af Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Bold.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-BoldItalic.ttf b/openpype/style/fonts/Poppins/Poppins-BoldItalic.ttf new file mode 100644 index 0000000000..e2e64456c7 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-BoldItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-ExtraBold.ttf b/openpype/style/fonts/Poppins/Poppins-ExtraBold.ttf new file mode 100644 index 0000000000..8f008c3684 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-ExtraBold.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-ExtraBoldItalic.ttf b/openpype/style/fonts/Poppins/Poppins-ExtraBoldItalic.ttf new file mode 100644 index 0000000000..b2a9bf557a Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-ExtraBoldItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-ExtraLight.ttf b/openpype/style/fonts/Poppins/Poppins-ExtraLight.ttf new file mode 100644 index 0000000000..ee6238251f Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-ExtraLight.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-ExtraLightItalic.ttf b/openpype/style/fonts/Poppins/Poppins-ExtraLightItalic.ttf new file mode 100644 index 0000000000..e392492abd Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-ExtraLightItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Italic.ttf b/openpype/style/fonts/Poppins/Poppins-Italic.ttf new file mode 100644 index 0000000000..46203996d3 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Italic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Light.ttf b/openpype/style/fonts/Poppins/Poppins-Light.ttf new file mode 100644 index 0000000000..2ab022196b Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Light.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-LightItalic.ttf b/openpype/style/fonts/Poppins/Poppins-LightItalic.ttf new file mode 100644 index 0000000000..6f9279daef Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-LightItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Medium.ttf b/openpype/style/fonts/Poppins/Poppins-Medium.ttf new file mode 100644 index 0000000000..e90e87ed69 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Medium.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-MediumItalic.ttf b/openpype/style/fonts/Poppins/Poppins-MediumItalic.ttf new file mode 100644 index 0000000000..d8a251c7c4 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-MediumItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Regular.ttf b/openpype/style/fonts/Poppins/Poppins-Regular.ttf new file mode 100644 index 0000000000..be06e7fdca Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Regular.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-SemiBold.ttf b/openpype/style/fonts/Poppins/Poppins-SemiBold.ttf new file mode 100644 index 0000000000..dabf7c242e Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-SemiBold.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-SemiBoldItalic.ttf b/openpype/style/fonts/Poppins/Poppins-SemiBoldItalic.ttf new file mode 100644 index 0000000000..29d5f7419b Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-SemiBoldItalic.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-Thin.ttf b/openpype/style/fonts/Poppins/Poppins-Thin.ttf new file mode 100644 index 0000000000..f5c0fdd531 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-Thin.ttf differ diff --git a/openpype/style/fonts/Poppins/Poppins-ThinItalic.ttf b/openpype/style/fonts/Poppins/Poppins-ThinItalic.ttf new file mode 100644 index 0000000000..b910089316 Binary files /dev/null and b/openpype/style/fonts/Poppins/Poppins-ThinItalic.ttf differ