ChatCrawlersearch across public Telegram Open the app
Q

Qt for Python (PySide/Shiboken)

snapshot for December 2022
‹ December 2022 ›×
30 December 2022
I
Anton Yablokovtext not yet in the index
from PyQt6 import QtWidgets, QtCore import sys class loaderUi(QtWidgets.QMainWindow): def __init__(self, MainWindow): super().__init__() self.MainWindow = MainWindow MainWindow.showMaximized() def setupUi(self): MainWindow = self.MainWindow self.centralWidget = QtWidgets.QWidget(MainWindow) self.layout = QtWidgets.QGridLayout(self.centralWidget) self.label = QtWidgets.QLabel('test') self.label.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) font = self.label.font() font.setPointSize(160) font.setBold(True) self.label.setFont(font) self.label2 = QtWidgets.QLabel('test2', self.label) self.label2.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) font = self.label2.font() font.setPointSize(160) font.setBold(True) self.label2.setFont(font) self.layout.addWidget(self.label) MainWindow.setCentralWidget(self.centralWidget) if __name__ == '__main__': app = QtWidgets.QApplication(sys.argv) MainWindow = QtWidgets.QMainWindow() ui = loaderUi(MainWindow) ui.setupUi() MainWindow.show() app.exec() It's .frameGeometry(): PyQt6.QtCore.QRect(0, 0, 640, 480)
C
hey @mcdamn7 thanks for your reply, please consider using external services like pastie.org to share code. This channel is bridged to IRC as well, and your message now is a wall of text, because it represent one-line as a separate message. Additionally, keep in mind this is a PySide channel, not a PyQt one.
A
id 2092537693it's full-screen window >>> print(self.pos()) >>> print(self.label.pos()) PyQt6.QtCore.QPoint() PyQt6.QtCore.QPoint()
After you show the window, the left-top corner of the label is at ui.label.mapTo(ui, QtCore.QPointF(0, 0)). However, the very placement of the labels makes me look into ui.layout.contentsMargins(). One way or another, I get (9, 9). For you, the layout might differ, though. Beware that it takes a while before the OS places the window wherever it considers the best, so don't get the coordinates until the window is painted (or just wait a second).
Open in Telegram Каталог площадок Искать в ChatCrawler

A snapshot of an open public feed from the search index ChatCrawler — “Google for public Telegram”; refreshed as the venue is crawled. Times are UTC.

Public content only, official Telegram API. About · FAQ · What we do not do · Remove a page · Catalog