Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Concepts/Icons"

m (Category changed)
m (Use the current version template.)
Line 24: Line 24:
  
 
== See Also ==
 
== See Also ==
* {{ScoutLink|HowTo|Add_an_icon|How to add an icon ?}}  
+
* {{ScoutLink|HowTo/{{ScoutCurrentVersion}}|Add_an_icon|How to add an icon ?}}  
 
* {{ScoutLink|Concepts|Shared Plug-In|Shared Plug-In}}
 
* {{ScoutLink|Concepts|Shared Plug-In|Shared Plug-In}}

Revision as of 08:44, 18 August 2012

The Scout documentation has been moved to https://eclipsescout.github.io/.

Class that contains as static members the icons that are available.

Description

Every where icons are needed, a String IconId is requested. (for example property The Scout documentation has been moved to https://eclipsescout.github.io/. of a The Scout documentation has been moved to https://eclipsescout.github.io/.)).

extends The Scout documentation has been moved to https://eclipsescout.github.io/. ???

static members mapping from the requested IconId String values to the name of the icon image files.

public static final String UserHome ="home_red";


Usage :

@Override
protected String getConfiguredIconId(){
  return Icons.UserHome;
 }


See Also

Back to the top