1
vote
1answer
109 views

How to add a floating toolbar to QFrame in PyQt4?

I have made a stand alone application inheriting from base class QtGui.QFrame, and now I want to add a floating toolbar to it as can be done in a QMainWindow. How should I do it?
2
votes
1answer
596 views

PyQt: Accesing Main Window's Data from a dialog?

So, I'm using Python and PyQt. I have a Main Window that contains a QTableWidget, and a dialog that opens modally and has some QLineEdit widgets... All right so far, but I have 2 problems: When the ...
2
votes
1answer
377 views

PyQT4 - Replacing widgets on main window

I`m new in PyQT4 and I've faced the problem below. Some application must collect users' data on one screen and show next screen on button click. main.py app = QtGui.QApplication(sys.argv) #here I ...
5
votes
2answers
1k views

How to resize QMainWindow after removing all DockWidgets?

I’m trying to make an application consisting of a QMainWindow, the central widget of which is a QToolBar (it may not be usual, but for my purpose the toolbar’s well suited). Docks are allowed below ...
1
vote
1answer
114 views

Using signal to pop-up a screen

I'm having a little trouble using a signal to make a little screen appear. Shortening all i have so far, this following code should show my problem. import sys from PyQt4 import QtGui, QtCore qApp = ...
0
votes
1answer
586 views

Qt: best way to add a context menu to the central widget?

I do not understand why in the book Rapid GUI Programming with Python and Qt, a context menu is added to a central widget by calling addActions() on the main window (self), like so (p. 180): ...