qt-designer Questions
3
I find bindings/QtDesigner directory, but there are all .sip file.
In the package website on pypi, it says
The sip-install tool will also install the bindings from the sdist package but will allow...
Homogamy asked 22/2, 2021 at 3:34
6
I have a Qtablewidget shown below. I want to copy multiple cells from the table and paste in other row in the same table.
So far, I can do the same on single cell, but is there a way i can do mul...
Jodhpurs asked 17/3, 2020 at 2:27
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
2
Solved
I need to display QLineEdit with "Browse" button at my form. When user clicks button, QFileDialog should be opened, and so on.
This is pretty common thing, but I can't find ready-made solution for...
Splayfoot asked 27/12, 2013 at 4:32
21
Solved
Feeling really stupid, right now, but the title says it all:
How do you start the QtDesigner?
I've installed PyQt5 via pip and I believe to have identified the directory it's been installed in as...
Vaios asked 7/2, 2017 at 13:9
3
Solved
I used PyQt5 for a project and have the following snippet (button is a QPushButton)
def on_receive(self, query):
print("receiving", query)
datapackages = json.loads(query)
for button, datapack...
Hardboiled asked 14/10, 2017 at 17:21
5
Solved
I am working on an app using Python3 and PyQt5, with my UI layout begin defined in a Qt .ui file and loaded into my QDialog class at runtime. Therefore, the instances of my UI elements, such as a Q...
Lashaun asked 8/11, 2019 at 16:42
12
Solved
I just installed Qt 5.4.1 on Windows 7. And there is no QtDesigner. Also there is no QtDesigner in MaintenanceTool.
How can I install it?
Ozenfant asked 13/5, 2015 at 18:26
2
Solved
I made a "widget" in Qt Designer with about a dozen controls organized into horizontal and vertical layouts.
Oddly, every horizontal layout wants to be some large size, about 400 px wide,...
Pruinose asked 9/3, 2011 at 16:52
5
Solved
I am working on python project and I have a problem with pyside-rcc. First, let I explain briefly about my project.
I created my project GUI in QtDesigner and also use the image in the GUI. Then, ...
Braunite asked 18/3, 2014 at 12:34
4
I currently have a working GUI that implements a QTableWidget (not to be confused with a QTableView). This QTableWidget takes in a live stream of data and I want to have it so the vertical scroll b...
Christos asked 13/6, 2014 at 17:51
3
Solved
I’m using Qt Creator. In my GUI I use a tab widget. This widget should have the same grey background color as the main window (picture A). I accomplished this by editing the Style Sheet in Qt Desig...
Physiological asked 16/7, 2012 at 19:48
2
Solved
I'm using qt designer only for ui layout
This is almost the same question as this one : QVBoxLayout: How to vertically align widgets to the top instead of the center
but i'm interested on how to ...
Carbohydrate asked 11/3, 2017 at 22:28
2
Solved
I am trying to connect the click() signal of a button to my own function. The button is in a widget that I created with QT Designer. I load the .ui file with QUiLoader like so:
class MyWidget(QtGui...
Ophiolatry asked 5/1, 2012 at 16:23
7
I am currently working on a GUI using qt designer. I am wondering how I should go about printing strings on the GUI that acts like a logger window. I am using pyqt5.
Rhinal asked 22/2, 2015 at 6:28
2
Solved
My PyQt application no longer prints the error (stderr?) to the console.
I use QtDesigner and import the UI like this:
from PyQt5 import QtCore, QtGui, QtWidgets
import sys
from PyQt5.uic import ...
Cecilla asked 16/11, 2015 at 13:42
3
Solved
I want to insert video in blue box(ui image) but I don't know how to insert video file.
My code is here.
I don't know how to add video... Just know example that make video player ...
import sys...
Intramundane asked 13/11, 2017 at 8:23
3
Solved
I tried to develop a simple currency program but I have a problem. When I click on Çevir, the program should calculate money (like an exchange). But I can't do it. PyCharm writes Process finished w...
Sadness asked 25/12, 2017 at 17:49
7
Solved
I try to hide all widgets in layout. But looks like findChildren doesn't
work for layout.
Here's my sample code:
QLayout * layout = widget -> findChild<QLayout *> (layoutName);
QList<...
Explant asked 31/10, 2010 at 22:5
2
Solved
I'm creating a screen where users can add certain tiles to use in an editor, but when adding a tile the window does not correctly resize to fit the content. Except that when I drag the window or re...
Bigoted asked 16/2, 2018 at 17:21
2
I followed this link to convert .ui to .py using python in windows but its not working.I tried installing pyuic4 but its not working. Is there any tools or libraries in python for doing it? Please ...
Griggs asked 1/11, 2016 at 4:24
5
Solved
I am using the given code, I want the user to enter text in the QLineEdit widget, press the Copy! button and see the inputted text replace the 'N/A' label. My questions is: following this procedure...
Variorum asked 10/10, 2017 at 15:59
2
Solved
I want to add QChart to the form. But I can't find it in the Widget Box. So I created it in the code. How can I insert it in QWidget or QFrame or something else?
I want to set area of that widget...
Claudeclaudel asked 21/1, 2018 at 1:35
5
Solved
I made a simple program with PyQt GUI, and compiled '.ui' file.
# Form implementation generated from reading ui file 'main.ui'
#
# Created by: PyQt5 UI code generator 5.6
#
# WARNING! All changes ...
Zales asked 23/12, 2016 at 12:6
5
Solved
I'm using Qt Designer (well, Qt Creator actually, but specifically the part derived from Qt Designer), and I've added a few QComboBox items to a dialog with a constant list of items. I need to map ...
Lutanist asked 1/2, 2016 at 23:16
1 Next >
© 2022 - 2025 — McMap. All rights reserved.