iNTERFACEWARE Products Manual > Installing and Using Iguana > Using Iguana > Working With Plugins > Writing a Plugin > Writing a Plugin in Delphi > Using Chameleon to Generate a Delphi Source Plugin |
|
Looking for Iguana v.5 or v.6? Learn More or see the Help Center.
If you are writing a source plugin in Delphi, the easiest way to create the plugin is to use Chameleon to generate stubcode for it. To do this:
The following is the Client.dpr stubcode file that Chameleon generates:
And the following is the Source.pas stubcode file:
You can modify or customize this code to process messages before they are sent. For more information on the TIGCsource component that is used to implement an Iguana source plugin in Delphi, see the following pages: When you have customized the stubcode to meet your needs, and ensured that it builds successfully, your plugin is ready to be tested. See Testing a Source Plugin for details on how to test your plugin. |