beremiz

SVGHMI: DropDown widget now using new class based style
svghmi
2020-12-15, Edouard Tisserant
9e172e4e50c7
SVGHMI: DropDown widget now using new class based style
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# See COPYING.Runtime file for copyrights details.
LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"]
LogLevelsCount = len(LogLevels)
LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount)))
LogLevelsDefault = LogLevelsDict["DEBUG"]