This is a very simple example of using the new Clarion7 IDE addin system to put a new item into the help menu.
- Download the addin file – Clarion3rdParty.sdaddin
- Start the Clarion 7 IDE:
- Go to the Tools menu and select the Addin Manager:
- Click the Install Addin button:
- Find the Addin file you downloaded in Step 1
- You should now see the new addin listed in the Addin Manager, restart the IDE to see what it does!
- And there you have it, a new menu item under Help–>Web !
Simply adding a menu item is very easy with the new Clarion 7 IDE. I suppose the hardest part is finding the correct names for everything and getting them in the right place. The Clarion3rdParty.sdaddin file you downloaded at the beginning is just a zip file containing one XML formatted “addin” file. This XML simply tells the IDE what you want to do and where to do it.
This is the XML used in the Clarion3rdParty addin:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<AddIn name = "Clarion3rdPartyAddin" author = "Brahn Partridge" url = "" copyright = "" description = "TODO: Put description here"> <Manifest> <Identity name="ClarionEdge.Clarion3rdPartyAddin" version="0.1"/> <Dependency addin = "SharpDevelop" version = "2.1"/> </Manifest> <Path name = "/SharpDevelop/Workbench/MainMenu/Help/Web"> <MenuItem id = "Clarion3rdParty" label = "Clarion 3rd Party" type="Menu"> <MenuItem id = "ClarionEdge" label = "www.clarionedge.com" icon = "Icons.16x16.WebSearchIcon" link = "https://www.clarionedge.com/"/> </MenuItem> </Path> </AddIn> |
And the download again in case you missed it:
Download: | ![]() |
---|---|
Version: | 0.1 |
Updated: | June 3, 2011 |
Size: | 471 bytes |
Downloads: | 1,072 |
Comments: 2
Arnor Baldvinsson
| #
Hi Brahn,
Thank you very much for this example!
Best regards,
Arnor!
Reply ___