linphone-desktop/linphone-app/ui/modules/Common/Form/Buttons/TextButtonB.qml
Julien Wadel 3e6c2daf10 Backup2
2021-08-01 22:48:17 +02:00

17 lines
615 B
QML

import Common.Styles 1.0
// =============================================================================
AbstractTextButton {
property var textButtonStyle : TextButtonBStyle
colorDisabled: textButtonStyle.backgroundColor.disabled
colorHovered: textButtonStyle.backgroundColor.hovered
colorNormal: textButtonStyle.backgroundColor.normal
colorPressed: textButtonStyle.backgroundColor.pressed
textColorDisabled: textButtonStyle.textColor.disabled
textColorHovered: textButtonStyle.textColor.hovered
textColorNormal: textButtonStyle.textColor.normal
textColorPressed: textButtonStyle.textColor.pressed
}