move stuff into components
This commit is contained in:
parent
6370732e4e
commit
14292e6683
17 changed files with 81 additions and 149 deletions
12
modules/BarSection.qml
Normal file
12
modules/BarSection.qml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
|
||||
Row {
|
||||
property string tooltip: ""
|
||||
|
||||
HoverHandler { id: _hover }
|
||||
ToolTip {
|
||||
visible: _hover.hovered && parent.tooltip !== ""
|
||||
text: parent.tooltip
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue