uic Questions

2

Solved

For now I'm loading them like this: if __name__ == '__main__': app = QApplication(sys.argv) loader = QUiLoader() file = QFile('main.ui') file.open(QFile.ReadOnly) window = loader.load(file) ...
Drucilladrucy asked 22/12, 2014 at 13:7

3

Solved

Qt Designer adds a geometry tag that contains the widget's default size in absolute units (pixels). This is really annoying because if you edit a ui file on a 4k monitor all of your uis will (by ...
Preoccupy asked 1/8, 2017 at 16:44

1

Solved

I'm currently porting my project from qmake to CMake and I'm facing a problem with Qt UIC which tries to process a UI file that does not exist instead of the actual file I want it to process. I hav...
Shirlshirlee asked 21/10, 2017 at 11:22

1

Solved

I need to add some features to a graphics widget in a form I created using the Qt Designer. For example I would normally do something like this: class custom_gv(QGraphicsView): def __init__(sel...
Sterile asked 5/2, 2017 at 15:59

1

Solved

I work with QT Designer and create my GUIs with it. To launch the main program, I use this code: import sys from PyQt4 import uic, QtGui, QtCore from PyQt4.QtGui import * from PyQt4.QtCore import ...
Elliot asked 30/11, 2016 at 11:14
1

© 2022 - 2024 — McMap. All rights reserved.