Hello,
I currently have a Qt project build with Visual Studio 2008.
I developped several widgets which are composed of .ui files with a .cpp and .h for each.
I want to be able to re-use these widgets in other apps.
My question is : what's the best way to do this ? Should I turn my project into a dll which will contain only interface elements (and if so, what happens to the .ui file) ? Or should I just copy and paste them in the next project ?
Most of the behavior will stay the same, but some slight changes might occur, especially in the .ui.
Also, is it possible to connect signals to a library ?
Thank you.