PDA

View Full Version : Creating custom qt widget + not appearing in wizard



kewal.deshpande
28th September 2011, 11:05
I have created and installed a custom widget, However I am trying to understand how do I create a custom form and install. For example, Multipage widget appears in the new form window when being created. I wanted to create a widget which appears in the custom widget section while creating a new form.

nibedit
4th March 2012, 04:26
I guess you are trying to create a container. Just change the isContainer() in your plugin.cpp .

e.g.:-

bool TestPlugin::isContainer() const
{
return true;
}

Good Luck :)