0
votes
PyQt sending parameter to slot when connecting to a signal
In general, you should have each menu item connected to a different slot, and have each slot handle the functionality only for it's own menu item. For example, if you have menu items like "save", …
1
vote
Header dependencies in qmake using MSVC Express
Are your header files listed in the HEADERS variable in your .pro file? I think listing header files in HEADERS is also required to get classes within them MOC'ed.
[edit]N …
0
votes
In Qt, how do I align form elements in different group boxes?
I don't think it'll work with sets of nested horizontal and vertical layouts. Have you considered a QGridLayout?
…
