Hello and welcome to qt-project.org. Where should the L-shaped enter button be? Or is it the inversed L on the bottom right?
To answer your question: it is basically possible. What are you using for the buttons? If you are using default Rectangles, then you can implement another Rectangle which color is your Backgroundcolor, example:
Rectangle {
width: 200; height: 200
color: "BLUE"
Rectangle {
x: 50
width: 50; height: 50
color: "WHITE" // Backgroundcolor
}
}
You’ll probably need a MouseArea so you have to move the inner Rectangle outside so its also a child of the parent of your mainrectangle and put a mousearea on your mainrectangle. the second rectangle will overlay it and it wont trigger the mousearea.
Please provide more information for a more helpfull answer.
↧