import QtQml 2.0 import Weave.Templates as T T.ThemeIcon { function extraSmall(path) { return _theme.resolveIcon(path, 0, _theme.selectedDensity) } function small(path) { return _theme.resolveIcon(path, 1, _theme.selectedDensity) } function medium(path) { return _theme.resolveIcon(path, 2, _theme.selectedDensity) } function large(path) { return _theme.resolveIcon(path, 3, _theme.selectedDensity) } }