tags:

views:

111

answers:

2

I am writing a custom app that requires a help system.

The app is written in SWT.

Is there anyway I can generate eclipse style help with SWT?

I.e when you press F1 in the Eclipse editor you get a new window on the side.

As an aside, I would also like to be able to provide an editor for this help documentation.

A: 

Try looking into Eclipse RCP for helpview.

Gabriel Ščerbák
+1  A: 

You can find instructions here: Adding Help Support to a Rich Client Platform (RCP) Application

Fabian Steeg
it seems that this tutorial is a little old... I cant get the plug-in app to load the help page (after adding the org.eclipse.help dependency) any other tips?
geejay
@geejay: Any errors logged if you pass `-consolelog` as a program argument in your run configuration? Also, you could try adding the help extension via the wizard (MANIFEST.MF -> Extensions -> Add... -> Extension Wizards -> Help Content). Just tried that with Galileo (Eclipse 3.5) and the new help page shows up in the *Help* menu if I choose *Help Contents*.
Fabian Steeg
Thanks for the help Fabian, i actually got it working, I didn't add the required dependencies properly.
geejay