feat(StatusTabButton): Created component as per design (#684)
This commit is contained in:
parent
e1db639340
commit
485647d1c3
@ -183,6 +183,11 @@ StatusWindow {
|
|||||||
selected: viewLoader.source.toString().includes(title)
|
selected: viewLoader.source.toString().includes(title)
|
||||||
onClicked: mainPageView.control(title);
|
onClicked: mainPageView.control(title);
|
||||||
}
|
}
|
||||||
|
StatusNavigationListItem {
|
||||||
|
title: "StatusTabBarButton"
|
||||||
|
selected: viewLoader.source.toString().includes(title)
|
||||||
|
onClicked: mainPageView.page(title);
|
||||||
|
}
|
||||||
StatusNavigationListItem {
|
StatusNavigationListItem {
|
||||||
title: "StatusTabBarIconButton"
|
title: "StatusTabBarIconButton"
|
||||||
selected: viewLoader.source.toString().includes(title)
|
selected: viewLoader.source.toString().includes(title)
|
||||||
|
27
sandbox/pages/StatusTabBarButtonPage.qml
Normal file
27
sandbox/pages/StatusTabBarButtonPage.qml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
import QtQuick 2.14
|
||||||
|
|
||||||
|
import StatusQ.Core 0.1
|
||||||
|
import StatusQ.Core.Theme 0.1
|
||||||
|
import StatusQ.Controls 0.1
|
||||||
|
|
||||||
|
import Sandbox 0.1
|
||||||
|
|
||||||
|
Column {
|
||||||
|
spacing: 8
|
||||||
|
|
||||||
|
StatusTabBar {
|
||||||
|
StatusTabButton {
|
||||||
|
width: implicitWidth
|
||||||
|
text: "Button 1"
|
||||||
|
}
|
||||||
|
StatusTabButton {
|
||||||
|
width: implicitWidth
|
||||||
|
text: "Button 2"
|
||||||
|
}
|
||||||
|
StatusTabButton {
|
||||||
|
width: implicitWidth
|
||||||
|
text: "Button 3"
|
||||||
|
badge.value: 42
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -42,5 +42,6 @@
|
|||||||
<file>pages/StatusTagSelectorPage.qml</file>
|
<file>pages/StatusTagSelectorPage.qml</file>
|
||||||
<file>pages/StatusToastMessagePage.qml</file>
|
<file>pages/StatusToastMessagePage.qml</file>
|
||||||
<file>pages/StatusWizardStepperPage.qml</file>
|
<file>pages/StatusWizardStepperPage.qml</file>
|
||||||
|
<file>pages/StatusTabBarButtonPage.qml</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
18
src/StatusQ/Controls/StatusTabBar.qml
Normal file
18
src/StatusQ/Controls/StatusTabBar.qml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import QtQuick 2.0
|
||||||
|
import QtQuick.Controls 2.13
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\qmltype StatusTabButton
|
||||||
|
\inherits TabButton
|
||||||
|
\inqmlmodule StatusQ.Controls
|
||||||
|
\since StatusQ.Controls 0.1
|
||||||
|
\brief StatusTabBar provides a tab-based navigation model
|
||||||
|
|
||||||
|
It's customized from Qt's \l{https://doc.qt.io/qt-6/qml-qtquick-controls2-tabbar.html}{TabBar},
|
||||||
|
adding a transparent background.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
TabBar {
|
||||||
|
background: Item { }
|
||||||
|
}
|
76
src/StatusQ/Controls/StatusTabButton.qml
Normal file
76
src/StatusQ/Controls/StatusTabButton.qml
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
import QtQuick 2.13
|
||||||
|
import QtQuick.Controls 2.13
|
||||||
|
import QtQuick.Layouts 1.13
|
||||||
|
|
||||||
|
import StatusQ.Core 0.1
|
||||||
|
import StatusQ.Core.Theme 0.1
|
||||||
|
import StatusQ.Components 0.1
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\qmltype StatusTabButton
|
||||||
|
\inherits TabButton
|
||||||
|
\inqmlmodule StatusQ.Controls
|
||||||
|
\since StatusQ.Controls 0.1
|
||||||
|
\brief StatusTabButton is used in conjunction with a StatusTabBar
|
||||||
|
|
||||||
|
It's customized from Qt's \l{https://doc.qt.io/qt-6/qml-qtquick-controls2-tabbutton.html}{TabButton}, adding:
|
||||||
|
- transparent background
|
||||||
|
- theme-styled text
|
||||||
|
- styled underscore for active state
|
||||||
|
- `StatusBadge` to the right from the text
|
||||||
|
|
||||||
|
An alias `badge` property is added to control the `StatusBadge` behaviour and content.
|
||||||
|
*/
|
||||||
|
|
||||||
|
TabButton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property alias badge: statusBadge
|
||||||
|
|
||||||
|
leftPadding: 12
|
||||||
|
rightPadding: 12
|
||||||
|
|
||||||
|
background: Item { }
|
||||||
|
|
||||||
|
contentItem: Item {
|
||||||
|
implicitWidth: contentItemGrid.implicitWidth
|
||||||
|
implicitHeight: contentItemGrid.implicitHeight + 11
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: contentItemGrid
|
||||||
|
|
||||||
|
anchors {
|
||||||
|
top: parent.top
|
||||||
|
left: parent.left
|
||||||
|
right: parent.right
|
||||||
|
}
|
||||||
|
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
StatusBaseText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
elide: Qt.ElideRight
|
||||||
|
font.weight: Font.Medium
|
||||||
|
font.pixelSize: 15
|
||||||
|
color: root.checked || root.hovered ? Theme.palette.directColor1 : Theme.palette.baseColor1
|
||||||
|
text: root.text
|
||||||
|
}
|
||||||
|
|
||||||
|
StatusBadge {
|
||||||
|
id: statusBadge
|
||||||
|
Layout.leftMargin: 10
|
||||||
|
visible: value > 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
visible: root.checked || root.hovered
|
||||||
|
implicitWidth: 24
|
||||||
|
implicitHeight: 2
|
||||||
|
radius: 4
|
||||||
|
color: root.checked ? Theme.palette.primaryColor1 : Theme.palette.primaryColor2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -32,6 +32,8 @@ StatusPasswordStrengthIndicator 0.1 StatusPasswordStrengthIndicator.qml
|
|||||||
StatusSwitchTabButton 0.1 StatusSwitchTabButton.qml
|
StatusSwitchTabButton 0.1 StatusSwitchTabButton.qml
|
||||||
StatusSwitchTabBar 0.1 StatusSwitchTabBar.qml
|
StatusSwitchTabBar 0.1 StatusSwitchTabBar.qml
|
||||||
StatusSelectableText 0.1 StatusSelectableText.qml
|
StatusSelectableText 0.1 StatusSelectableText.qml
|
||||||
|
StatusTabBar 0.1 StatusTabBar.qml
|
||||||
|
StatusTabButton 0.1 StatusTabButton.qml
|
||||||
StatusTokenInlineSelector 0.1 StatusTokenInlineSelector.qml
|
StatusTokenInlineSelector 0.1 StatusTokenInlineSelector.qml
|
||||||
StatusWalletColorButton 0.1 StatusWalletColorButton.qml
|
StatusWalletColorButton 0.1 StatusWalletColorButton.qml
|
||||||
StatusWalletColorSelect 0.1 StatusWalletColorSelect.qml
|
StatusWalletColorSelect 0.1 StatusWalletColorSelect.qml
|
||||||
|
@ -79,6 +79,7 @@
|
|||||||
<file>src/StatusQ/Controls/StatusSwitchTabBar.qml</file>
|
<file>src/StatusQ/Controls/StatusSwitchTabBar.qml</file>
|
||||||
<file>src/StatusQ/Controls/StatusSwitchTabButton.qml</file>
|
<file>src/StatusQ/Controls/StatusSwitchTabButton.qml</file>
|
||||||
<file>src/StatusQ/Controls/StatusTabBarIconButton.qml</file>
|
<file>src/StatusQ/Controls/StatusTabBarIconButton.qml</file>
|
||||||
|
<file>src/StatusQ/Controls/StatusTabButton.qml</file>
|
||||||
<file>src/StatusQ/Controls/StatusTokenInlineSelector.qml</file>
|
<file>src/StatusQ/Controls/StatusTokenInlineSelector.qml</file>
|
||||||
<file>src/StatusQ/Controls/StatusToolTip.qml</file>
|
<file>src/StatusQ/Controls/StatusToolTip.qml</file>
|
||||||
<file>src/StatusQ/Controls/StatusWalletColorButton.qml</file>
|
<file>src/StatusQ/Controls/StatusWalletColorButton.qml</file>
|
||||||
@ -10496,5 +10497,6 @@
|
|||||||
<file>src/assets/twemoji/svg/ae.svg</file>
|
<file>src/assets/twemoji/svg/ae.svg</file>
|
||||||
<file>src/assets/twemoji/svg/e50a.svg</file>
|
<file>src/assets/twemoji/svg/e50a.svg</file>
|
||||||
<file>src/assets/twemoji/LICENSE</file>
|
<file>src/assets/twemoji/LICENSE</file>
|
||||||
|
<file>src/StatusQ/Controls/StatusTabBar.qml</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user