I've created a wizard for creating a custom form. It's working normal. I can create it from the File> Other> 'MyWizards' menu. But, I would like to add the common options of forms and dialogs: "Use", "Inherit" and "Copy". How to do this? Is there any interface method that needs to be implemented to set that it is inheritable? Below is a snippet of my assistant's code.
type
TMyFormWizard = class(TNotifierObject, IOTAWizard, IOTAProjectWizard, IOTARepositoryWizard, IUnknown, IOTARepositoryWizard80)
...
TUnitCreator = class (TNotifierObject, IOTACreator, IOTAModuleCreator)
...
TBaseFile = class(TInterfacedObject)
...
TUnitFile = class(TBaseFile, IOTAFile)
...
TFormFile = class(TBaseFile, IOTAFile)
Below is a picture of an example of how I would like my wizard to stay. Similar to native Delphi objects (like a AboutBox)