I'm developping a text editor with pyqt5 and I want to implement a Find Box which sticks to the top right corner of my textarea just like this:
image
textarea = QTextEdit()
layout = QHBoxLayout() # tried hbox, vbox and grid
find_box = QLineEdit()
empty = QTabWidget()
layout.addWidget(empty)
layout.addWidget(empty)
layout.addWidget(find_box)
textarea.setLayout(layout)
So with this code, I managed to have my Find Box stick to the left of my texarea, even when window gets resized. But somehow the y position of my textarea's layout starts from the middle:
image
An awful solution is to set the textarea as my Find Box parent, use move(x, y) to set the Find Box's position but I'll have to catch whenever my window or my textarea get resized and use move() again to set a new position.
So why my QTextEdit's layout starts from the middle? And is there anyway to avoid this?
I got it working by using a
gridlayout
and setting stretch factors to rows and columns.