diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-25 14:46:37 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-25 14:46:37 +0100 |
commit | be604652aef06c4fb463080020132512443f8d28 (patch) | |
tree | ddb2e6558c545ee454e0a48c8fc54f3d43f28237 /Base | |
parent | 43bb7aad4c98df76c28d212d4165c9b66eec3351 (diff) | |
download | serenity-be604652aef06c4fb463080020132512443f8d28.zip |
LibGUI: Add GIcon::default_icon(name).
This is a convenience helper to instantiate a GIcon like so:
auto icon = GIcon::default_icon("filetype-image");
This will give you the "filetype-image" icon in both 16x16 and 32x32 sizes.
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/icons/32x32/filetype-folder.png (renamed from Base/res/icons/32x32/folder.png) | bin | 879 -> 879 bytes |
-rw-r--r-- | Base/res/icons/32x32/filetype-unknown.png (renamed from Base/res/icons/32x32/file.png) | bin | 272 -> 272 bytes |
-rw-r--r-- | Base/res/icons/executable16.png | bin | 223 -> 0 bytes |
-rw-r--r-- | Base/res/icons/file16.png | bin | 1115 -> 0 bytes |
-rw-r--r-- | Base/res/icons/folder16.png | bin | 5639 -> 0 bytes |
-rw-r--r-- | Base/res/icons/folder32.png | bin | 904 -> 0 bytes |
-rw-r--r-- | Base/res/icons/link16.png | bin | 5356 -> 0 bytes |
-rw-r--r-- | Base/res/icons/socket16.png | bin | 335 -> 0 bytes |
-rw-r--r-- | Base/res/icons/trash16.png | bin | 335 -> 0 bytes |
9 files changed, 0 insertions, 0 deletions
diff --git a/Base/res/icons/32x32/folder.png b/Base/res/icons/32x32/filetype-folder.png Binary files differindex 4669c9d7f2..4669c9d7f2 100644 --- a/Base/res/icons/32x32/folder.png +++ b/Base/res/icons/32x32/filetype-folder.png diff --git a/Base/res/icons/32x32/file.png b/Base/res/icons/32x32/filetype-unknown.png Binary files differindex 3651c6a8f9..3651c6a8f9 100644 --- a/Base/res/icons/32x32/file.png +++ b/Base/res/icons/32x32/filetype-unknown.png diff --git a/Base/res/icons/executable16.png b/Base/res/icons/executable16.png Binary files differdeleted file mode 100644 index 8de7113e14..0000000000 --- a/Base/res/icons/executable16.png +++ /dev/null diff --git a/Base/res/icons/file16.png b/Base/res/icons/file16.png Binary files differdeleted file mode 100644 index bb4e84f9e3..0000000000 --- a/Base/res/icons/file16.png +++ /dev/null diff --git a/Base/res/icons/folder16.png b/Base/res/icons/folder16.png Binary files differdeleted file mode 100644 index be55ca059d..0000000000 --- a/Base/res/icons/folder16.png +++ /dev/null diff --git a/Base/res/icons/folder32.png b/Base/res/icons/folder32.png Binary files differdeleted file mode 100644 index cdb813a7f0..0000000000 --- a/Base/res/icons/folder32.png +++ /dev/null diff --git a/Base/res/icons/link16.png b/Base/res/icons/link16.png Binary files differdeleted file mode 100644 index c8b03fc3b3..0000000000 --- a/Base/res/icons/link16.png +++ /dev/null diff --git a/Base/res/icons/socket16.png b/Base/res/icons/socket16.png Binary files differdeleted file mode 100644 index 94f0a2ffbc..0000000000 --- a/Base/res/icons/socket16.png +++ /dev/null diff --git a/Base/res/icons/trash16.png b/Base/res/icons/trash16.png Binary files differdeleted file mode 100644 index 6f07593786..0000000000 --- a/Base/res/icons/trash16.png +++ /dev/null |