diff --git a/src/main/java/org/gcube/portlets/user/workspace/client/resources/Icons.java b/src/main/java/org/gcube/portlets/user/workspace/client/resources/Icons.java index 3d21a45..89e1c0e 100644 --- a/src/main/java/org/gcube/portlets/user/workspace/client/resources/Icons.java +++ b/src/main/java/org/gcube/portlets/user/workspace/client/resources/Icons.java @@ -412,5 +412,14 @@ public interface Icons extends ClientBundle { */ @Source("icons/hand.gif") ImageResource hand(); + + @Source("icons/about.png") + ImageResource about(); + + /** + * @return + */ + @Source("icons/info.png") + ImageResource information(); } diff --git a/src/main/java/org/gcube/portlets/user/workspace/client/resources/Resources.java b/src/main/java/org/gcube/portlets/user/workspace/client/resources/Resources.java index da644c9..f5160e9 100644 --- a/src/main/java/org/gcube/portlets/user/workspace/client/resources/Resources.java +++ b/src/main/java/org/gcube/portlets/user/workspace/client/resources/Resources.java @@ -94,6 +94,27 @@ public class Resources { return AbstractImagePrototype.create(ICONS.dvi()); } + + /** + * Gets the icon information. + * + * @return the icon information + */ + public static AbstractImagePrototype getIconInformation(){ + + return AbstractImagePrototype.create(ICONS.information()); + } + + /** + * Gets the icon information. + * + * @return the icon information + */ + public static AbstractImagePrototype getIconAbout(){ + + return AbstractImagePrototype.create(ICONS.about()); + } + /** * Gets the icon shell. * diff --git a/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/about.png b/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/about.png new file mode 100644 index 0000000..59f20af Binary files /dev/null and b/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/about.png differ diff --git a/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/info.png b/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/info.png new file mode 100644 index 0000000..26a4f55 Binary files /dev/null and b/src/main/java/org/gcube/portlets/user/workspace/client/resources/icons/info.png differ