Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `Border` struct analogous to `Shadow` | 2024-01-20 | 1 | -5/+11 | |
| | |||||
* | Refactor `KeyCode` into `Key` and `Location` | 2024-01-16 | 1 | -14/+17 | |
| | |||||
* | Make `Shrink` have priority over `Fill` in layout | 2024-01-04 | 1 | -1/+0 | |
| | |||||
* | Fix `clippy::trivially-copy-pass-by-ref` | 2023-09-20 | 1 | -18/+11 | |
| | |||||
* | Host GIFs and video examples in `iced.rs` | 2023-09-07 | 1 | -3/+1 | |
| | | | | RIP Gfycat | ||||
* | Merge pull request #2069 from iced-rs/use-workspace-dependencies | 2023-09-07 | 1 | -1/+2 | |
|\ | | | | | Use workspace dependencies and package inheritance | ||||
| * | Use workspace dependencies and package inheritance | 2023-09-04 | 1 | -1/+2 | |
| | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | ||||
* | | Introduce `keyboard::on_key_press` and `on_key_release` | 2023-09-07 | 1 | -11/+3 | |
|/ | | | | Also rename `subscription::events*` to `event::listen*`. | ||||
* | Introduce `drop` helper to `pane_grid::State` | 2023-07-06 | 1 | -8/+3 | |
| | |||||
* | Simplify `Target` enum in `widget::pane_grid` | 2023-07-06 | 1 | -5/+4 | |
| | |||||
* | Add ability to drag pane to the pane grid edges & optional style for dragged ↵ | 2023-07-06 | 1 | -4/+9 | |
| | | | | pane | ||||
* | Increase width of controls in `pane_grid` example | 2023-06-08 | 1 | -1/+1 | |
| | |||||
* | Take pane state internally | 2023-05-19 | 1 | -4/+1 | |
| | |||||
* | Add pane_grid functionality to split a pane with another pane | 2023-05-16 | 1 | -1/+6 | |
| | |||||
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 2 | -6/+6 | |
| | |||||
* | Update pane_grid example w/ maximize / restore | 2022-11-02 | 1 | -5/+35 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -148/+89 | |
| | |||||
* | Introduce `StyleSheet` for `Text` widget | 2022-06-29 | 1 | -1/+1 | |
| | |||||
* | Implement theme styling for `Container` | 2022-06-07 | 1 | -39/+35 | |
| | |||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -73/+11 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Update Rust edition to 2021 :tada: | 2022-02-09 | 1 | -1/+1 | |
| | |||||
* | Increase text size of pane dimensions in `pane_grid` example | 2022-01-12 | 1 | -1/+1 | |
| | |||||
* | Implement `Widget::overlay` for `Responsive` widget | 2022-01-12 | 2 | -1/+2 | |
| | |||||
* | Draft `Responsive` widget | 2022-01-11 | 1 | -16/+31 | |
| | |||||
* | Reintroduce `Box` for `style_sheet` in `Container` | 2021-10-31 | 1 | -4/+4 | |
| | |||||
* | Reintroduce `Box` for `style_sheet` in `Button` | 2021-10-31 | 1 | -5/+5 | |
| | |||||
* | Wire up styling to `Button` in `iced_native` | 2021-10-18 | 1 | -5/+5 | |
| | |||||
* | Wire up `container` styling to `iced_native` | 2021-10-18 | 1 | -12/+22 | |
| | |||||
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 1 | -6/+5 | |
| | |||||
* | Introduce and use `CrossAlign` enum for `Column` and `Row` | 2021-09-20 | 1 | -4/+5 | |
| | |||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 1 | -8/+3 | |
| | | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | ||||
* | Use `bitflags` for `keyboard::Modifiers` | 2021-07-12 | 1 | -1/+1 | |
| | |||||
* | Example: Add Pin button to prevent closing a pane | 2021-05-24 | 1 | -8/+42 | |
| | | | | | Functionality will not work until PaneGrid implementation is updated to support events within the title area. | ||||
* | Example: Add close button to pane grid controls | 2021-05-24 | 1 | -8/+54 | |
| | | | | | Refactors the state data structure to hold content and controls in separate fields. Adds a new button style for the control button. | ||||
* | Add `clipboard` argument to `Application::update` | 2021-03-11 | 1 | -3/+8 | |
| | |||||
* | Update PaneGrid example with more complex TitleBar | 2020-12-10 | 1 | -6/+28 | |
| | |||||
* | Use `f32` for `border_width` and `border_radius` | 2020-11-23 | 1 | -2/+2 | |
| | |||||
* | Introduce `event::Status` to `Subscription` | 2020-11-12 | 1 | -7/+13 | |
| | |||||
* | Introduce `is_command_pressed` to `ModifiersState` | 2020-11-10 | 1 | -1/+1 | |
| | |||||
* | Restore hotkeys in `pane_grid` example | 2020-11-10 | 2 | -16/+39 | |
| | | | | | | - Implement `subscription::events_with` - Remove `pane_grid::KeyPressEvent` - Return closest sibling in `pane_grid::State::close` | ||||
* | Introduce `on_click` handler in `PaneGrid` | 2020-11-10 | 2 | -3/+16 | |
| | |||||
* | Remove focus concept from `pane_grid` | 2020-11-10 | 1 | -22/+24 | |
| | |||||
* | Make `Application` and `Sandbox` return a `Result` | 2020-09-08 | 1 | -1/+1 | |
| | |||||
* | Update `pane_grid` GIFs | 2020-07-09 | 1 | -2/+2 | |
| | |||||
* | Simplify style of `pane_grid` example | 2020-07-09 | 1 | -7/+6 | |
| | |||||
* | Add a `TitleBar` to `pane_grid` example | 2020-07-09 | 1 | -11/+35 | |
| | |||||
* | Merge branch 'intuitive-pane-grid-resize' into feature/pane-grid-titlebar | 2020-06-08 | 1 | -1/+1 | |
|\ | |||||
| * | Add `leeway` support to `PaneGrid::on_resize` | 2020-06-08 | 1 | -1/+1 | |
| | | |||||
* | | Draft first-class `TitleBar` in `pane_grid` | 2020-06-04 | 1 | -1/+1 | |
|/ | |||||
* | Implement `padding` support for `Container` | 2020-03-31 | 1 | -3/+3 | |
| |