action.AboutAction.text=&About...
action.AboutAction.image=file:resources/icons/about.png
action.AboutAction.tooltip=About the application
-action.AboutAction.aboutImage=file:resources/icons/about-box.png
+action.AboutAction.aboutImage=file:resources/icons/About_screenshot.png
+action.AboutAction.aboutImageOrig=file:resources/icons/about_box.png
+action.AboutAction.os_license_image=file:resources/icons/cc_license.png
action.OpenExperimentAction.text=Open &Experiment...
action.OpenExperimentAction.image=file:resources/icons/experiment.png
OpenAction.dialog.text=Open an image or saved context
OpenAction.dialog.filter.exts=*.jpg;*.jpeg;*.png;*.gif;*.bmp;*.ctx;*.zip
-OpenAction.dialog.filter.text=Image,Zip and Context Files
+OpenAction.dialog.filter.text=Image, Zip and Context Files
SaveAction.dialog.text=Save Segmentation Context
SaveAction.dialog.filter.exts=*.ctx
action.AboutAction.tooltip=About the application
action.AboutAction.aboutImage=file:resources/icons/About_screenshot.png
action.AboutAction.aboutImageOrig=file:resources/icons/about_box.png
+action.AboutAction.os_license_image=file:resources/icons/cc_license.png
action.OpenExperimentAction.text=Open &Experiment...
action.OpenExperimentAction.image=file:resources/icons/experiment.png
@Override
protected Control createDialogArea(Composite parent) {
+
composite = new Composite(parent, SWT.NONE);
composite.setLayout(LayoutFactory.createGridLayout(5, 5, 2, false));
addLabel(" Based on software:", SWT.RIGHT);
addLink(MESSAGE_ORIG_SOFTWARE);
- // bottom row
+ // 6th row
addLabel(" Originally developed by:", SWT.RIGHT);
addLink(MESSAGE_ORIG);
- //String imageOrig = string("aboutImageOrig");
- //addImage(imageOrig);
+ // Last row
+ addLink("This work is licensed under\n" +
+ "a Creative Commons\n" +
+ "Attribution-NonCommercial-NoDerivs\n" +
+ "3.0 Unported License");
+ String osImage = string("os_license_image");
+ addImage(osImage);
return composite;
}