mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Change menu icon position to left
This commit is contained in:
parent
509ea355d3
commit
0a3a04c245
@ -108,14 +108,81 @@ ApplicationWindow
|
|||||||
width: 4
|
width: 4
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MouseArea
|
||||||
|
{
|
||||||
|
id: menu
|
||||||
|
height: parent.height
|
||||||
|
width: parent.height
|
||||||
|
|
||||||
|
anchors.left: tolbarLeftPadding.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
|
onClicked: sideBar.open()
|
||||||
|
|
||||||
|
Image
|
||||||
|
{
|
||||||
|
source: "qrc:/icons/application-menu.svg"
|
||||||
|
height: parent.height - 10
|
||||||
|
width: height
|
||||||
|
sourceSize.height: height
|
||||||
|
sourceSize.width: height
|
||||||
|
anchors.centerIn: parent
|
||||||
|
}
|
||||||
|
|
||||||
|
SideBar {
|
||||||
|
id: sideBar
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Label
|
||||||
|
{
|
||||||
|
property alias mouseA: mouseA
|
||||||
|
id: toolBarText
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: menu.right
|
||||||
|
anchors.leftMargin: 20
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: mouseA
|
||||||
|
visible: true
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: { toolBar.openMainPage() }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
BtnIcon
|
||||||
|
{
|
||||||
|
property bool searchIconVisibility: false
|
||||||
|
property var onClickCB: function (){}
|
||||||
|
|
||||||
|
id: searchIcon
|
||||||
|
height: toolBar.iconsSize
|
||||||
|
width: toolBar.iconsSize
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
imgUrl: "qrc:/icons/search.svg"
|
||||||
|
anchors.right: imageLoader.left
|
||||||
|
anchors.rightMargin: 5
|
||||||
|
visible: searchIconVisibility && coreReady
|
||||||
|
onClicked:
|
||||||
|
{
|
||||||
|
toolBar.searchBtnCb()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loader
|
Loader
|
||||||
{
|
{
|
||||||
id: imageLoader
|
id: imageLoader
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
height: toolBar.height - 4
|
height: toolBar.height - 4
|
||||||
anchors.left: tolbarLeftPadding.right
|
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
|
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: 2
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
property string gxsSource;
|
property string gxsSource;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -148,67 +215,11 @@ ApplicationWindow
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Label
|
|
||||||
{
|
|
||||||
property alias mouseA: mouseA
|
|
||||||
id: toolBarText
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
anchors.left: imageLoader.right
|
|
||||||
anchors.leftMargin: 20
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
id: mouseA
|
|
||||||
visible: true
|
|
||||||
anchors.fill: parent
|
|
||||||
onClicked: { toolBar.openMainPage() }
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BtnIcon
|
|
||||||
{
|
|
||||||
property bool searchIconVisibility: false
|
|
||||||
property var onClickCB: function (){}
|
|
||||||
|
|
||||||
id: searchIcon
|
|
||||||
height: toolBar.iconsSize
|
|
||||||
width: toolBar.iconsSize
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
imgUrl: "qrc:/icons/search.svg"
|
|
||||||
anchors.right: menu.left
|
|
||||||
visible: searchIconVisibility && coreReady
|
|
||||||
onClicked:
|
|
||||||
{
|
|
||||||
toolBar.searchBtnCb()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
MouseArea
|
|
||||||
{
|
|
||||||
id: menu
|
|
||||||
height: parent.height
|
|
||||||
width: parent.height
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.rightMargin: 2
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
|
|
||||||
onClicked: sideBar.open()
|
|
||||||
|
|
||||||
Image
|
|
||||||
{
|
|
||||||
source: "qrc:/icons/application-menu.svg"
|
|
||||||
height: parent.height - 10
|
|
||||||
width: height
|
|
||||||
sourceSize.height: height
|
|
||||||
sourceSize.width: height
|
|
||||||
anchors.centerIn: parent
|
|
||||||
}
|
|
||||||
|
|
||||||
SideBar {
|
|
||||||
id: sideBar
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StackView
|
StackView
|
||||||
|
Loading…
Reference in New Issue
Block a user