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