Milad Karimi
Milad Karimi

Reputation: 31

Create Qml/C++ application as a plugin

I wonder if it is possible to create an application as a plugin so it can be use inside another Gui application. Something like a media player with Qml in front (not widgets) inside a digital instrument cluster so that we can load/unload it whenever we need. I know about shared objects and routine of making a c++ plugin.but I need GUI/qml apps as a plugin. Please let me know if it is possible and the steps required?

Thanks

Upvotes: 0

Views: 350

Answers (1)

el famoso
el famoso

Reputation: 150

You can create your (almost) whole application as a plugin. But you will at some point need an executable to load your plugin.

But making your whole application as a plugin isn't the best way. Only use plugins for the parts of your application that you will change, so that you only have to update the plugins file that are dynamically loaded, and let the rest stay static.

Now you also need to do some research by yourself, read the documentation, find out how to make and use a Qt plugin... Your question isn't specific and answers are not tutorials...

Upvotes: 1

Related Questions