I’ve been working on a syntax highlighting addin for powerpoint for some time now. I finally feel that it is stable enough to push a first version onto the interwebs.
You can use it on your slides to make code in there more readable and have a consistent styling. I know you can use “paste with keep formatting”, but I find it can be annoying.
I used Alsing.Syntaxbox and  NRtfTree to help with the heavy lifting. I modified them a bit, just by removing code I didn’t need.
What it does, essentially, is add a couple of buttons to a Ribbon. When you click a button, the addin detects which element was selected on a slide and applies syntax coloring of the selected language to it. To do this, a SyntaxDocument is created, it parses and calculates the styles for each word. Then I take the output of the SyntaxDocument and feed it into a RtfDocument. When that is done, i use the clipboard to do a rich paste into the element and apply some styles I like. It is written in C#. The syntax definition files are included as embedded resources.
To install the addin: unzip (using 7zip) the archive, then double click the SyntaxColoring.vsto file. This will install the plugin for you. You can remove it from your machine in “Add or remove programs”. In Powerpoint you can enable and disable the addin, or remove it if you don’t like it. Note that you might need to install the Visual Studio 2010 Tools for Office, before you can execute the vsto file.
Please provide feedback if you like this or if you have suggestions for improvement. Take the source code and make it better. This is released under a GPL licence. You can take it, modify it, but you have to give me credit and publish the source of your modifications. There is no support or warranty of any kind. The components I used are open source, so respect the licence of those.
Leave a Reply