Tagged Questions

Qt Designer is Qt's tool for designing and building graphical user interfaces (GUIs) from Qt components.

learn more… | top users | synonyms (1)

16
votes
3answers
4k views

Using QTDesigner with PyQT and Python 2.6

I'm new to Python and am starting to teach myself GUI programming (hopefully) using PyQT4.7 and Python 2.6 I just downloaded the whole PyQT/QT4 package (including QTDesigner) from the PyQT website, ...
12
votes
4answers
6k views

Auto-expanding layout with Qt-Designer

I'm using the Qt Designer. I want to create a QVBoxLayout which will automatically expand to fill the whole window. The layout of the QVBoxLayout remains fixed. How can I cause the QVBoxLayout to ...
9
votes
1answer
612 views

Python - Qt. How to make a Terminal Window for Telnet or ssh server interaction

i am making a PyQt application, and i want to make something like a Terminal Window, where the user can interact with a Telnet or ssh server. My first idea was to have a Window with a black ...
7
votes
3answers
4k views

Linking a qtDesigner .ui file to python/pyqt?

So if I go into QtDesigner and build a UI, it'll be saved as a .ui file. How can I make this as a python file or use this in python?
4
votes
2answers
939 views

Help needed to understand form layout mechanisms in Qt

Qt has flexible and powerful layout mechanism to handle view of desktop application's windows. But it is so flexible, that nearly cannot be understood, when something goes wrong and nees fine tuning. ...
4
votes
3answers
2k views

QLabel embedding in QStatusBar using Qt Designer

Is there any solution to embed a QLabel in QStatusBar using Qt Designer?
3
votes
1answer
249 views

QtDesigner & PySide: QTableWidget don't get accessible

I made a form in QtDesigner. This form gets loaded from PySide with help of the function widget = loader.load(file, parent) However, the QTableWidget (with objectNname buffer_table) don't get ...
3
votes
3answers
296 views

Adding Qxt plugin to Designer

I'm having a problem with adding the Qxt library to Qt Designer. The error it gives is: Cannot load library C:/Qt/4.6.2/plugins/designer/QxtDesignerPlugins.dll; The specified module cannot be found. ...
3
votes
1answer
915 views

Adding a Custom Widget to Qt Designer

I've got the following custom widget: class QDESIGNER_WIDGET_EXPORT MySpecialButton : public QAbstractButton { Q_OBJECT ...etc... }; Qt Designer recognizes this widget, and I can place it ...
2
votes
1answer
30 views

How to update a matplotlib figure, from a function, in a Qt GUI

I have written a small GUI with qtdesigner and python which should display in real-time the trajectory of one particle in a matplotlib figure. So I have something like: class ...
2
votes
1answer
78 views

How to implement a signal/slot defined in Qt Designer

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 ...
2
votes
1answer
79 views

applying python functions directly to Qt designer as signals

I am new to Qt and GUI programming overall but i have done a fair bit of coding in python - writing modules and so on. I need to develop simple GUIs for some of my old modules. What i am trying to do ...
2
votes
2answers
84 views

Qt widget resizes to width=256, while it shouldn't

Form setup: QSplitter (highlighted on the image) that contains QTreeWidget (left) and QTableWidget (right): Non-default properties of these two widgets within QSplitter: QTreeWidget minimumSize ...
2
votes
1answer
55 views

How to use QT4 radion buttons?

I've made simple Qt4 design and I want to make it work with c++ but I've got problem with QT4 radio buttons. I have text field, two radio buttons and a submit button. I want when the submit button is ...
2
votes
1answer
137 views

Qt Designer custom plugin and dynamic properties

I am trying to write some set of custom widget as Qt Designer plugin. Some of the properties are same for all my widgets, so I want to make a base class. But there is a problem with multiple ...
2
votes
1answer
104 views

Make qt4 designer under linux to use python3 for handling custom widgets plugins

I use this script to start qt designer with my custom widgets (in Python 3) visible: #!/usr/bin/env python3 import os, sys, subprocess curDir = os.path.dirname(os.path.abspath(__file__)) params = ...
2
votes
2answers
134 views

Initially hidden control in Qt Creator

I want to make a group box shown only when a radio button is selected. I managed to do that by connecting the toggled(bool) signal of the radio button to the setShown(bool) slot of the group box. The ...
2
votes
1answer
144 views

pyQt signals/slots with QtDesigner

I'm trying to write a program that will interact with QGraphicsView. I want to gather mouse and keyboard events when the happen in the QGraphicsView. For example, if the user clicks on the ...
2
votes
2answers
146 views

Qt: Is it possible to connect a signal to a signal in Qt designer

I have been reading in the signals & slots documentation and it says that you can connect a signal to a signal and trigger the slot thats connected to the second signal in the chain. I cant find a ...
2
votes
1answer
161 views

Why is that the designer generated UI classes embedded as “Aggregation” can't implement custom slots?

I see that the designer generated UI classes be embedded using any of the following methods in Qt, Aggregation as a pointer member Aggregation Multiple, Private inheritance but it is said that ...
2
votes
1answer
826 views

Design a window without a caption bar - QT Designer

How can I declare a window without caption when I use QT Designer?
2
votes
1answer
588 views

Apply chrome like tabs in Qt

Ivan made this -- see http://ivan.fomentgroup.org/blog/2009/03/29/instant-chrome/ -- but I don't know how since I am new to Qt. Does anyone have Idea how to achieve this? ...
2
votes
2answers
458 views

Dynamic QT4 Menu in C++

I am using C++ and QT4 on Linux. I wish to add items to the menubar at runtime. My main GUI containing the menubar was designed with QT Designer and setup in the first line of code below. In my main ...
2
votes
1answer
188 views

QT Designer vs Handcoding

Every time I start a project with some graphical toolkit, one of the first conflicts happen with the decision of how to deal with the visual design and the widget layout: A graphical tool or ...
2
votes
2answers
443 views

Qt Designer; difficulty placing widgets in the right parent

Using the Qt Designer I've made a couple of QFrames in each other, each having a horizontal layout. Their stylesheet predicates that they should have no margin nor a padding. This means that in the Qt ...
2
votes
1answer
565 views

Setting a plain background color for a QGraphicsView widget

I'm trying to display a little square of solid color. I've created a QGraphicsView widget myGraphicsView and call: ui->myGraphicsView->setBackgroundBrush(QBrush(Qt::red, Qt::SolidPattern)); ...
2
votes
3answers
164 views

Is it possible to connect slots of a model object to the GUI in QT4 -Designer?

So I try to build a Model-View window using QTDesigner and C++. For that reason I created a QOBject derived class as my model. It provides slots and signals to access it like: setFileName(QString) or ...
2
votes
1answer
994 views

Context Menu Creation with ‪ Qt Designer(Qt Creator IDE)

How can i create a Context menu in Qt Designer (1.3)? Certainly I want to create it with out writing one line code!!
2
votes
2answers
901 views

how can I find out why a custom widget isn't showing up in the Qt Designer?

I created a custom widget by following the instructions provided in Qt Creator's help. I followed everything exactly as they said there. My widget isn't showing up with the other widgets. I even tried ...
1
vote
0answers
69 views

Custom action plugin for Qt Designer

I plan to use a spacer in my toolbar (below) between the 'Pause' and 'Settings' buttons to make the 'Settings' button right-aligned within the QToolBar. The separator below isn't cutting it. The ...
1
vote
1answer
27 views

Layering UI elements in Qt Designer

I have a QLabel that I'm constantly setting it's pixmap (video playback). In my application the user needs to be able to draw (boxes) above the video. How can I layer one of the QPaintDevice classes ...
1
vote
1answer
49 views

QtDesigner - adding splitter layouts to larger layouts

I'm new to Qt Designer, and I am working on a main window where I want to have two list widgets off to the right, laid out in a vertical splitter, and then a larger text browser widget to the left, ...
1
vote
1answer
55 views

How to use custom widget in Qt-Designer

I want to use a custom widget in the GUI-Designer of Qt-Creator IDE. So i created a class which inherits from Qt's QWidget. It worked to place it on a QMainWindow programaticaly, but have to do my ...
1
vote
1answer
167 views

Using QUiLoader and UI files in PySide to dynamically create user interface at run-time

I'm really having a hard time connecting slots from Python to Qt Designer UI files. I've been through all tutorials I could find on PySide (ex: http://zetcode.com/gui/pysidetutorial/eventsandsignals/) ...
1
vote
3answers
59 views

Qt SLOTS parameters (Beginner)

I'm a beginner to Qt and am making (or at least trying to make) a basic calculator. If I understand correctly, when doing this: connect(my_button_4, SIGNAL(clicked()), this, ...
1
vote
1answer
89 views

Qt Designer undefined symbol with Custom Widget plugin

I am using Qt 4.7.2 under Fedora 14. I have a working library of custom widgets which I am trying to integrate into Qt Designer. There is a simple widget base class, then some more complex widgets ...
1
vote
3answers
82 views

Is it possible to copy QCombobox to another QCombobox

I use Qt Designer to build my UI layout. On the layout, I have a combobox named cb_fac_cd. In my code I have a function that will automatically build a combobox based on the list I'm attempting to ...
1
vote
1answer
295 views

Creating simple form with qt-designer and pyqt

I'm trying to run my first application in pyqt. My form looks fine when I'm doing preview in designer: http://imageshack.us/photo/my-images/171/screenshotuw.png/ But if I'm showing it from my script ...
1
vote
1answer
174 views

PyQt and QtDesigner

I am trying to implement a LED in PyQt named disLDR1 by trying to change the background color. I am trying to use QPalette to change the BackgroundRole. But what is the equivalent of Qt::red? Is this ...
1
vote
3answers
41 views

Qt4 Designer Preview Resizing

I have a derived QDialog dialog layed out the way I want, and resizing the way I want, with the problem that the preview starts out resized to a larger size than it should. In designer, the window is ...
1
vote
1answer
102 views

PyQt4 Vertical Layout Autospacing

I am using Qt Designer to set up a simple gui for a program I am writing in which I need to display a column of radio buttons. I want to hide some of the radio buttons (not just disable them) based ...
1
vote
1answer
162 views

PyQt4 filename dialog

I am a bit of a novice so be kind ;-) I had a GUI that I made using PyQt4 and python 2.6 with a working file dialog, (ie you clicked a button and a window popped up and allowed you to pick a file to ...
1
vote
1answer
461 views

How to make a Qt Widget grow with the window size?

I want to have a small QFormLayout that grows to fill its parent widget. I created a new .ui file using the QWidget template in QtDesigner. I put a QFormLayout inside that 'window', then put some ...
1
vote
1answer
134 views

QGraphicsView error - Trying to show a jpg with Python

I'm using Python 3.2 with Eric5 and QTDesigner to try and display a jpg in a QGraphicsView scene. The following code gives me a The file could not be opened. Reason: [Errno 22] Invalid argument: " ...
1
vote
4answers
346 views

Qt: Drop-down button?

How can I create a "drop down button" in Qt? For a non-Qt example, see: Combination button/dropdown in office The key point is that the widget needs an icon for the primary action, and a visually ...
1
vote
1answer
146 views

How do I insert QTabBar in Qt Designer?

This might very well be very stupid question, but I can not find QTabBar in Qt Designer. There is QTabWidged in the "Containers" group, but it is not the same - I don't need different pages, I just ...
1
vote
1answer
391 views

can't edit QML files in designer mode

i am trying out qml designer using qtcreator 2.0.1 but the designer tab is disabled when i create a new qml project. Can qml be edited in designer mode like 'ui' files in c++?
1
vote
1answer
200 views

Controls insist on being too large, and won't resize, in QtDesigner

I made a "widget" in Qt Designer with about a dozen controls organized into horiz. and vert. layouts. Oddly, every horizontal layout wants to be some large size, about 400 px wide, when the whole ...
1
vote
1answer
109 views

Label in a dialog window does not update every release of click of button Main Window (PyQt)

I've designed in a GUI using QtDesigner (at eric4) I've just made a Qlabel as a placeholder which is intended to update with the latest ID that has access to a SQLite database which I'm building. I ...
1
vote
1answer
177 views

Qt - How to override a widget?

I've created a form using the Qt designer which includes a QToolButton. I can turn it using ui->favouriteToolButton. I used the designer because it's much more simple then code all the gui. ...

1 2 3