The WorkbenchConfiguration configures the Eclipse WorkbenchWindow.
This is called when the workbench is starting up and gives the client
application a chance to customize the properties of the WorkbenchWindow.
The implementation of this interface that is called by the framework
is specified by the extension in the preferences under the key
'net.refractions.udig.ui/workbenchConfiguration'. You can place this in your
product's plugin_customization.ini.
Example:
net.refractions.udig.ui/workbenchConfiguration=net.refractions.udig.internal.ui.uDigWorkbenchConfiguration
Example class implementation:
public void configureWorkbench( IWorkbenchWindowConfigurer configurer ) {
configurer.setShowProgressIndicator(true);
configurer.setInitialSize(new Point(800, 600));
configurer.setShowPerspectiveBar( true );
configurer.setShowCoolBar(true);
configurer.setShowStatusLine(true);
configurer.setShowFastViewBars(true);
}
author: rgould since: 1.1.0 |