2020-07-21 21:03:22 +00:00
import QtQuick 2.13
import QtQuick . Controls 2.13
import QtQuick . Layouts 1.13
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
import QtQuick . Controls . Universal 2.12
2020-07-21 21:03:22 +00:00
import "../../../../imports"
import "../../../../shared"
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
import "../../../../shared/status"
2020-11-25 10:46:18 +00:00
import "../../Chat/ChatColumn"
2020-07-21 21:03:22 +00:00
2020-11-24 12:14:49 +00:00
ScrollView {
height: parent . height
width: parent . width
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
id: root
2020-11-24 12:14:49 +00:00
contentHeight: appearanceContainer . height
clip: true
2020-07-21 21:03:22 +00:00
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
enum Theme {
2020-11-24 12:14:49 +00:00
Light ,
Dark ,
System
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
}
function updateTheme ( theme ) {
let themeStr = Universal . theme === Universal . Dark ? "dark" : "light"
if ( theme === AppearanceContainer . Theme . Light ) {
themeStr = "light"
} else if ( theme === AppearanceContainer . Theme . Dark ) {
themeStr = "dark"
}
profileModel . changeTheme ( theme )
Style . changeTheme ( themeStr )
}
2020-11-25 10:46:18 +00:00
function updateFontSize ( fontSize ) {
Style . changeFontSize ( fontSize )
}
2020-11-24 12:14:49 +00:00
Item {
id: appearanceContainer
anchors.right: parent . right
anchors.rightMargin: contentMargin
2020-07-21 21:03:22 +00:00
anchors.left: parent . left
2020-11-24 12:14:49 +00:00
anchors.leftMargin: contentMargin
height: this . childrenRect . height + 100
2020-07-21 21:03:22 +00:00
2020-11-24 12:14:49 +00:00
ButtonGroup {
id: chatModeSetting
2020-07-21 21:03:22 +00:00
}
2020-11-24 12:14:49 +00:00
ButtonGroup {
id: appearanceSetting
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
}
2020-11-24 12:14:49 +00:00
2020-11-25 10:46:18 +00:00
StatusSectionHeadline {
id: sectionHeadlinePreview
text: qsTr ( "Preview" )
anchors.top: parent . top
anchors.left: parent . left
anchors.right: parent . right
}
Rectangle {
id: preview
anchors.top: sectionHeadlinePreview . bottom
anchors.topMargin: Style . current . smallPadding
anchors.left: parent . left
anchors.leftMargin: - Style . current . padding
anchors.right: parent . right
anchors.rightMargin: - Style . current . padding
height: 220
radius: Style . current . radius
border.color: Style . current . border
color: Style . current . transparent
Message {
anchors.top: parent . top
anchors.topMargin: Style . current . padding * 2
anchors.left: parent . left
anchors.leftMargin: Style . current . smallPadding
userName: "@vitalik"
identicon: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAb0lEQVR4Ae3UQQqAIBRF0Wj9ba9Bq6l5JBQqfn/ngDMH3YS3AAB/tO3H+XRG3b9bR/+gVoREI2RapVXpfd5+X5oXERKNkHS+rk3tOpWkeREh0QiZVu91ql2zNC8iJBoh0yqtSqt1slpCghICANDPBc0ESPh0bHkHAAAAAElFTkSuQmCC"
message: qsTr ( "Blockchains will drop search costs, causing a kind of decomposition that allows you to have markets of entities that are horizontally segregated and vertically segregated." )
contentType: Constants . messageType
2020-11-30 17:03:52 +00:00
placeholderMessage: true
2020-11-25 10:46:18 +00:00
}
}
StatusSectionHeadline {
id: sectionHeadlineFontSize
text: qsTr ( "Size" )
anchors.top: preview . bottom
anchors.topMargin: Style . current . padding
anchors.left: parent . left
anchors.right: parent . right
}
StyledText {
id: labelFontSize
anchors.top: sectionHeadlineFontSize . bottom
anchors.topMargin: Style . current . padding
anchors.left: parent . left
font.pixelSize: 15
text: qsTr ( "Change font size" )
}
StatusSlider {
id: fontSizeSlider
anchors.top: labelFontSize . bottom
anchors.topMargin: Style . current . padding
width: parent . width
minimumValue: 0
maximumValue: 5
stepSize: 1
value: appSettings . fontSize
onValueChanged: {
appSettings . fontSize = value
root . updateFontSize ( value )
}
}
RowLayout {
id: fontSizeSliderLegend
anchors.top: fontSizeSlider . bottom
anchors.topMargin: Style . current . padding
anchors.left: parent . left
anchors.right: parent . right
spacing: Style . current . smallPadding
StyledText {
font.pixelSize: 15
text: qsTr ( "XS" )
Layout.preferredWidth: fontSizeSlider . width / 6
}
StyledText {
font.pixelSize: 15
text: qsTr ( "S" )
Layout.preferredWidth: fontSizeSlider . width / 6
Layout.leftMargin: 2
}
StyledText {
font.pixelSize: 15
text: qsTr ( "M" )
Layout.preferredWidth: fontSizeSlider . width / 6
Layout.leftMargin: 2
}
StyledText {
font.pixelSize: 15
text: qsTr ( "L" )
Layout.preferredWidth: fontSizeSlider . width / 6
Layout.leftMargin: 2
}
StyledText {
font.pixelSize: 15
text: qsTr ( "XL" )
Layout.preferredWidth: fontSizeSlider . width / 6
Layout.leftMargin: 0
}
StyledText {
font.pixelSize: 15
text: qsTr ( "XXL" )
Layout.alignment: Qt . AlignRight
Layout.leftMargin: - Style . current . smallPadding
}
}
2020-11-24 12:14:49 +00:00
StatusSectionHeadline {
id: sectionHeadlineChatMode
text: qsTr ( "Chat mode" )
2020-11-25 10:46:18 +00:00
anchors.top: fontSizeSliderLegend . bottom
anchors.topMargin: Style . current . padding * 2
2020-11-24 12:14:49 +00:00
anchors.left: parent . left
anchors.right: parent . right
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
}
2020-11-24 12:14:49 +00:00
RowLayout {
id: chatModeSection
anchors.top: sectionHeadlineChatMode . bottom
anchors.topMargin: Style . current . padding
anchors.left: parent . left
anchors.leftMargin: - Style . current . padding
anchors.right: parent . right
anchors.rightMargin: - Style . current . padding
StatusImageRadioButton {
padding: Style . current . padding
image.source: "../../../img/appearance-normal-light.svg"
image.height: 186
control.text: qsTr ( "Normal" )
control.checked: ! appSettings . compactMode
2021-01-19 19:51:02 +00:00
onRadioCheckedChanged: {
if ( checked ) {
2020-11-24 12:14:49 +00:00
appSettings . compactMode = false
}
}
feat: Support system dark mode theme
Supports system dark mode. Changes the user appearance setting to a 3-way setting of System, Light, Dark.
New accounts will have their appearance setting set to "System", which uses the system setting to determine if dark mode should be applied.
Breaking change: Users who had their settings on Light Theme, will now get the system theme (light or dark). Users who had their theme set to Dark, will now get the Light theme.
At startup, the onboarding screens will have the system-level setting of dark mode applied or not. Once, logged in, the user settings will be applied.
## Note
An appearance setting of "System" is not dynamic to the system-level setting. This means that if a user has "System" set for their appearance (and ie, the user has light mode set), and then user then changes their system setting from light to dark, the app will not respond until it is restarted. This is due to a limitation of Qt not having a reliable way to propagate these changes to QML.
2020-09-29 06:18:00 +00:00
}
2020-11-24 12:14:49 +00:00
StatusImageRadioButton {
padding: Style . current . padding
image.source: "../../../img/appearance-compact-light.svg"
image.height: 186
control.text: qsTr ( "Compact" )
control.checked: appSettings . compactMode
2021-01-19 19:51:02 +00:00
onRadioCheckedChanged: {
if ( checked ) {
2020-11-24 12:14:49 +00:00
appSettings . compactMode = true
}
}
2020-07-21 21:03:22 +00:00
}
}
2020-11-24 12:14:49 +00:00
StatusSectionHeadline {
id: sectionHeadlineAppearance
text: qsTr ( "Appearance" )
anchors.top: chatModeSection . bottom
anchors.topMargin: Style . current . padding * 3
anchors.left: parent . left
anchors.right: parent . right
2020-07-21 21:03:22 +00:00
}
2020-11-24 12:14:49 +00:00
RowLayout {
id: appearanceSection
anchors.top: sectionHeadlineAppearance . bottom
anchors.topMargin: Style . current . padding
anchors.left: parent . left
anchors.leftMargin: - Style . current . padding
anchors.right: parent . right
anchors.rightMargin: - Style . current . padding
StatusImageRadioButton {
padding: Style . current . smallPadding
width: 208
height: 184
image.source: "../../../img/appearance-normal-light.svg"
image.height: 128
control.text: qsTr ( "Light" )
control.checked: profileModel . profile . appearance === AppearanceContainer . Theme . Light
2021-01-19 19:51:02 +00:00
onRadioCheckedChanged: {
if ( checked ) {
2020-11-24 12:14:49 +00:00
root . updateTheme ( AppearanceContainer . Theme . Light )
}
}
}
StatusImageRadioButton {
padding: Style . current . smallPadding
width: 208
height: 184
image.source: "../../../img/appearance-normal-dark.svg"
image.height: 128
control.text: qsTr ( "Dark" )
control.checked: profileModel . profile . appearance === AppearanceContainer . Theme . Dark
2021-01-19 19:51:02 +00:00
onRadioCheckedChanged: {
if ( checked ) {
2020-11-24 12:14:49 +00:00
root . updateTheme ( AppearanceContainer . Theme . Dark )
}
}
}
StatusImageRadioButton {
padding: Style . current . smallPadding
width: 208
height: 184
image.source: "../../../img/appearance-normal-system.png"
image.height: 128
control.text: qsTr ( "System" )
control.checked: profileModel . profile . appearance === AppearanceContainer . Theme . System
2021-01-19 19:51:02 +00:00
onRadioCheckedChanged: {
if ( checked ) {
2020-11-24 12:14:49 +00:00
root . updateTheme ( AppearanceContainer . Theme . System )
}
}
}
// For the case where the theme was finally loaded by status-go in init(),
// update the theme in qml
Connections {
target: profileModel
onProfileChanged: {
root . updateTheme ( profileModel . profile . appearance )
}
2020-07-21 21:03:22 +00:00
}
}
}
}