Search found 1 match

by CLbs
Fri Jul 21, 2017 3:42 pm
Forum: Plugins
Topic: Integrating a Qt Widget in a plugin
Replies: 1
Views: 7333

Integrating a Qt Widget in a plugin

Hi all,

I'm really new to Qt and CC and I developed a little Qt application with my own class just opening a window with some widget inside, alone it works fine with just the following main :
// Create the Qt app
QApplication app(argc, argv);
// Create my own window
MyWidget window;
window ...