Questions tagged [pyqt4]
8 questions
19
votes
3 answers
QT-C++ vs Generic C++ and STL
Been brushing up on my C++ lately, on Ubuntu QQ. I love the Qt framework for everything, especially building GUI's. I became quite familiar with it when using PyQt over the last few years.
When using PyQt, I had some issues that are now more…

Vector
- 3,180
- 3
- 22
- 25
4
votes
2 answers
Under what license may this PyQt-based "Hello World" app be distributed?
Update: I was wrong about the PyQt license. It isn't merely a GPL license. The PyQt authors include a special set of exceptions that allow users to release their own code under a different license, as long as it is one of the Open-Source licenses…

superbatfish
- 161
- 1
- 6
4
votes
1 answer
PyQt application architecture
I'm trying to give a sound structure to a PyQt application that implements a card game. So far I have the following classes:
Ui_Game: this describes the ui of course and is responsible of
reacting to the events emitted by my CardWidget…

Lorenzo
- 277
- 3
- 4
3
votes
2 answers
can I sell a software that uses a GPL library and another BSD licensed library?
This is the first time I have dealt with licensing issues so I am sorry if I am making any stupid assumptions. My issue is that I have written a program in Python that uses PyQT for the GUI and also uses another library licensed under BSD.
PyQT…

stois21
- 31
- 1
- 2
2
votes
1 answer
Do I need to make my code open source or buy a license?
I want to develop a GUI in python for my company in order to sell it to the customer.
Being fresh from the university where I used pyQt, I promptly started programming using that library, just to discover the fact that it is under GNU GPL, making it…

Francesco Pegoraro
- 139
- 1
- 5
0
votes
1 answer
What are the external dependencies of a Python executable?
I guess there is a tool called Py2Exe to convert a Python application into an executable file. Since I am also using PyQt4 for GUI apps., what are the external dependencies for such an executable? What type of files I need to bundle along with my…

RPK
- 4,378
- 11
- 41
- 65
0
votes
1 answer
does anyone know how to use the PyQt 'uic' module method 'compileUiDir'?
I don't find the docstring to be very clear:
def compileUiDir(dir, recurse=False, map=None, **compileUi_args):
"""compileUiDir(dir, recurse=False, map=None, **compileUi_args)
Creates Python modules from Qt Designer .ui files in a directory…

Cybran
- 341
- 3
- 8
-7
votes
1 answer
Why we need compile PyQt before use it on Mac?
Why we need compile PyQt rather than simply using 'pip install' to put PyQt to my package repository? What happened during the compiling? Can I compiled PyQt once but allow many Macs through share folder to import it?

Isaac
- 101
- 4