1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 package org.dishevelled.iconbundle.tango;
25
26 import java.util.Arrays;
27 import java.util.Collection;
28 import java.util.Collections;
29 import java.util.HashMap;
30 import java.util.Map;
31
32 import org.dishevelled.iconbundle.IconSize;
33 import org.dishevelled.iconbundle.IconBundle;
34
35 import org.dishevelled.iconbundle.impl.CachingIconBundle;
36
37
38
39
40
41
42 public final class TangoProject
43 {
44
45
46
47
48 public static final IconSize EXTRA_SMALL = new IconSize(16, 16)
49 {
50
51 };
52
53
54 public static final IconSize SMALL = new IconSize(22, 22)
55 {
56
57 };
58
59
60 public static final IconSize MEDIUM = new IconSize(32, 32)
61 {
62
63 };
64
65
66 public static final IconSize LARGE = new IconSize(48, 48)
67 {
68
69 };
70
71
72
73 private static IconSize[] sizes = new IconSize[] { EXTRA_SMALL, SMALL, MEDIUM, LARGE };
74
75
76 public static final Collection SIZES = Collections.unmodifiableList(Arrays.asList(sizes));
77
78
79
80
81
82
83 public static final IconBundle ADDRESS_BOOK_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "address-book-new"));
84
85
86
87
88
89 public static final IconBundle APPOINTMENT_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "appointment-new"));
90
91
92 public static final IconBundle BOOKMARK_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "bookmark-new"));
93
94
95 public static final IconBundle CONTACT_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "contact-new"));
96
97
98
99
100
101
102
103
104
105
106
107 public static final IconBundle DOCUMENT_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-new"));
108
109
110 public static final IconBundle DOCUMENT_OPEN = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-open"));
111
112
113
114
115
116
117
118
119 public static final IconBundle DOCUMENT_PRINT = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-print"));
120
121
122 public static final IconBundle DOCUMENT_PRINT_PREVIEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-print-preview"));
123
124
125 public static final IconBundle DOCUMENT_PROPERTIES = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-properties"));
126
127
128
129
130
131 public static final IconBundle DOCUMENT_SAVE = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-save"));
132
133
134 public static final IconBundle DOCUMENT_SAVE_AS = new CachingIconBundle(new TangoProjectIconBundle("actions", "document-save-as"));
135
136
137 public static final IconBundle EDIT_CLEAR = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-clear"));
138
139
140 public static final IconBundle EDIT_COPY = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-copy"));
141
142
143 public static final IconBundle EDIT_CUT = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-cut"));
144
145
146 public static final IconBundle EDIT_DELETE = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-delete"));
147
148
149 public static final IconBundle EDIT_FIND = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-find"));
150
151
152 public static final IconBundle EDIT_FIND_REPLACE = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-find-replace"));
153
154
155 public static final IconBundle EDIT_PASTE = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-paste"));
156
157
158 public static final IconBundle EDIT_REDO = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-redo"));
159
160
161 public static final IconBundle EDIT_SELECT_ALL = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-select-all"));
162
163
164 public static final IconBundle EDIT_UNDO = new CachingIconBundle(new TangoProjectIconBundle("actions", "edit-undo"));
165
166
167 public static final IconBundle FOLDER_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "folder-new"));
168
169
170 public static final IconBundle FORMAT_INDENT_LESS = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-indent-less"));
171
172
173 public static final IconBundle FORMAT_INDENT_MORE = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-indent-more"));
174
175
176 public static final IconBundle FORMAT_JUSTIFY_CENTER = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-justify-center"));
177
178
179 public static final IconBundle FORMAT_JUSTIFY_FILL = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-justify-fill"));
180
181
182 public static final IconBundle FORMAT_JUSTIFY_LEFT = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-justify-left"));
183
184
185 public static final IconBundle FORMAT_JUSTIFY_RIGHT = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-justify-right"));
186
187
188 public static final IconBundle FORMAT_TEXT_BOLD = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-text-bold"));
189
190
191
192
193
194
195
196
197 public static final IconBundle FORMAT_TEXT_ITALIC = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-text-italic"));
198
199
200 public static final IconBundle FORMAT_TEXT_STRIKETHROUGH = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-text-strikethrough"));
201
202
203 public static final IconBundle FORMAT_TEXT_UNDERLINE = new CachingIconBundle(new TangoProjectIconBundle("actions", "format-text-underline"));
204
205
206 public static final IconBundle GO_BOTTOM = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-bottom"));
207
208
209 public static final IconBundle GO_DOWN = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-down"));
210
211
212 public static final IconBundle GO_FIRST = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-first"));
213
214
215
216
217
218 public static final IconBundle GO_JUMP = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-jump"));
219
220
221 public static final IconBundle GO_LAST = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-last"));
222
223
224 public static final IconBundle GO_NEXT = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-next"));
225
226
227 public static final IconBundle GO_PREVIOUS = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-previous"));
228
229
230 public static final IconBundle GO_TOP = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-top"));
231
232
233 public static final IconBundle GO_UP = new CachingIconBundle(new TangoProjectIconBundle("actions", "go-up"));
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257 public static final IconBundle LIST_ADD = new CachingIconBundle(new TangoProjectIconBundle("actions", "list-add"));
258
259
260 public static final IconBundle LIST_REMOVE = new CachingIconBundle(new TangoProjectIconBundle("actions", "list-remove"));
261
262
263 public static final IconBundle MAIL_FORWARD = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-forward"));
264
265
266
267
268
269 public static final IconBundle MAIL_MARK_JUNK = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-mark-junk"));
270
271
272
273
274
275
276
277
278
279
280
281 public static final IconBundle MAIL_MESSAGE_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-message-new"));
282
283
284 public static final IconBundle MAIL_REPLY_ALL = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-reply-all"));
285
286
287 public static final IconBundle MAIL_REPLY_SENDER = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-reply-sender"));
288
289
290
291
292
293 public static final IconBundle MAIL_SEND_RECEIVE = new CachingIconBundle(new TangoProjectIconBundle("actions", "mail-send-receive"));
294
295
296 public static final IconBundle MEDIA_EJECT = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-eject"));
297
298
299 public static final IconBundle MEDIA_PLAYBACK_PAUSE = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-playback-pause"));
300
301
302 public static final IconBundle MEDIA_PLAYBACK_START = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-playback-start"));
303
304
305 public static final IconBundle MEDIA_PLAYBACK_STOP = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-playback-stop"));
306
307
308 public static final IconBundle MEDIA_RECORD = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-record"));
309
310
311 public static final IconBundle MEDIA_SEEK_BACKWARD = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-seek-backward"));
312
313
314 public static final IconBundle MEDIA_SEEK_FORWARD = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-seek-forward"));
315
316
317 public static final IconBundle MEDIA_SKIP_BACKWARD = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-skip-backward"));
318
319
320 public static final IconBundle MEDIA_SKIP_FORWARD = new CachingIconBundle(new TangoProjectIconBundle("actions", "media-skip-forward"));
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335 public static final IconBundle PROCESS_STOP = new CachingIconBundle(new TangoProjectIconBundle("actions", "process-stop"));
336
337
338 public static final IconBundle SYSTEM_LOCK_SCREEN = new CachingIconBundle(new TangoProjectIconBundle("actions", "system-lock-screen"));
339
340
341 public static final IconBundle SYSTEM_LOG_OUT = new CachingIconBundle(new TangoProjectIconBundle("actions", "system-log-out"));
342
343
344
345
346
347 public static final IconBundle SYSTEM_SEARCH = new CachingIconBundle(new TangoProjectIconBundle("actions", "system-search"));
348
349
350 public static final IconBundle SYSTEM_SHUTDOWN = new CachingIconBundle(new TangoProjectIconBundle("actions", "system-shutdown"));
351
352
353 public static final IconBundle TAB_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "tab-new"));
354
355
356
357
358
359 public static final IconBundle VIEW_FULLSCREEN = new CachingIconBundle(new TangoProjectIconBundle("actions", "view-fullscreen"));
360
361
362 public static final IconBundle VIEW_REFRESH = new CachingIconBundle(new TangoProjectIconBundle("actions", "view-refresh"));
363
364
365
366
367
368 public static final IconBundle VIEW_SORT_ASCENDING = new CachingIconBundle(new TangoProjectIconBundle("actions", "view-sort-ascending"));
369
370
371 public static final IconBundle VIEW_SORT_DESCENDING = new CachingIconBundle(new TangoProjectIconBundle("actions", "view-sort-descending"));
372
373
374
375
376
377 public static final IconBundle WINDOW_NEW = new CachingIconBundle(new TangoProjectIconBundle("actions", "window-new"));
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395 public static final IconBundle ACCESSORIES_CALCULATOR = new CachingIconBundle(new TangoProjectIconBundle("apps", "accessories-calculator"));
396
397
398 public static final IconBundle ACCESSORIES_CHARACTER_MAP = new CachingIconBundle(new TangoProjectIconBundle("apps", "accessories-character-map"));
399
400
401
402
403
404 public static final IconBundle ACCESSORIES_TEXT_EDITOR = new CachingIconBundle(new TangoProjectIconBundle("apps", "accessories-text-editor"));
405
406
407 public static final IconBundle HELP_BROWSER = new CachingIconBundle(new TangoProjectIconBundle("apps", "help-browser"));
408
409
410 public static final IconBundle INTERNET_GROUP_CHAT = new CachingIconBundle(new TangoProjectIconBundle("apps", "internet-group-chat"));
411
412
413 public static final IconBundle INTERNET_MAIL = new CachingIconBundle(new TangoProjectIconBundle("apps", "internet-mail"));
414
415
416 public static final IconBundle INTERNET_WEB_BROWSER = new CachingIconBundle(new TangoProjectIconBundle("apps", "internet-web-browser"));
417
418
419 public static final IconBundle OFFICE_CALENDAR = new CachingIconBundle(new TangoProjectIconBundle("apps", "office-calendar"));
420
421
422 public static final IconBundle MULTIMEDIA_VOLUME_CONTROL = new CachingIconBundle(new TangoProjectIconBundle("apps", "multimedia-volume-control"));
423
424
425 public static final IconBundle PREFERENCES_DESKTOP_ACCESSIBILITY = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-accessibility"));
426
427
428 public static final IconBundle PREFERENCES_DESKTOP_ASSISTIVE_TECHNOLOGY = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-assistive-technology"));
429
430
431 public static final IconBundle PREFERENCES_DESKTOP_FONT = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-font"));
432
433
434
435
436
437 public static final IconBundle PREFERENCES_DESKTOP_KEYBOARD_SHORTCUTS = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-keyboard-shortcuts"));
438
439
440 public static final IconBundle PREFERENCES_DESKTOP_LOCALE = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-locale"));
441
442
443 public static final IconBundle PREFERENCES_DESKTOP_MULTIMEDIA = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-multimedia"));
444
445
446 public static final IconBundle PREFERENCES_DESKTOP_REMOTE_DESKTOP = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-remote-desktop"));
447
448
449 public static final IconBundle PREFERENCES_DESKTOP_SCREENSAVER = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-screensaver"));
450
451
452 public static final IconBundle PREFERENCES_DESKTOP_THEME = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-theme"));
453
454
455 public static final IconBundle PREFERENCES_DESKTOP_WALLPAPER = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-desktop-wallpaper"));
456
457
458 public static final IconBundle PREFERENCES_SYSTEM_NETWORK_PROXY = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-system-network-proxy"));
459
460
461 public static final IconBundle PREFERENCES_SYSTEM_SESSION = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-system-session"));
462
463
464 public static final IconBundle PREFERENCES_SYSTEM_WINDOWS = new CachingIconBundle(new TangoProjectIconBundle("apps", "preferences-system-windows"));
465
466
467 public static final IconBundle SYSTEM_FILE_MANAGER = new CachingIconBundle(new TangoProjectIconBundle("apps", "system-file-manager"));
468
469
470 public static final IconBundle SYSTEM_SOFTWARE_UPDATE = new CachingIconBundle(new TangoProjectIconBundle("apps", "system-software-update"));
471
472
473 public static final IconBundle SYSTEM_USERS = new CachingIconBundle(new TangoProjectIconBundle("apps", "system-users"));
474
475
476 public static final IconBundle UTILITIES_SYSTEM_MONITOR = new CachingIconBundle(new TangoProjectIconBundle("apps", "utilities-system-monitor"));
477
478
479 public static final IconBundle UTILITIES_TERMINAL = new CachingIconBundle(new TangoProjectIconBundle("apps", "utilities-terminal"));
480
481
482 public static final IconBundle APPLICATIONS_ACCESSORIES = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-accessories"));
483
484
485
486
487
488
489
490
491 public static final IconBundle APPLICATIONS_GAMES = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-games"));
492
493
494 public static final IconBundle APPLICATIONS_GRAPHICS = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-graphics"));
495
496
497 public static final IconBundle APPLICATIONS_INTERNET = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-internet"));
498
499
500 public static final IconBundle APPLICATIONS_MULTIMEDIA = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-multimedia"));
501
502
503 public static final IconBundle APPLICATIONS_OFFICE = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-office"));
504
505
506 public static final IconBundle APPLICATIONS_OTHER = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-other"));
507
508
509
510
511
512 public static final IconBundle APPLICATIONS_SYSTEM = new CachingIconBundle(new TangoProjectIconBundle("categories", "applications-system"));
513
514
515
516
517
518 public static final IconBundle PREFERENCES_DESKTOP = new CachingIconBundle(new TangoProjectIconBundle("categories", "preferences-desktop"));
519
520
521 public static final IconBundle PREFERENCES_DESKTOP_PERIPHERALS = new CachingIconBundle(new TangoProjectIconBundle("categories", "preferences-desktop-peripherals"));
522
523
524
525
526
527
528
529
530 public static final IconBundle PREFERENCES_SYSTEM = new CachingIconBundle(new TangoProjectIconBundle("categories", "preferences-system"));
531
532
533
534
535
536
537
538
539 public static final IconBundle AUDIO_CARD = new CachingIconBundle(new TangoProjectIconBundle("devices", "audio-card"));
540
541
542 public static final IconBundle AUDIO_INPUT_MICROPHONE = new CachingIconBundle(new TangoProjectIconBundle("devices", "audio-input-microphone"));
543
544
545 public static final IconBundle BATTERY = new CachingIconBundle(new TangoProjectIconBundle("devices", "battery"));
546
547
548 public static final IconBundle CAMERA_PHOTO = new CachingIconBundle(new TangoProjectIconBundle("devices", "camera-photo"));
549
550
551 public static final IconBundle CAMERA_VIDEO = new CachingIconBundle(new TangoProjectIconBundle("devices", "camera-video"));
552
553
554 public static final IconBundle COMPUTER = new CachingIconBundle(new TangoProjectIconBundle("devices", "computer"));
555
556
557 public static final IconBundle DRIVE_HARDDISK = new CachingIconBundle(new TangoProjectIconBundle("devices", "drive-harddisk"));
558
559
560 public static final IconBundle DRIVE_OPTICAL = new CachingIconBundle(new TangoProjectIconBundle("devices", "drive-optical"));
561
562
563 public static final IconBundle DRIVE_REMOVABLE_MEDIA = new CachingIconBundle(new TangoProjectIconBundle("devices", "drive-removable-media"));
564
565
566 public static final IconBundle INPUT_GAMING = new CachingIconBundle(new TangoProjectIconBundle("devices", "input-gaming"));
567
568
569 public static final IconBundle INPUT_KEYBOARD = new CachingIconBundle(new TangoProjectIconBundle("devices", "input-keyboard"));
570
571
572 public static final IconBundle INPUT_MOUSE = new CachingIconBundle(new TangoProjectIconBundle("devices", "input-mouse"));
573
574
575 public static final IconBundle MEDIA_FLASH = new CachingIconBundle(new TangoProjectIconBundle("devices", "media-flash"));
576
577
578 public static final IconBundle MEDIA_FLOPPY = new CachingIconBundle(new TangoProjectIconBundle("devices", "media-floppy"));
579
580
581 public static final IconBundle MEDIA_OPTICAL = new CachingIconBundle(new TangoProjectIconBundle("devices", "media-optical"));
582
583
584
585
586
587
588
589
590 public static final IconBundle MULTIMEDIA_PLAYER = new CachingIconBundle(new TangoProjectIconBundle("devices", "multimedia-player"));
591
592
593 public static final IconBundle NETWORK_WIRED = new CachingIconBundle(new TangoProjectIconBundle("devices", "network-wired"));
594
595
596 public static final IconBundle NETWORK_WIRELESS = new CachingIconBundle(new TangoProjectIconBundle("devices", "network-wireless"));
597
598
599 public static final IconBundle PRINTER = new CachingIconBundle(new TangoProjectIconBundle("devices", "printer"));
600
601
602 public static final IconBundle VIDEO_DISPLAY = new CachingIconBundle(new TangoProjectIconBundle("devices", "video-display"));
603
604
605
606
607
608
609
610
611
612
613
614 public static final IconBundle EMBLEM_FAVORITE = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-favorite"));
615
616
617 public static final IconBundle EMBLEM_IMPORTANT = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-important"));
618
619
620
621
622
623 public static final IconBundle EMBLEM_PHOTOS = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-photos"));
624
625
626 public static final IconBundle EMBLEM_READONLY = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-readonly"));
627
628
629
630
631
632 public static final IconBundle EMBLEM_SYMBOLIC_LINK = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-symbolic-link"));
633
634
635
636
637
638 public static final IconBundle EMBLEM_SYSTEM = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-system"));
639
640
641 public static final IconBundle EMBLEM_UNREADABLE = new CachingIconBundle(new TangoProjectIconBundle("emblems", "emblem-unreadable"));
642
643
644 public static final IconBundle FACE_ANGEL = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-angel"));
645
646
647 public static final IconBundle FACE_CRYING = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-crying"));
648
649
650 public static final IconBundle FACE_DEVILISH = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-devilish"));
651
652
653 public static final IconBundle FACE_GLASSES = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-glasses"));
654
655
656 public static final IconBundle FACE_GRIN = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-grin"));
657
658
659 public static final IconBundle FACE_KISS = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-kiss"));
660
661
662 public static final IconBundle FACE_MONKEY = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-monkey"));
663
664
665 public static final IconBundle FACE_PLAIN = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-plain"));
666
667
668 public static final IconBundle FACE_SAD = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-sad"));
669
670
671 public static final IconBundle FACE_SMILE = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-smile"));
672
673
674 public static final IconBundle FACE_SMILE_BIG = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-smile-big"));
675
676
677
678
679
680 public static final IconBundle FACE_SURPRISE = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-surprise"));
681
682
683 public static final IconBundle FACE_WINK = new CachingIconBundle(new TangoProjectIconBundle("emotes", "face-wink"));
684
685
686
687
688
689 public static final IconBundle APPLICATION_CERTIFICATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "application-certificate"));
690
691
692 public static final IconBundle APPLICATION_X_EXECUTABLE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "application-x-executable"));
693
694
695 public static final IconBundle AUDIO_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "audio-x-generic"));
696
697
698 public static final IconBundle FONT_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "font-x-generic"));
699
700
701 public static final IconBundle IMAGE_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "image-x-generic"));
702
703
704 public static final IconBundle PACKAGE_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "package-x-generic"));
705
706
707 public static final IconBundle TEXT_HTML = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "text-html"));
708
709
710 public static final IconBundle TEXT_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "text-x-generic"));
711
712
713 public static final IconBundle TEXT_X_GENERIC_TEMPLATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "text-x-generic-template"));
714
715
716 public static final IconBundle TEXT_X_SCRIPT = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "text-x-script"));
717
718
719 public static final IconBundle VIDEO_X_GENERIC = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "video-x-generic"));
720
721
722 public static final IconBundle X_OFFICE_ADDRESS_BOOK = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-address-book"));
723
724
725 public static final IconBundle X_OFFICE_CALENDAR = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-calendar"));
726
727
728 public static final IconBundle X_OFFICE_DOCUMENT = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-document"));
729
730
731 public static final IconBundle X_OFFICE_DOCUMENT_TEMPLATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-document-template"));
732
733
734 public static final IconBundle X_OFFICE_DRAWING = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-drawing"));
735
736
737 public static final IconBundle X_OFFICE_DRAWING_TEMPLATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-drawing-template"));
738
739
740 public static final IconBundle X_OFFICE_PRESENTATION = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-presentation"));
741
742
743 public static final IconBundle X_OFFICE_PRESENTATION_TEMPLATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-presentation-template"));
744
745
746 public static final IconBundle X_OFFICE_SPREADSHEET = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-spreadsheet"));
747
748
749 public static final IconBundle X_OFFICE_SPREADSHEET_TEMPLATE = new CachingIconBundle(new TangoProjectIconBundle("mimetypes", "x-office-spreadsheet-template"));
750
751
752 public static final IconBundle FOLDER = new CachingIconBundle(new TangoProjectIconBundle("places", "folder"));
753
754
755 public static final IconBundle FOLDER_REMOTE = new CachingIconBundle(new TangoProjectIconBundle("places", "folder-remote"));
756
757
758 public static final IconBundle FOLDER_SAVED_SEARCH = new CachingIconBundle(new TangoProjectIconBundle("places", "folder-saved-search"));
759
760
761 public static final IconBundle NETWORK_SERVER = new CachingIconBundle(new TangoProjectIconBundle("places", "network-server"));
762
763
764 public static final IconBundle NETWORK_WORKGROUP = new CachingIconBundle(new TangoProjectIconBundle("places", "network-workgroup"));
765
766
767 public static final IconBundle START_HERE = new CachingIconBundle(new TangoProjectIconBundle("places", "start-here"));
768
769
770 public static final IconBundle USER_DESKTOP = new CachingIconBundle(new TangoProjectIconBundle("places", "user-desktop"));
771
772
773 public static final IconBundle USER_HOME = new CachingIconBundle(new TangoProjectIconBundle("places", "user-home"));
774
775
776 public static final IconBundle USER_TRASH = new CachingIconBundle(new TangoProjectIconBundle("places", "user-trash"));
777
778
779
780
781
782
783
784
785 public static final IconBundle AUDIO_VOLUME_HIGH = new CachingIconBundle(new TangoProjectIconBundle("status", "audio-volume-high"));
786
787
788 public static final IconBundle AUDIO_VOLUME_LOW = new CachingIconBundle(new TangoProjectIconBundle("status", "audio-volume-low"));
789
790
791 public static final IconBundle AUDIO_VOLUME_MEDIUM = new CachingIconBundle(new TangoProjectIconBundle("status", "audio-volume-medium"));
792
793
794 public static final IconBundle AUDIO_VOLUME_MUTED = new CachingIconBundle(new TangoProjectIconBundle("status", "audio-volume-muted"));
795
796
797 public static final IconBundle BATTERY_CAUTION = new CachingIconBundle(new TangoProjectIconBundle("status", "battery-caution"));
798
799
800
801
802
803 public static final IconBundle DIALOG_ERROR = new CachingIconBundle(new TangoProjectIconBundle("status", "dialog-error"));
804
805
806 public static final IconBundle DIALOG_INFORMATION = new CachingIconBundle(new TangoProjectIconBundle("status", "dialog-information"));
807
808
809
810
811
812
813
814
815 public static final IconBundle DIALOG_WARNING = new CachingIconBundle(new TangoProjectIconBundle("status", "dialog-warning"));
816
817
818 public static final IconBundle FOLDER_DRAG_ACCEPT = new CachingIconBundle(new TangoProjectIconBundle("status", "folder-drag-accept"));
819
820
821 public static final IconBundle FOLDER_OPEN = new CachingIconBundle(new TangoProjectIconBundle("status", "folder-open"));
822
823
824 public static final IconBundle FOLDER_VISITING = new CachingIconBundle(new TangoProjectIconBundle("status", "folder-visiting"));
825
826
827 public static final IconBundle IMAGE_LOADING = new CachingIconBundle(new TangoProjectIconBundle("status", "image-loading"));
828
829
830 public static final IconBundle IMAGE_MISSING = new CachingIconBundle(new TangoProjectIconBundle("status", "image-missing"));
831
832
833 public static final IconBundle MAIL_ATTACHMENT = new CachingIconBundle(new TangoProjectIconBundle("status", "mail-attachment"));
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857 public static final IconBundle NETWORK_ERROR = new CachingIconBundle(new TangoProjectIconBundle("status", "network-error"));
858
859
860 public static final IconBundle NETWORK_IDLE = new CachingIconBundle(new TangoProjectIconBundle("status", "network-idle"));
861
862
863 public static final IconBundle NETWORK_OFFLINE = new CachingIconBundle(new TangoProjectIconBundle("status", "network-offline"));
864
865
866 public static final IconBundle NETWORK_RECEIVE = new CachingIconBundle(new TangoProjectIconBundle("status", "network-receive"));
867
868
869 public static final IconBundle NETWORK_TRANSMIT = new CachingIconBundle(new TangoProjectIconBundle("status", "network-transmit"));
870
871
872 public static final IconBundle NETWORK_TRANSMIT_RECEIVE = new CachingIconBundle(new TangoProjectIconBundle("status", "network-transmit-receive"));
873
874
875 public static final IconBundle NETWORK_WIRELESS_ENCRYPTED = new CachingIconBundle(new TangoProjectIconBundle("status", "network-wireless-encrypted"));
876
877
878 public static final IconBundle PRINTER_ERROR = new CachingIconBundle(new TangoProjectIconBundle("status", "printer-error"));
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893 public static final IconBundle SOFTWARE_UPDATE_AVAILABLE = new CachingIconBundle(new TangoProjectIconBundle("status", "software-update-available"));
894
895
896 public static final IconBundle SOFTWARE_UPDATE_URGENT = new CachingIconBundle(new TangoProjectIconBundle("status", "software-update-urgent"));
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923 public static final IconBundle USER_TRASH_FULL = new CachingIconBundle(new TangoProjectIconBundle("status", "user-trash-full"));
924
925
926 public static final IconBundle WEATHER_CLEAR = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-clear"));
927
928
929 public static final IconBundle WEATHER_CLEAR_NIGHT = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-clear-night"));
930
931
932 public static final IconBundle WEATHER_FEW_CLOUDS = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-few-clouds"));
933
934
935 public static final IconBundle WEATHER_FEW_CLOUDS_NIGHT = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-few-clouds-night"));
936
937
938
939
940
941 public static final IconBundle WEATHER_OVERCAST = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-overcast"));
942
943
944 public static final IconBundle WEATHER_SEVERE_ALERT = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-severe-alert"));
945
946
947 public static final IconBundle WEATHER_SHOWERS = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-showers"));
948
949
950 public static final IconBundle WEATHER_SHOWERS_SCATTERED = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-showers-scattered"));
951
952
953 public static final IconBundle WEATHER_SNOW = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-snow"));
954
955
956 public static final IconBundle WEATHER_STORM = new CachingIconBundle(new TangoProjectIconBundle("status", "weather-storm"));
957
958
959
960 private static final Map iconBundles = new HashMap(275);
961
962 static
963 {
964 iconBundles.put("address-book-new", ADDRESS_BOOK_NEW);
965
966 iconBundles.put("appointment-new", APPOINTMENT_NEW);
967 iconBundles.put("bookmark-new", BOOKMARK_NEW);
968 iconBundles.put("contact-new", CONTACT_NEW);
969
970
971
972 iconBundles.put("document-new", DOCUMENT_NEW);
973 iconBundles.put("document-open", DOCUMENT_OPEN);
974
975
976 iconBundles.put("document-print", DOCUMENT_PRINT);
977 iconBundles.put("document-print-preview", DOCUMENT_PRINT_PREVIEW);
978 iconBundles.put("document-properties", DOCUMENT_PROPERTIES);
979
980 iconBundles.put("document-save", DOCUMENT_SAVE);
981 iconBundles.put("document-save-as", DOCUMENT_SAVE_AS);
982 iconBundles.put("edit-clear", EDIT_CLEAR);
983 iconBundles.put("edit-copy", EDIT_COPY);
984 iconBundles.put("edit-cut", EDIT_CUT);
985 iconBundles.put("edit-delete", EDIT_DELETE);
986 iconBundles.put("edit-find", EDIT_FIND);
987 iconBundles.put("edit-find-replace", EDIT_FIND_REPLACE);
988 iconBundles.put("edit-paste", EDIT_PASTE);
989 iconBundles.put("edit-redo", EDIT_REDO);
990 iconBundles.put("edit-select-all", EDIT_SELECT_ALL);
991 iconBundles.put("edit-undo", EDIT_UNDO);
992 iconBundles.put("folder-new", FOLDER_NEW);
993 iconBundles.put("format-indent-less", FORMAT_INDENT_LESS);
994 iconBundles.put("format-indent-more", FORMAT_INDENT_MORE);
995 iconBundles.put("format-justify-center", FORMAT_JUSTIFY_CENTER);
996 iconBundles.put("format-justify-fill", FORMAT_JUSTIFY_FILL);
997 iconBundles.put("format-justify-left", FORMAT_JUSTIFY_LEFT);
998 iconBundles.put("format-justify-right", FORMAT_JUSTIFY_RIGHT);
999 iconBundles.put("format-text-bold", FORMAT_TEXT_BOLD);
1000
1001
1002 iconBundles.put("format-text-italic", FORMAT_TEXT_ITALIC);
1003 iconBundles.put("format-text-strikethrough", FORMAT_TEXT_STRIKETHROUGH);
1004 iconBundles.put("format-text-underline", FORMAT_TEXT_UNDERLINE);
1005 iconBundles.put("go-bottom", GO_BOTTOM);
1006 iconBundles.put("go-down", GO_DOWN);
1007 iconBundles.put("go-first", GO_FIRST);
1008
1009 iconBundles.put("go-jump", GO_JUMP);
1010 iconBundles.put("go-last", GO_LAST);
1011 iconBundles.put("go-next", GO_NEXT);
1012 iconBundles.put("go-previous", GO_PREVIOUS);
1013 iconBundles.put("go-top", GO_TOP);
1014 iconBundles.put("go-up", GO_UP);
1015
1016
1017
1018
1019
1020
1021
1022 iconBundles.put("list-add", LIST_ADD);
1023 iconBundles.put("list-remove", LIST_REMOVE);
1024 iconBundles.put("mail-forward", MAIL_FORWARD);
1025
1026 iconBundles.put("mail-mark-junk", MAIL_MARK_JUNK);
1027
1028
1029
1030 iconBundles.put("mail-message-new", MAIL_MESSAGE_NEW);
1031 iconBundles.put("mail-reply-all", MAIL_REPLY_ALL);
1032 iconBundles.put("mail-reply-sender", MAIL_REPLY_SENDER);
1033
1034 iconBundles.put("mail-send-receive", MAIL_SEND_RECEIVE);
1035 iconBundles.put("media-eject", MEDIA_EJECT);
1036 iconBundles.put("media-playback-pause", MEDIA_PLAYBACK_PAUSE);
1037 iconBundles.put("media-playback-start", MEDIA_PLAYBACK_START);
1038 iconBundles.put("media-playback-stop", MEDIA_PLAYBACK_STOP);
1039 iconBundles.put("media-record", MEDIA_RECORD);
1040 iconBundles.put("media-seek-backward", MEDIA_SEEK_BACKWARD);
1041 iconBundles.put("media-seek-forward", MEDIA_SEEK_FORWARD);
1042 iconBundles.put("media-skip-backward", MEDIA_SKIP_BACKWARD);
1043 iconBundles.put("media-skip-forward", MEDIA_SKIP_FORWARD);
1044
1045
1046
1047
1048 iconBundles.put("process-stop", PROCESS_STOP);
1049 iconBundles.put("system-lock-screen", SYSTEM_LOCK_SCREEN);
1050 iconBundles.put("system-log-out", SYSTEM_LOG_OUT);
1051
1052 iconBundles.put("system-search", SYSTEM_SEARCH);
1053 iconBundles.put("system-shutdown", SYSTEM_SHUTDOWN);
1054 iconBundles.put("tab-new", TAB_NEW);
1055
1056 iconBundles.put("view-fullscreen", VIEW_FULLSCREEN);
1057 iconBundles.put("view-refresh", VIEW_REFRESH);
1058
1059
1060
1061 iconBundles.put("window-new", WINDOW_NEW);
1062
1063
1064
1065
1066
1067
1068
1069 iconBundles.put("accessories-calculator", ACCESSORIES_CALCULATOR);
1070 iconBundles.put("accessories-character-map", ACCESSORIES_CHARACTER_MAP);
1071
1072 iconBundles.put("accessories-text-editor", ACCESSORIES_TEXT_EDITOR);
1073 iconBundles.put("help-browser", HELP_BROWSER);
1074 iconBundles.put("internet-group-chat", INTERNET_GROUP_CHAT);
1075 iconBundles.put("internet-mail", INTERNET_MAIL);
1076 iconBundles.put("internet-web-browser", INTERNET_WEB_BROWSER);
1077 iconBundles.put("office-calendar", OFFICE_CALENDAR);
1078
1079 iconBundles.put("preferences-desktop-accessibility", PREFERENCES_DESKTOP_ACCESSIBILITY);
1080 iconBundles.put("preferences-desktop-assistive-technology", PREFERENCES_DESKTOP_ASSISTIVE_TECHNOLOGY);
1081 iconBundles.put("preferences-desktop-font", PREFERENCES_DESKTOP_FONT);
1082
1083 iconBundles.put("preferences-desktop-keyboard-shortcuts", PREFERENCES_DESKTOP_KEYBOARD_SHORTCUTS);
1084 iconBundles.put("preferences-desktop-locale", PREFERENCES_DESKTOP_LOCALE);
1085 iconBundles.put("preferences-desktop-multimedia", PREFERENCES_DESKTOP_MULTIMEDIA);
1086 iconBundles.put("preferences-desktop-screensaver", PREFERENCES_DESKTOP_SCREENSAVER);
1087 iconBundles.put("preferences-desktop-remote-desktop", PREFERENCES_DESKTOP_REMOTE_DESKTOP);
1088 iconBundles.put("preferences-desktop-theme", PREFERENCES_DESKTOP_THEME);
1089 iconBundles.put("preferences-desktop-wallpaper", PREFERENCES_DESKTOP_WALLPAPER);
1090 iconBundles.put("preferences-system-network-proxy", PREFERENCES_SYSTEM_NETWORK_PROXY);
1091 iconBundles.put("preferences-system-session", PREFERENCES_SYSTEM_SESSION);
1092 iconBundles.put("preferences-system-windows", PREFERENCES_SYSTEM_WINDOWS);
1093 iconBundles.put("system-file-manager", SYSTEM_FILE_MANAGER);
1094
1095 iconBundles.put("system-users", SYSTEM_USERS);
1096 iconBundles.put("utilities-system-monitor", UTILITIES_SYSTEM_MONITOR);
1097 iconBundles.put("utilities-terminal", UTILITIES_TERMINAL);
1098 iconBundles.put("applications-accessories", APPLICATIONS_ACCESSORIES);
1099
1100
1101 iconBundles.put("applications-games", APPLICATIONS_GAMES);
1102 iconBundles.put("applications-graphics", APPLICATIONS_GRAPHICS);
1103 iconBundles.put("applications-internet", APPLICATIONS_INTERNET);
1104 iconBundles.put("applications-multimedia", APPLICATIONS_MULTIMEDIA);
1105 iconBundles.put("applications-office", APPLICATIONS_OFFICE);
1106 iconBundles.put("applications-other", APPLICATIONS_OTHER);
1107
1108 iconBundles.put("applications-system", APPLICATIONS_SYSTEM);
1109
1110 iconBundles.put("preferences-desktop", PREFERENCES_DESKTOP);
1111 iconBundles.put("preferences-desktop-peripherals", PREFERENCES_DESKTOP_PERIPHERALS);
1112
1113
1114 iconBundles.put("preferences-system", PREFERENCES_SYSTEM);
1115
1116
1117 iconBundles.put("audio-card", AUDIO_CARD);
1118 iconBundles.put("audio-input-microphone", AUDIO_INPUT_MICROPHONE);
1119 iconBundles.put("battery", BATTERY);
1120 iconBundles.put("camera-photo", CAMERA_PHOTO);
1121 iconBundles.put("camera-video", CAMERA_VIDEO);
1122 iconBundles.put("computer", COMPUTER);
1123 iconBundles.put("drive-harddisk", DRIVE_HARDDISK);
1124 iconBundles.put("drive-optical", DRIVE_OPTICAL);
1125 iconBundles.put("drive-removable-media", DRIVE_REMOVABLE_MEDIA);
1126 iconBundles.put("input-gaming", INPUT_GAMING);
1127 iconBundles.put("input-keyboard", INPUT_KEYBOARD);
1128 iconBundles.put("input-mouse", INPUT_MOUSE);
1129 iconBundles.put("media-flash", MEDIA_FLASH);
1130 iconBundles.put("media-floppy", MEDIA_FLOPPY);
1131 iconBundles.put("media-optical", MEDIA_OPTICAL);
1132
1133
1134 iconBundles.put("multimedia-player", MULTIMEDIA_PLAYER);
1135 iconBundles.put("network-wired", NETWORK_WIRED);
1136 iconBundles.put("network-wireless", NETWORK_WIRELESS);
1137 iconBundles.put("printer", PRINTER);
1138 iconBundles.put("video-display", VIDEO_DISPLAY);
1139
1140
1141
1142
1143 iconBundles.put("emblem-favorite", EMBLEM_FAVORITE);
1144 iconBundles.put("emblem-important", EMBLEM_IMPORTANT);
1145
1146 iconBundles.put("emblem-photos", EMBLEM_PHOTOS);
1147 iconBundles.put("emblem-readonly", EMBLEM_READONLY);
1148
1149 iconBundles.put("emblem-symbolic-link", EMBLEM_SYMBOLIC_LINK);
1150
1151 iconBundles.put("emblem-system", EMBLEM_SYSTEM);
1152 iconBundles.put("emblem-unreadable", EMBLEM_UNREADABLE);
1153
1154 iconBundles.put("face-angel", FACE_ANGEL);
1155 iconBundles.put("face-crying", FACE_CRYING);
1156 iconBundles.put("face-devilish", FACE_DEVILISH);
1157 iconBundles.put("face-glasses", FACE_GLASSES);
1158 iconBundles.put("face-grin", FACE_GRIN);
1159 iconBundles.put("face-kiss", FACE_KISS);
1160 iconBundles.put("face-monkey", FACE_MONKEY);
1161 iconBundles.put("face-plain", FACE_PLAIN);
1162 iconBundles.put("face-sad", FACE_SAD);
1163 iconBundles.put("face-smile", FACE_SMILE);
1164 iconBundles.put("face-smile-big", FACE_SMILE_BIG);
1165
1166 iconBundles.put("face-surprise", FACE_SURPRISE);
1167 iconBundles.put("face-wink", FACE_WINK);
1168
1169
1170
1171 iconBundles.put("application-certificate", APPLICATION_CERTIFICATE);
1172 iconBundles.put("application-x-executable", APPLICATION_X_EXECUTABLE);
1173 iconBundles.put("audio-x-generic", AUDIO_X_GENERIC);
1174 iconBundles.put("font-x-generic", FONT_X_GENERIC);
1175 iconBundles.put("image-x-generic", IMAGE_X_GENERIC);
1176 iconBundles.put("package-x-generic", PACKAGE_X_GENERIC);
1177 iconBundles.put("text-html", TEXT_HTML);
1178 iconBundles.put("text-x-generic", TEXT_X_GENERIC);
1179 iconBundles.put("text-x-generic-template", TEXT_X_GENERIC_TEMPLATE);
1180 iconBundles.put("text-x-script", TEXT_X_SCRIPT);
1181 iconBundles.put("video-x-generic", VIDEO_X_GENERIC);
1182 iconBundles.put("x-office-address-book", X_OFFICE_ADDRESS_BOOK);
1183 iconBundles.put("x-office-calendar", X_OFFICE_CALENDAR);
1184 iconBundles.put("x-office-document", X_OFFICE_DOCUMENT);
1185 iconBundles.put("x-office-document-template", X_OFFICE_DOCUMENT_TEMPLATE);
1186 iconBundles.put("x-office-drawing", X_OFFICE_DRAWING);
1187 iconBundles.put("x-office-drawing-template", X_OFFICE_DRAWING_TEMPLATE);
1188 iconBundles.put("x-office-presentation", X_OFFICE_PRESENTATION);
1189 iconBundles.put("x-office-presentation-template", X_OFFICE_PRESENTATION_TEMPLATE);
1190 iconBundles.put("x-office-spreadsheet", X_OFFICE_SPREADSHEET);
1191 iconBundles.put("x-office-spreadsheet-template", X_OFFICE_SPREADSHEET_TEMPLATE);
1192
1193 iconBundles.put("folder", FOLDER);
1194 iconBundles.put("folder-remote", FOLDER_REMOTE);
1195 iconBundles.put("folder-saved-search", FOLDER_SAVED_SEARCH);
1196 iconBundles.put("network-server", NETWORK_SERVER);
1197 iconBundles.put("network-workgroup", NETWORK_WORKGROUP);
1198 iconBundles.put("start-here", START_HERE);
1199 iconBundles.put("user-desktop", USER_DESKTOP);
1200 iconBundles.put("user-home", USER_HOME);
1201 iconBundles.put("user-trash", USER_TRASH);
1202
1203
1204
1205 iconBundles.put("audio-volume-high", AUDIO_VOLUME_HIGH);
1206 iconBundles.put("audio-volume-low", AUDIO_VOLUME_LOW);
1207 iconBundles.put("audio-volume-medium", AUDIO_VOLUME_MEDIUM);
1208 iconBundles.put("audio-volume-muted", AUDIO_VOLUME_MUTED);
1209 iconBundles.put("battery-caution", BATTERY_CAUTION);
1210
1211 iconBundles.put("dialog-error", DIALOG_ERROR);
1212 iconBundles.put("dialog-information", DIALOG_INFORMATION);
1213
1214
1215 iconBundles.put("dialog-warning", DIALOG_WARNING);
1216 iconBundles.put("folder-drag-accept", FOLDER_DRAG_ACCEPT);
1217 iconBundles.put("folder-open", FOLDER_OPEN);
1218 iconBundles.put("folder-visiting", FOLDER_VISITING);
1219 iconBundles.put("image-loading", IMAGE_LOADING);
1220 iconBundles.put("image-missing", IMAGE_MISSING);
1221 iconBundles.put("mail-attachment", MAIL_ATTACHMENT);
1222
1223
1224
1225
1226
1227
1228
1229 iconBundles.put("network-error", NETWORK_ERROR);
1230 iconBundles.put("network-idle", NETWORK_IDLE);
1231 iconBundles.put("network-offline", NETWORK_OFFLINE);
1232 iconBundles.put("network-receive", NETWORK_RECEIVE);
1233 iconBundles.put("network-transmit", NETWORK_TRANSMIT);
1234 iconBundles.put("network-transmit-receive", NETWORK_TRANSMIT_RECEIVE);
1235 iconBundles.put("network-wireless-encrypted", NETWORK_WIRELESS_ENCRYPTED);
1236 iconBundles.put("printer-error", PRINTER_ERROR);
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251 iconBundles.put("user-trash-full", USER_TRASH_FULL);
1252 iconBundles.put("weather-clear", WEATHER_CLEAR);
1253 iconBundles.put("weather-clear-night", WEATHER_CLEAR_NIGHT);
1254 iconBundles.put("weather-few-clouds", WEATHER_FEW_CLOUDS);
1255 iconBundles.put("weather-few-clouds-night", WEATHER_FEW_CLOUDS_NIGHT);
1256
1257 iconBundles.put("weather-overcast", WEATHER_OVERCAST);
1258 iconBundles.put("weather-severe-alert", WEATHER_SEVERE_ALERT);
1259 iconBundles.put("weather-showers", WEATHER_SHOWERS);
1260 iconBundles.put("weather-showers-scattered", WEATHER_SHOWERS_SCATTERED);
1261 iconBundles.put("weather-snow", WEATHER_SNOW);
1262 iconBundles.put("weather-storm", WEATHER_STORM);
1263 }
1264
1265
1266
1267
1268
1269
1270
1271
1272 public static IconBundle valueOf(final String name)
1273 {
1274
1275 return (IconBundle) iconBundles.get(name);
1276 }
1277 }