Clarion7 3rdParty Addin!

Posted on Wednesday, May 20th, 2009

This is a very simple example of using the new Clarion7 IDE addin system to put a new item into the help menu.

  1. Download the addin file – Clarion3rdParty.sdaddin
  2. Start the Clarion 7 IDE:
    Start IDE
  3. Go to the Tools menu and select the Addin Manager:
    addinmanager
  4. Click the Install Addin button:
    installaddin
  5. Find the Addin file you downloaded in Step 1
    findaddinfile
  6. You should now see the new addin listed in the Addin Manager, restart the IDE to see what it does!
    restartide
  7. And there you have it, a new menu item under Help–>Web !
    success

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:

<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 = "http://www.clarionedge.com/"/>
		</MenuItem>
 
	</Path>
</AddIn>

And the download again in case you missed it:

Download: download Clarion3rdParty.sdaddin
Version: 0.1
Updated: May 20, 2009
Size: 471 bytes
Downloads: 197
Categorized as Clarion, 3rd Party, Clarion

One Response to
“Clarion7 3rdParty Addin!”

Leave a Reply