:param cls: :return: 主题中 style.qss 的绝对路径
(cls, path='')
| 427 | |
| 428 | @classmethod |
| 429 | def stylePath(cls, path=''): |
| 430 | """ |
| 431 | :param cls: |
| 432 | :return: 主题中 style.qss 的绝对路径 |
| 433 | """ |
| 434 | return os.path.abspath( |
| 435 | os.path.join(ThemeManager.ThemeDir, path or ThemeManager.ThemeName, |
| 436 | 'style.qss')).replace('\\', '/') |
no outgoing calls
no test coverage detected