TextButtonA.qml 580 Bytes
Newer Older
1
import Common.Styles 1.0
2

3
// =============================================================================
4 5

AbstractTextButton {
6
  colorDisabled: TextButtonAStyle.backgroundColor.disabled
7 8 9 10
  colorHovered: TextButtonAStyle.backgroundColor.hovered
  colorNormal: TextButtonAStyle.backgroundColor.normal
  colorPressed: TextButtonAStyle.backgroundColor.pressed

11
  textColorDisabled: TextButtonAStyle.textColor.disabled
12 13 14 15
  textColorHovered: TextButtonAStyle.textColor.hovered
  textColorNormal: TextButtonAStyle.textColor.normal
  textColorPressed: TextButtonAStyle.textColor.pressed
}