parent
ebbc9f2739
commit
078c12e796
|
@ -55,6 +55,13 @@ Rectangle {
|
||||||
icon.name: "search"
|
icon.name: "search"
|
||||||
type: StatusFlatRoundButton.Type.Secondary
|
type: StatusFlatRoundButton.Type.Secondary
|
||||||
onClicked: statusChatToolBar.searchButtonClicked()
|
onClicked: statusChatToolBar.searchButtonClicked()
|
||||||
|
|
||||||
|
StatusToolTip {
|
||||||
|
visible: !!text && parent.hovered
|
||||||
|
text: "Search"
|
||||||
|
orientation: StatusToolTip.Orientation.Bottom
|
||||||
|
y: parent.height + 12
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusFlatRoundButton {
|
StatusFlatRoundButton {
|
||||||
|
@ -64,6 +71,13 @@ Rectangle {
|
||||||
icon.name: "group-chat"
|
icon.name: "group-chat"
|
||||||
type: StatusFlatRoundButton.Type.Secondary
|
type: StatusFlatRoundButton.Type.Secondary
|
||||||
onClicked: statusChatToolBar.membersButtonClicked()
|
onClicked: statusChatToolBar.membersButtonClicked()
|
||||||
|
|
||||||
|
StatusToolTip {
|
||||||
|
visible: !!text && parent.hovered
|
||||||
|
text: "Members"
|
||||||
|
orientation: StatusToolTip.Orientation.Bottom
|
||||||
|
y: parent.height + 12
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusFlatRoundButton {
|
StatusFlatRoundButton {
|
||||||
|
@ -80,6 +94,13 @@ Rectangle {
|
||||||
popupMenuSlot.item.popup(-popupMenuSlot.item.width + menuButton.width, menuButton.height + 4)
|
popupMenuSlot.item.popup(-popupMenuSlot.item.width + menuButton.width, menuButton.height + 4)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StatusToolTip {
|
||||||
|
visible: !!text && parent.hovered && !popupMenuSlot.item.opened
|
||||||
|
text: "More"
|
||||||
|
orientation: StatusToolTip.Orientation.Bottom
|
||||||
|
y: parent.height + 12
|
||||||
|
}
|
||||||
|
|
||||||
Loader {
|
Loader {
|
||||||
id: popupMenuSlot
|
id: popupMenuSlot
|
||||||
active: !!statusChatToolBar.popupMenu
|
active: !!statusChatToolBar.popupMenu
|
||||||
|
@ -132,6 +153,13 @@ Rectangle {
|
||||||
border.width: 2
|
border.width: 2
|
||||||
border.color: parent.hovered ? Theme.palette.baseColor2 : Theme.palette.statusAppLayout.backgroundColor
|
border.color: parent.hovered ? Theme.palette.baseColor2 : Theme.palette.statusAppLayout.backgroundColor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StatusToolTip {
|
||||||
|
visible: !!text && parent.hovered
|
||||||
|
text: "Activity"
|
||||||
|
orientation: StatusToolTip.Orientation.Bottom
|
||||||
|
y: parent.height + 12
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue