/**
* Shows a JPanle that allows the ColourScheme to be edited and returns a handle
*/
public CustomColourSchemeEditor showEditColourScheme() {
if (colourSchemeEditor == null) {
colourSchemeEditor = new CustomColourSchemeEditor(this);
}
colourSchemeEditor.showEditor();
return colourSchemeEditor;
}