create app that has plugin which contains PyQt widget
- by brian
I'm writing an application that will use plugins. In the plugin I want to include a widget that allows the options for that plugin to be setup. The plugin will also include methods to operate on the data.
What is is the best way to include a widget in a plugin?
Below is pseudo code for what I've tried to do.
My original plan was to make the…