Is there a list of what I can and cannot do in my code using the Qt framework under the LGPL license and keep my source code closed? For instance, can I subclass Qt classes like QWidget, etc.?
Thanks!
|
1
|
Is there a list of what I can and cannot do in my code using the Qt framework under the LGPL license and keep my source code closed? For instance, can I subclass Qt classes like QWidget, etc.? Thanks!
|
|||
|
|
|
|
There is a white paper available from ICS. Qt under LGPL - what are the implications for you? And yes you can subclass all the Qt classes under LGPL, our sales representative from Nokia has confirmed it.
|
|||
|
|
|
|
There's an in-depth discussion of these in this question |
||||
|
|
|
Yes, LGPL (Lesser GPL) basically means if you modify any of the Qt framework code, you are to release those changes to the public. All other uses of the code that belongs to you and uses Qt does not have to have the source code released. I repeat, any changes to Qt code has to be released back to the public if you distribute your program. If it was GPL, then all your source code would have to be released to the public when you distribute your program. |
||||||||||
|
|
|
The answers so far are generally correct, but bear in mind the only answer that matters (i.e. is legally binding) is the real license. And if this is important, you should get real legal advice. |
||
|
|
|
|
Simple answer. If you have to recompile Qt for your changes to work then you are creating a modified work. You can extend a class without rewriting the base class so there is no need to modify the LGPL library. |
||
|
|
|
|
Just use dynamic linking and don't modify Qt at all. The specifics of doing this depend on your platform. |
||
|
|
|
|
As a general guide, if your user can swap out the version of the LGPL library that you used for another version of their own - you have met the requirements of the LGPL. |
||
|
|