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