Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set absolute position of the widgets in qt

Tags:

widget

qt

I am using QT to develop a rich UI application.

  1. I need to position widgets at absolute positions
  2. I should be able to put the widget in background / foreground to add a few effects.

Simple example would be, I have to show a boiler with the water level inside the feed tank.

  1. Take a feed tank image and embed in a label.
  2. Position a progress bar in the center of the feedtank to display water level.

Now in this case the progress bar would be in the foreground and the label in the background.

Regards,

like image 537
chai Avatar asked Dec 01 '10 22:12

chai


4 Answers

Use QWidget::move() to set the position, QWidget::resize() to set the size and reimplement the parent's resizeEvent() handler if you need to re-position the widgets if their parent resizes.

like image 106
Frank Osterfeld Avatar answered Nov 15 '22 06:11

Frank Osterfeld


You just need to create your widget, indicate its parent QWidget and then display it.

Don't add it to the parent layout else you will not be able to move it as you want.

Don't forget to indicate its parent else it will be displayed as independent widget.

In these conditions your widget will be considered as child of the QWidget but not member of the parent's layout. So it will be a "floating" child and you must manage it's behavior when resizing parent's QWidget.

like image 35
Patrice Bernassola Avatar answered Nov 15 '22 06:11

Patrice Bernassola


Additionally to the answers by Patrice Bernassola and Frank Osterfeld the stacking order might be of interest. It corresponds to the order of the children which you get by findChildren and the ways to manipulate the order are using raise_ (with the trailing underscore), lower or stackUnder.

An example changing the order with each of the 3 available functions using PySide is here:

from PySide import QtGui

app = QtGui.QApplication([])

window = QtGui.QWidget()
window.resize(400, 300)
window.show()

rA = QtGui.QLabel()
rA.name='square'
rA.resize(100, 100)
rA.setStyleSheet('background-color:red;')
rA.setParent(window)
rA.show()

text = QtGui.QLabel('text')
text.name='text'
text.setParent(window)
text.show()

# text was added later than rA: initial order is square under text

rA.raise_()
rA.lower()
text.stackUnder(rA)

children = window.findChildren(QtGui.QWidget)
for child in children:
    print(child.name)

app.exec_()
like image 39
Trilarion Avatar answered Nov 15 '22 06:11

Trilarion


I do it by creating a class based on Qwidget put its position in the constructor

ex: QPointer a = new QWidget (0, posx, posy, width, height)

in the constructor of this Qwidgetclass add these integrers posx, posy, width, height and then do this.move(posx,posy); this.resize(width,height);

like image 33
Sherif O. Avatar answered Nov 15 '22 06:11

Sherif O.