1. Introduction

Provides a shortcut for adding icons based on Mark James' Silk Icons.

Griffon version: 2.3.0

2. Usage

2.1. Swing

The griffon-silk-swing:1.1.0 JAR provides a new Icon class: griffon.swing.support.silkicons.SilkIcon. You may use this class with any Swing component that supports an Icon property.

2.2. JavaFX

The griffon-silk-javafx:1.1.0 JAR provides a subclass of Image: griffon.javafx.support.silkicons.SilkIcon. You may use this class with any JavaFX control that accepts a graphic property, as long as you wrap the icon with an ImageView instance.

2.3. Action Resources

Action icons can be set using resources files if the following format is used:

iconClassName|description

Here’s an example using the Swing icon

griffon-app/i18n/messages.properties
org.example.AppController.action.Preferences.icon=griffon.swing.support.silkicons.SilkIcon|star

The JavaFX version for the same icon value is

griffon-app/i18n/messages.properties
org.example.AppController.action.Preferences.icon=griffon.javafx.support.silkicons.SilkIcon|star

3. Configuration

The plugin delivers artifacts for both Swing and JavaFX. It also contains Groovy enhancements that can be used in combination with the respective UI toolkit DSL (SwingBuilder and GroovyFX).

3.1. Gradle

You have two options for configuring this plugin: automatic and manual.

3.1.1. Automatic

As long as the project has the org.codehaus.griffon.griffon plugin applied to it you may include the following snippet in build.gradle

dependencies {
    griffon 'org.codehaus.griffon.plugins:griffon-silkicons-plugin:1.1.0'
}

The griffon plugin will take care of the rest given its configuration.

3.1.2. Manual

You will need to configure any of the following blocks depending on your setup

Java + Swing
dependencies {
    compile 'org.codehaus.griffon.plugins:griffon-silkicons-swing:1.1.0'
}
Java + JavaFX
dependencies {
    compile 'org.codehaus.griffon.plugins:griffon-silkicons-javafx:1.1.0'
}
Groovy + Swing
dependencies {
    compile 'org.codehaus.griffon.plugins:griffon-silkicons-swing-groovy:1.1.0'
}
Groovy + JavaFX
dependencies {
    compile 'org.codehaus.griffon.plugins:griffon-silkicons-javafx-groovy:1.1.0'
}

3.2. Maven

First configure the griffon-silkicons-plugin BOM in your POM file, by placing the following snippet before the <build> element

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.codehaus.griffon.plugins</groupId>
            <artifactId>griffon-silkicons-plugin</artifactId>
            <version>1.1.0</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

Next configure dependencies as required by your particular setup

Java + Swing
<dependency>
    <groupId>org.codehaus.griffon.plugins</groupId>
    <artifactId>griffon-silkicons-swing</artifactId>
</dependency>
Java + JavaFX
<dependency>
    <groupId>org.codehaus.griffon.plugins</groupId>
    <artifactId>griffon-silkicons-javafx</artifactId>
</dependency>
Groovy + Swing
<dependency>
    <groupId>org.codehaus.griffon.plugins</groupId>
    <artifactId>griffon-silkicons-swing-groovy</artifactId>
</dependency>
Groovy + JavaFX
<dependency>
    <groupId>org.codehaus.griffon.plugins</groupId>
    <artifactId>griffon-silkicons-javafx-groovy</artifactId>
</dependency>

4. Modules

The following sections display all bindings per module. Use this information to successfully override a binding on your own modules or to troubleshoot a module binding if the wrong type has been applied by the Griffon runtime.

4.1. JavaFX

Module name: silkicons-javafx-groovy

Depends on: javafx-groovy

bind(BuilderCustomizer.class)
    .to(SilkIconsJavaFXBuilderCustomizer.class)
    .asSingleton();

The following nodes will become available on a Groovy View

Node Type

silkIcon

griffon.javafx.support.silkicons.SilkIcon

4.2. Swing

Module name: silkicons-swing-groovy

Depends on: swing-groovy

bind(BuilderCustomizer.class)
    .to(SilkIconsSwingBuilderCustomizer.class)
    .asSingleton();

The following nodes will become available on a Groovy View

Node Type

silkIcon

griffon.swing.support.silkicons.SilkIcon

Both silkIcon Nodes support the following properties

icon

The name of the icon, such as tux or add.

6. Icon Cheat Sheet

The following table show all available icons.

Name Icon Name Icon Name Icon

accept

accept

add

add

anchor

anchor

application

application

application_add

application_add

application_cascade

application_cascade

application_delete

application_delete

application_double

application_double

application_edit

application_edit

application_error

application_error

application_form

application_form

application_form_add

application_form_add

application_form_delete

application_form_delete

application_form_edit

application_form_edit

application_form_magnify

application_form_magnify

application_get

application_get

application_go

application_go

application_home

application_home

application_key

application_key

application_lightning

application_lightning

application_link

application_link

application_osx

application_osx

application_osx_terminal

application_osx_terminal

application_put

application_put

application_side_boxes

application_side_boxes

application_side_contract

application_side_contract

application_side_expand

application_side_expand

application_side_list

application_side_list

application_side_tree

application_side_tree

application_split

application_split

application_tile_horizontal

application_tile_horizontal

application_tile_vertical

application_tile_vertical

application_view_columns

application_view_columns

application_view_detail

application_view_detail

application_view_gallery

application_view_gallery

application_view_icons

application_view_icons

application_view_list

application_view_list

application_view_tile

application_view_tile

application_xp

application_xp

application_xp_terminal

application_xp_terminal

arrow_branch

arrow_branch

arrow_divide

arrow_divide

arrow_down

arrow_down

arrow_in

arrow_in

arrow_inout

arrow_inout

arrow_join

arrow_join

arrow_left

arrow_left

arrow_merge

arrow_merge

arrow_out

arrow_out

arrow_redo

arrow_redo

arrow_refresh

arrow_refresh

arrow_refresh_small

arrow_refresh_small

arrow_right

arrow_right

arrow_rotate_anticlockwise

arrow_rotate_anticlockwise

arrow_rotate_clockwise

arrow_rotate_clockwise

arrow_switch

arrow_switch

arrow_turn_left

arrow_turn_left

arrow_turn_right

arrow_turn_right

arrow_undo

arrow_undo

arrow_up

arrow_up

asterisk_orange

asterisk_orange

asterisk_yellow

asterisk_yellow

attach

attach

award_star_add

award_star_add

award_star_bronze_1

award_star_bronze_1

award_star_bronze_2

award_star_bronze_2

award_star_bronze_3

award_star_bronze_3

award_star_delete

award_star_delete

award_star_gold_1

award_star_gold_1

award_star_gold_2

award_star_gold_2

award_star_gold_3

award_star_gold_3

award_star_silver_1

award_star_silver_1

award_star_silver_2

award_star_silver_2

award_star_silver_3

award_star_silver_3

basket

basket

basket_add

basket_add

basket_delete

basket_delete

basket_edit

basket_edit

basket_error

basket_error

basket_go

basket_go

basket_put

basket_put

basket_remove

basket_remove

bell

bell

bell_add

bell_add

bell_delete

bell_delete

bell_error

bell_error

bell_go

bell_go

bell_link

bell_link

bin

bin

bin_closed

bin_closed

bin_empty

bin_empty

bomb

bomb

book

book

book_add

book_add

book_addresses

book_addresses

book_delete

book_delete

book_edit

book_edit

book_error

book_error

book_go

book_go

book_key

book_key

book_link

book_link

book_next

book_next

book_open

book_open

book_previous

book_previous

box

box

brick

brick

brick_add

brick_add

brick_delete

brick_delete

brick_edit

brick_edit

brick_error

brick_error

brick_go

brick_go

brick_link

brick_link

bricks

bricks

briefcase

briefcase

bug

bug

bug_add

bug_add

bug_delete

bug_delete

bug_edit

bug_edit

bug_error

bug_error

bug_go

bug_go

bug_link

bug_link

building

building

building_add

building_add

building_delete

building_delete

building_edit

building_edit

building_error

building_error

building_go

building_go

building_key

building_key

building_link

building_link

bullet_add

bullet_add

bullet_arrow_bottom

bullet_arrow_bottom

bullet_arrow_down

bullet_arrow_down

bullet_arrow_top

bullet_arrow_top

bullet_arrow_up

bullet_arrow_up

bullet_black

bullet_black

bullet_blue

bullet_blue

bullet_delete

bullet_delete

bullet_disk

bullet_disk

bullet_error

bullet_error

bullet_feed

bullet_feed

bullet_go

bullet_go

bullet_green

bullet_green

bullet_key

bullet_key

bullet_orange

bullet_orange

bullet_picture

bullet_picture

bullet_pink

bullet_pink

bullet_purple

bullet_purple

bullet_red

bullet_red

bullet_star

bullet_star

bullet_toggle_minus

bullet_toggle_minus

bullet_toggle_plus

bullet_toggle_plus

bullet_white

bullet_white

bullet_wrench

bullet_wrench

bullet_yellow

bullet_yellow

cake

cake

calculator

calculator

calculator_add

calculator_add

calculator_delete

calculator_delete

calculator_edit

calculator_edit

calculator_error

calculator_error

calculator_link

calculator_link

calendar

calendar

calendar_add

calendar_add

calendar_delete

calendar_delete

calendar_edit

calendar_edit

calendar_link

calendar_link

calendar_view_day

calendar_view_day

calendar_view_month

calendar_view_month

calendar_view_week

calendar_view_week

camera

camera

camera_add

camera_add

camera_delete

camera_delete

camera_edit

camera_edit

camera_error

camera_error

camera_go

camera_go

camera_link

camera_link

camera_small

camera_small

cancel

cancel

car

car

car_add

car_add

car_delete

car_delete

cart

cart

cart_add

cart_add

cart_delete

cart_delete

cart_edit

cart_edit

cart_error

cart_error

cart_go

cart_go

cart_put

cart_put

cart_remove

cart_remove

cd

cd

cd_add

cd_add

cd_burn

cd_burn

cd_delete

cd_delete

cd_edit

cd_edit

cd_eject

cd_eject

cd_go

cd_go

chart_bar

chart_bar

chart_bar_add

chart_bar_add

chart_bar_delete

chart_bar_delete

chart_bar_edit

chart_bar_edit

chart_bar_error

chart_bar_error

chart_bar_link

chart_bar_link

chart_curve

chart_curve

chart_curve_add

chart_curve_add

chart_curve_delete

chart_curve_delete

chart_curve_edit

chart_curve_edit

chart_curve_error

chart_curve_error

chart_curve_go

chart_curve_go

chart_curve_link

chart_curve_link

chart_line

chart_line

chart_line_add

chart_line_add

chart_line_delete

chart_line_delete

chart_line_edit

chart_line_edit

chart_line_error

chart_line_error

chart_line_link

chart_line_link

chart_organisation

chart_organisation

chart_organisation_add

chart_organisation_add

chart_organisation_delete

chart_organisation_delete

chart_pie

chart_pie

chart_pie_add

chart_pie_add

chart_pie_delete

chart_pie_delete

chart_pie_edit

chart_pie_edit

chart_pie_error

chart_pie_error

chart_pie_link

chart_pie_link

clock

clock

clock_add

clock_add

clock_delete

clock_delete

clock_edit

clock_edit

clock_error

clock_error

clock_go

clock_go

clock_link

clock_link

clock_pause

clock_pause

clock_play

clock_play

clock_red

clock_red

clock_stop

clock_stop

cog

cog

cog_add

cog_add

cog_delete

cog_delete

cog_edit

cog_edit

cog_error

cog_error

cog_go

cog_go

coins

coins

coins_add

coins_add

coins_delete

coins_delete

color_swatch

color_swatch

color_wheel

color_wheel

comment

comment

comment_add

comment_add

comment_delete

comment_delete

comment_edit

comment_edit

comments

comments

comments_add

comments_add

comments_delete

comments_delete

compress

compress

computer

computer

computer_add

computer_add

computer_delete

computer_delete

computer_edit

computer_edit

computer_error

computer_error

computer_go

computer_go

computer_key

computer_key

computer_link

computer_link

connect

connect

contrast

contrast

contrast_decrease

contrast_decrease

contrast_high

contrast_high

contrast_increase

contrast_increase

contrast_low

contrast_low

control_eject

control_eject

control_eject_blue

control_eject_blue

control_end

control_end

control_end_blue

control_end_blue

control_equalizer

control_equalizer

control_equalizer_blue

control_equalizer_blue

control_fastforward

control_fastforward

control_fastforward_blue

control_fastforward_blue

control_pause

control_pause

control_pause_blue

control_pause_blue

control_play

control_play

control_play_blue

control_play_blue

control_repeat

control_repeat

control_repeat_blue

control_repeat_blue

control_rewind

control_rewind

control_rewind_blue

control_rewind_blue

control_start

control_start

control_start_blue

control_start_blue

control_stop

control_stop

control_stop_blue

control_stop_blue

controller

controller

controller_add

controller_add

controller_delete

controller_delete

controller_error

controller_error

creditcards

creditcards

cross

cross

css

css

css_add

css_add

css_delete

css_delete

css_go

css_go

css_valid

css_valid

cup

cup

cup_add

cup_add

cup_delete

cup_delete

cup_edit

cup_edit

cup_error

cup_error

cup_go

cup_go

cup_key

cup_key

cup_link

cup_link

cursor

cursor

cut

cut

cut_red

cut_red

database

database

database_add

database_add

database_connect

database_connect

database_delete

database_delete

database_edit

database_edit

database_error

database_error

database_gear

database_gear

database_go

database_go

database_key

database_key

database_lightning

database_lightning

database_link

database_link

database_refresh

database_refresh

database_save

database_save

database_table

database_table

date

date

date_add

date_add

date_delete

date_delete

date_edit

date_edit

date_error

date_error

date_go

date_go

date_link

date_link

date_magnify

date_magnify

date_next

date_next

date_previous

date_previous

delete

delete

disconnect

disconnect

disk

disk

disk_multiple

disk_multiple

door

door

door_in

door_in

door_open

door_open

door_out

door_out

drink

drink

drink_empty

drink_empty

drive

drive

drive_add

drive_add

drive_burn

drive_burn

drive_cd

drive_cd

drive_cd_empty

drive_cd_empty

drive_delete

drive_delete

drive_disk

drive_disk

drive_edit

drive_edit

drive_error

drive_error

drive_go

drive_go

drive_key

drive_key

drive_link

drive_link

drive_magnify

drive_magnify

drive_network

drive_network

drive_rename

drive_rename

drive_user

drive_user

drive_web

drive_web

dvd

dvd

dvd_add

dvd_add

dvd_delete

dvd_delete

dvd_edit

dvd_edit

dvd_error

dvd_error

dvd_go

dvd_go

dvd_key

dvd_key

dvd_link

dvd_link

email

email

email_add

email_add

email_attach

email_attach

email_delete

email_delete

email_edit

email_edit

email_error

email_error

email_go

email_go

email_link

email_link

email_open

email_open

email_open_image

email_open_image

emoticon_evilgrin

emoticon_evilgrin

emoticon_grin

emoticon_grin

emoticon_happy

emoticon_happy

emoticon_smile

emoticon_smile

emoticon_surprised

emoticon_surprised

emoticon_tongue

emoticon_tongue

emoticon_unhappy

emoticon_unhappy

emoticon_waii

emoticon_waii

emoticon_wink

emoticon_wink

error

error

error_add

error_add

error_delete

error_delete

error_go

error_go

exclamation

exclamation

eye

eye

feed

feed

feed_add

feed_add

feed_delete

feed_delete

feed_disk

feed_disk

feed_edit

feed_edit

feed_error

feed_error

feed_go

feed_go

feed_key

feed_key

feed_link

feed_link

feed_magnify

feed_magnify

female

female

film

film

film_add

film_add

film_delete

film_delete

film_edit

film_edit

film_error

film_error

film_go

film_go

film_key

film_key

film_link

film_link

film_save

film_save

find

find

flag_blue

flag_blue

flag_green

flag_green

flag_orange

flag_orange

flag_pink

flag_pink

flag_purple

flag_purple

flag_red

flag_red

flag_yellow

flag_yellow

folder

folder

folder_add

folder_add

folder_bell

folder_bell

folder_brick

folder_brick

folder_bug

folder_bug

folder_camera

folder_camera

folder_database

folder_database

folder_delete

folder_delete

folder_edit

folder_edit

folder_error

folder_error

folder_explore

folder_explore

folder_feed

folder_feed

folder_find

folder_find

folder_go

folder_go

folder_heart

folder_heart

folder_image

folder_image

folder_key

folder_key

folder_lightbulb

folder_lightbulb

folder_link

folder_link

folder_magnify

folder_magnify

folder_page

folder_page

folder_page_white

folder_page_white

folder_palette

folder_palette

folder_picture

folder_picture

folder_star

folder_star

folder_table

folder_table

folder_user

folder_user

folder_wrench

folder_wrench

font

font

font_add

font_add

font_delete

font_delete

font_go

font_go

group

group

group_add

group_add

group_delete

group_delete

group_edit

group_edit

group_error

group_error

group_gear

group_gear

group_go

group_go

group_key

group_key

group_link

group_link

heart

heart

heart_add

heart_add

heart_delete

heart_delete

help

help

hourglass

hourglass

hourglass_add

hourglass_add

hourglass_delete

hourglass_delete

hourglass_go

hourglass_go

hourglass_link

hourglass_link

house

house

house_go

house_go

house_link

house_link

html

html

html_add

html_add

html_delete

html_delete

html_go

html_go

html_valid

html_valid

image

image

image_add

image_add

image_delete

image_delete

image_edit

image_edit

image_link

image_link

images

images

information

information

ipod

ipod

ipod_cast

ipod_cast

ipod_cast_add

ipod_cast_add

ipod_cast_delete

ipod_cast_delete

ipod_sound

ipod_sound

joystick

joystick

joystick_add

joystick_add

joystick_delete

joystick_delete

joystick_error

joystick_error

key

key

key_add

key_add

key_delete

key_delete

key_go

key_go

keyboard

keyboard

keyboard_add

keyboard_add

keyboard_delete

keyboard_delete

keyboard_magnify

keyboard_magnify

layers

layers

layout

layout

layout_add

layout_add

layout_content

layout_content

layout_delete

layout_delete

layout_edit

layout_edit

layout_error

layout_error

layout_header

layout_header

layout_link

layout_link

layout_sidebar

layout_sidebar

lightbulb

lightbulb

lightbulb_add

lightbulb_add

lightbulb_delete

lightbulb_delete

lightbulb_off

lightbulb_off

lightning

lightning

lightning_add

lightning_add

lightning_delete

lightning_delete

lightning_go

lightning_go

link

link

link_add

link_add

link_break

link_break

link_delete

link_delete

link_edit

link_edit

link_error

link_error

link_go

link_go

lock

lock

lock_add

lock_add

lock_break

lock_break

lock_delete

lock_delete

lock_edit

lock_edit

lock_go

lock_go

lock_open

lock_open

lorry

lorry

lorry_add

lorry_add

lorry_delete

lorry_delete

lorry_error

lorry_error

lorry_flatbed

lorry_flatbed

lorry_go

lorry_go

lorry_link

lorry_link

magifier_zoom_out

magifier_zoom_out

magnifier

magnifier

magnifier_zoom_in

magnifier_zoom_in

male

male

map

map

map_add

map_add

map_delete

map_delete

map_edit

map_edit

map_go

map_go

map_magnify

map_magnify

medal_bronze_1

medal_bronze_1

medal_bronze_2

medal_bronze_2

medal_bronze_3

medal_bronze_3

medal_bronze_add

medal_bronze_add

medal_bronze_delete

medal_bronze_delete

medal_gold_1

medal_gold_1

medal_gold_2

medal_gold_2

medal_gold_3

medal_gold_3

medal_gold_add

medal_gold_add

medal_gold_delete

medal_gold_delete

medal_silver_1

medal_silver_1

medal_silver_2

medal_silver_2

medal_silver_3

medal_silver_3

medal_silver_add

medal_silver_add

medal_silver_delete

medal_silver_delete

money

money

money_add

money_add

money_delete

money_delete

money_dollar

money_dollar

money_euro

money_euro

money_pound

money_pound

money_yen

money_yen

monitor

monitor

monitor_add

monitor_add

monitor_delete

monitor_delete

monitor_edit

monitor_edit

monitor_error

monitor_error

monitor_go

monitor_go

monitor_lightning

monitor_lightning

monitor_link

monitor_link

mouse

mouse

mouse_add

mouse_add

mouse_delete

mouse_delete

mouse_error

mouse_error

music

music

new

new

newspaper

newspaper

newspaper_add

newspaper_add

newspaper_delete

newspaper_delete

newspaper_go

newspaper_go

newspaper_link

newspaper_link

note

note

note_add

note_add

note_delete

note_delete

note_edit

note_edit

note_error

note_error

note_go

note_go

overlays

overlays

package

package

package_add

package_add

package_delete

package_delete

package_go

package_go

package_green

package_green

package_link

package_link

page

page

page_add

page_add

page_attach

page_attach

page_code

page_code

page_copy

page_copy

page_delete

page_delete

page_edit

page_edit

page_error

page_error

page_excel

page_excel

page_find

page_find

page_gear

page_gear

page_go

page_go

page_green

page_green

page_key

page_key

page_lightning

page_lightning

page_link

page_link

page_paintbrush

page_paintbrush

page_paste

page_paste

page_red

page_red

page_refresh

page_refresh

page_save

page_save

page_white

page_white

page_white_acrobat

page_white_acrobat

page_white_actionscript

page_white_actionscript

page_white_add

page_white_add

page_white_c

page_white_c

page_white_camera

page_white_camera

page_white_cd

page_white_cd

page_white_code

page_white_code

page_white_code_red

page_white_code_red

page_white_coldfusion

page_white_coldfusion

page_white_compressed

page_white_compressed

page_white_copy

page_white_copy

page_white_cplusplus

page_white_cplusplus

page_white_csharp

page_white_csharp

page_white_cup

page_white_cup

page_white_database

page_white_database

page_white_delete

page_white_delete

page_white_dvd

page_white_dvd

page_white_edit

page_white_edit

page_white_error

page_white_error

page_white_excel

page_white_excel

page_white_find

page_white_find

page_white_flash

page_white_flash

page_white_freehand

page_white_freehand

page_white_gear

page_white_gear

page_white_get

page_white_get

page_white_go

page_white_go

page_white_h

page_white_h

page_white_horizontal

page_white_horizontal

page_white_key

page_white_key

page_white_lightning

page_white_lightning

page_white_link

page_white_link

page_white_magnify

page_white_magnify

page_white_medal

page_white_medal

page_white_office

page_white_office

page_white_paint

page_white_paint

page_white_paintbrush

page_white_paintbrush

page_white_paste

page_white_paste

page_white_php

page_white_php

page_white_picture

page_white_picture

page_white_powerpoint

page_white_powerpoint

page_white_put

page_white_put

page_white_ruby

page_white_ruby

page_white_stack

page_white_stack

page_white_star

page_white_star

page_white_swoosh

page_white_swoosh

page_white_text

page_white_text

page_white_text_width

page_white_text_width

page_white_tux

page_white_tux

page_white_vector

page_white_vector

page_white_visualstudio

page_white_visualstudio

page_white_width

page_white_width

page_white_word

page_white_word

page_white_world

page_white_world

page_white_wrench

page_white_wrench

page_white_zip

page_white_zip

page_word

page_word

page_world

page_world

paintbrush

paintbrush

paintcan

paintcan

palette

palette

paste_plain

paste_plain

paste_word

paste_word

pencil

pencil

pencil_add

pencil_add

pencil_delete

pencil_delete

pencil_go

pencil_go

phone

phone

phone_add

phone_add

phone_delete

phone_delete

phone_sound

phone_sound

photo

photo

photo_add

photo_add

photo_delete

photo_delete

photo_link

photo_link

photos

photos

picture

picture

picture_add

picture_add

picture_delete

picture_delete

picture_edit

picture_edit

picture_empty

picture_empty

picture_error

picture_error

picture_go

picture_go

picture_key

picture_key

picture_link

picture_link

picture_save

picture_save

pictures

pictures

pilcrow

pilcrow

pill

pill

pill_add

pill_add

pill_delete

pill_delete

pill_go

pill_go

plugin

plugin

plugin_add

plugin_add

plugin_delete

plugin_delete

plugin_disabled

plugin_disabled

plugin_edit

plugin_edit

plugin_error

plugin_error

plugin_go

plugin_go

plugin_link

plugin_link

printer

printer

printer_add

printer_add

printer_delete

printer_delete

printer_empty

printer_empty

printer_error

printer_error

rainbow

rainbow

report

report

report_add

report_add

report_delete

report_delete

report_disk

report_disk

report_edit

report_edit

report_go

report_go

report_key

report_key

report_link

report_link

report_magnify

report_magnify

report_picture

report_picture

report_user

report_user

report_word

report_word

resultset_first

resultset_first

resultset_last

resultset_last

resultset_next

resultset_next

resultset_previous

resultset_previous

rosette

rosette

rss

rss

rss_add

rss_add

rss_delete

rss_delete

rss_go

rss_go

rss_valid

rss_valid

ruby

ruby

ruby_add

ruby_add

ruby_delete

ruby_delete

ruby_gear

ruby_gear

ruby_get

ruby_get

ruby_go

ruby_go

ruby_key

ruby_key

ruby_link

ruby_link

ruby_put

ruby_put

script

script

script_add

script_add

script_code

script_code

script_code_red

script_code_red

script_delete

script_delete

script_edit

script_edit

script_error

script_error

script_gear

script_gear

script_go

script_go

script_key

script_key

script_lightning

script_lightning

script_link

script_link

script_palette

script_palette

script_save

script_save

server

server

server_add

server_add

server_chart

server_chart

server_compressed

server_compressed

server_connect

server_connect

server_database

server_database

server_delete

server_delete

server_edit

server_edit

server_error

server_error

server_go

server_go

server_key

server_key

server_lightning

server_lightning

server_link

server_link

server_uncompressed

server_uncompressed

shading

shading

shape_align_bottom

shape_align_bottom

shape_align_center

shape_align_center

shape_align_left

shape_align_left

shape_align_middle

shape_align_middle

shape_align_right

shape_align_right

shape_align_top

shape_align_top

shape_flip_horizontal

shape_flip_horizontal

shape_flip_vertical

shape_flip_vertical

shape_group

shape_group

shape_handles

shape_handles

shape_move_back

shape_move_back

shape_move_backwards

shape_move_backwards

shape_move_forwards

shape_move_forwards

shape_move_front

shape_move_front

shape_rotate_anticlockwise

shape_rotate_anticlockwise

shape_rotate_clockwise

shape_rotate_clockwise

shape_square

shape_square

shape_square_add

shape_square_add

shape_square_delete

shape_square_delete

shape_square_edit

shape_square_edit

shape_square_error

shape_square_error

shape_square_go

shape_square_go

shape_square_key

shape_square_key

shape_square_link

shape_square_link

shape_ungroup

shape_ungroup

shield

shield

shield_add

shield_add

shield_delete

shield_delete

shield_go

shield_go

sitemap

sitemap

sitemap_color

sitemap_color

sound

sound

sound_add

sound_add

sound_delete

sound_delete

sound_low

sound_low

sound_mute

sound_mute

sound_none

sound_none

spellcheck

spellcheck

sport_8ball

sport_8ball

sport_basketball

sport_basketball

sport_football

sport_football

sport_golf

sport_golf

sport_raquet

sport_raquet

sport_shuttlecock

sport_shuttlecock

sport_soccer

sport_soccer

sport_tennis

sport_tennis

star

star

status_away

status_away

status_busy

status_busy

status_offline

status_offline

status_online

status_online

stop

stop

style

style

style_add

style_add

style_delete

style_delete

style_edit

style_edit

style_go

style_go

sum

sum

tab

tab

tab_add

tab_add

tab_delete

tab_delete

tab_edit

tab_edit

tab_go

tab_go

table

table

table_add

table_add

table_delete

table_delete

table_edit

table_edit

table_error

table_error

table_gear

table_gear

table_go

table_go

table_key

table_key

table_lightning

table_lightning

table_link

table_link

table_multiple

table_multiple

table_refresh

table_refresh

table_relationship

table_relationship

table_row_delete

table_row_delete

table_row_insert

table_row_insert

table_save

table_save

table_sort

table_sort

tag

tag

tag_blue

tag_blue

tag_blue_add

tag_blue_add

tag_blue_delete

tag_blue_delete

tag_blue_edit

tag_blue_edit

tag_green

tag_green

tag_orange

tag_orange

tag_pink

tag_pink

tag_purple

tag_purple

tag_red

tag_red

tag_yellow

tag_yellow

telephone

telephone

telephone_add

telephone_add

telephone_delete

telephone_delete

telephone_edit

telephone_edit

telephone_error

telephone_error

telephone_go

telephone_go

telephone_key

telephone_key

telephone_link

telephone_link

television

television

television_add

television_add

television_delete

television_delete

text_align_center

text_align_center

text_align_justify

text_align_justify

text_align_left

text_align_left

text_align_right

text_align_right

text_allcaps

text_allcaps

text_bold

text_bold

text_columns

text_columns

text_dropcaps

text_dropcaps

text_heading_1

text_heading_1

text_heading_2

text_heading_2

text_heading_3

text_heading_3

text_heading_4

text_heading_4

text_heading_5

text_heading_5

text_heading_6

text_heading_6

text_horizontalrule

text_horizontalrule

text_indent

text_indent

text_indent_remove

text_indent_remove

text_italic

text_italic

text_kerning

text_kerning

text_letter_omega

text_letter_omega

text_letterspacing

text_letterspacing

text_linespacing

text_linespacing

text_list_bullets

text_list_bullets

text_list_numbers

text_list_numbers

text_lowercase

text_lowercase

text_padding_bottom

text_padding_bottom

text_padding_left

text_padding_left

text_padding_right

text_padding_right

text_padding_top

text_padding_top

text_replace

text_replace

text_signature

text_signature

text_smallcaps

text_smallcaps

text_strikethrough

text_strikethrough

text_subscript

text_subscript

text_superscript

text_superscript

text_underline

text_underline

text_uppercase

text_uppercase

textfield

textfield

textfield_add

textfield_add

textfield_delete

textfield_delete

textfield_key

textfield_key

textfield_rename

textfield_rename

thumb_down

thumb_down

thumb_up

thumb_up

tick

tick

time

time

time_add

time_add

time_delete

time_delete

time_go

time_go

timeline_marker

timeline_marker

transmit

transmit

transmit_add

transmit_add

transmit_blue

transmit_blue

transmit_delete

transmit_delete

transmit_edit

transmit_edit

transmit_error

transmit_error

transmit_go

transmit_go

tux

tux

user

user

user_add

user_add

user_comment

user_comment

user_delete

user_delete

user_edit

user_edit

user_female

user_female

user_go

user_go

user_gray

user_gray

user_green

user_green

user_orange

user_orange

user_red

user_red

user_suit

user_suit

vcard

vcard

vcard_add

vcard_add

vcard_delete

vcard_delete

vcard_edit

vcard_edit

vector

vector

vector_add

vector_add

vector_delete

vector_delete

wand

wand

weather_clouds

weather_clouds

weather_cloudy

weather_cloudy

weather_lightning

weather_lightning

weather_rain

weather_rain

weather_snow

weather_snow

weather_sun

weather_sun

webcam

webcam

webcam_add

webcam_add

webcam_delete

webcam_delete

webcam_error

webcam_error

world

world

world_add

world_add

world_delete

world_delete

world_edit

world_edit

world_go

world_go

world_link

world_link

wrench

wrench

wrench_orange

wrench_orange

xhtml

xhtml

xhtml_add

xhtml_add

xhtml_delete

xhtml_delete

xhtml_go

xhtml_go

xhtml_valid

xhtml_valid

zoom

zoom

zoom_in

zoom_in