0
votes
1answer
74 views

Qt:How to create a Window that does not minimize and do not block background GUI

I have a QMainWindow that is a child to another window. When the user clicks anywhere in the parent window, I do not want the child window to be minimized. The child window should lose the focus and ...
2
votes
1answer
654 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
2answers
268 views

Why doesn't menu get added?

I'm clearly missing something here; why doesn't the File menu get added in this little example app? import sys from PySide.QtGui import * class Window(QMainWindow): def __init__(self): ...
0
votes
0answers
358 views

Central Widget in Full Screen Pyqt

I have a mainwindow containing many dockwidget, toolbars,and menubars. I am able to toggle the visibility of dockwidgets and toolbars but not the menubars. Why does not the below code work? Is it ...
1
vote
1answer
585 views

QMainWindow flashes and disappears when called from another QMainWindow

This fairly minimal code creates a systray item with three right click options. One is an instance of QDialog, another QMainWindow, and also Quit. It's for a systray-driven app that will have some ...
2
votes
1answer
382 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
115 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
594 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): ...