zed/crates/gpui_macros/src
Nate Butler ce848375fe
add ui::Vector and separate images from icons (#17815)
This PR pulls non-icon assets out of `ui::components::icon` in
preparation for icon standardization.

In the future icons will have standard names and sizes, and these image
assets won't conform to those constraints.

We can also add a `ui::components::image::Image` wrapper around the
`gpui::img` element in the future for any Zed-specific image styling we
want to enforce.

Of note:

```rust
#[derive(Debug, PartialEq, Eq, Copy, Clone, EnumIter, EnumString, IntoStaticStr, Serialize, Deserialize, DerivePathStr)]
#[strum(serialize_all = "snake_case")]
#[path_str(prefix = "images", suffix = ".svg")]
pub enum VectorName {
    ZedLogo,
    ZedXCopilot,
}
```

You can see in the above code we no longer need to manually specify
paths for image/icon enums like we currently do in
`ui::components::icon`.

The icon component will get this same treatment in the future, once we:

- do the design work needed to standardize the icons
- remove unused icons
- update icon names

Release Notes:

- N/A
2024-09-13 17:44:16 -04:00
..
derive_into_element.rs Fix flickering (#9012) 2024-03-11 10:45:57 +01:00
derive_path_static_str.rs add ui::Vector and separate images from icons (#17815) 2024-09-13 17:44:16 -04:00
derive_render.rs gpui: Don't impl IntoElement on () (#8555) 2024-02-28 15:19:05 -07:00
gpui_macros.rs add ui::Vector and separate images from icons (#17815) 2024-09-13 17:44:16 -04:00
register_action.rs gpui-macros: Hide autogenerated action types/functions (#10417) 2024-04-11 15:38:47 +02:00
styles.rs chore: Fix several style lints (#17488) 2024-09-06 11:58:39 +02:00
test.rs Resolve more todos 2024-01-09 15:08:05 -08:00