use all font properties from Theme all around
This commit is contained in:
parent
9eda90088e
commit
486fbf6f82
@ -126,6 +126,15 @@ Item {
|
|||||||
left: icon.right
|
left: icon.right
|
||||||
right: parent.right
|
right: parent.right
|
||||||
}
|
}
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
color: theme.buttonTextColor
|
color: theme.buttonTextColor
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
@ -32,6 +32,16 @@ DualStateButton {
|
|||||||
id: fontMetricText
|
id: fontMetricText
|
||||||
text: "M"
|
text: "M"
|
||||||
visible: false
|
visible: false
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
|
color: theme.textColor
|
||||||
}
|
}
|
||||||
PlasmaCore.SvgItem {
|
PlasmaCore.SvgItem {
|
||||||
svg: PlasmaCore.Svg {
|
svg: PlasmaCore.Svg {
|
||||||
|
@ -32,9 +32,9 @@ Text {
|
|||||||
font.underline: theme.defaultFont.underline
|
font.underline: theme.defaultFont.underline
|
||||||
font.weight: theme.defaultFont.weight
|
font.weight: theme.defaultFont.weight
|
||||||
font.wordSpacing: theme.defaultFont.wordSpacing
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
|
color: theme.textColor
|
||||||
|
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
color: theme.textColor
|
|
||||||
|
|
||||||
PlasmaCore.Theme {
|
PlasmaCore.Theme {
|
||||||
id: theme
|
id: theme
|
||||||
|
@ -37,6 +37,16 @@ DualStateButton {
|
|||||||
id: fontMetricText
|
id: fontMetricText
|
||||||
text: "M"
|
text: "M"
|
||||||
visible: false
|
visible: false
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
|
color: theme.textColor
|
||||||
}
|
}
|
||||||
PlasmaCore.SvgItem {
|
PlasmaCore.SvgItem {
|
||||||
svg: PlasmaCore.Svg {
|
svg: PlasmaCore.Svg {
|
||||||
|
@ -161,6 +161,16 @@ Item {
|
|||||||
clip: true
|
clip: true
|
||||||
wrapMode: TextEdit.Wrap
|
wrapMode: TextEdit.Wrap
|
||||||
enabled: textArea.enabled
|
enabled: textArea.enabled
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
|
color: theme.viewTextColor
|
||||||
|
|
||||||
onCursorPositionChanged: {
|
onCursorPositionChanged: {
|
||||||
if (cursorRectangle.x < flickArea.contentX) {
|
if (cursorRectangle.x < flickArea.contentX) {
|
||||||
|
@ -138,10 +138,19 @@ Item {
|
|||||||
text: placeholderText
|
text: placeholderText
|
||||||
visible: textInput.text == "" && !textField.activeFocus
|
visible: textInput.text == "" && !textField.activeFocus
|
||||||
// XXX: using textColor and low opacity for theming placeholderText
|
// XXX: using textColor and low opacity for theming placeholderText
|
||||||
color: theme.textColor
|
color: theme.viewTextColor
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
clip: true
|
clip: true
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
}
|
}
|
||||||
|
|
||||||
TextInput {
|
TextInput {
|
||||||
|
@ -136,6 +136,15 @@ Item {
|
|||||||
left: icon.right
|
left: icon.right
|
||||||
right: parent.right
|
right: parent.right
|
||||||
}
|
}
|
||||||
|
font.capitalization: theme.defaultFont.capitalization
|
||||||
|
font.family: theme.defaultFont.family
|
||||||
|
font.italic: theme.defaultFont.italic
|
||||||
|
font.letterSpacing: theme.defaultFont.letterSpacing
|
||||||
|
font.pointSize: theme.defaultFont.pointSize
|
||||||
|
font.strikeout: theme.defaultFont.strikeout
|
||||||
|
font.underline: theme.defaultFont.underline
|
||||||
|
font.weight: theme.defaultFont.weight
|
||||||
|
font.wordSpacing: theme.defaultFont.wordSpacing
|
||||||
color: theme.buttonTextColor
|
color: theme.buttonTextColor
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
Loading…
x
Reference in New Issue
Block a user