summaryrefslogtreecommitdiffstats
path: root/examples/pane_grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez2024-03-171-1/+1
|
* Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez2024-03-161-1/+1
|
* Make `sandbox` helper take a `title` as wellLibravatar Héctor Ramón Jiménez2024-03-161-2/+1
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-28/+19
|
* Rename `positive` and `destructive` to `success` and `danger` in `button`Libravatar Héctor Ramón Jiménez2024-03-071-2/+2
|
* Simplify theming for `Container` widgetLibravatar Héctor Ramón Jiménez2024-03-051-4/+16
|
* Simplify theming for `Button` widgetLibravatar Héctor Ramón Jiménez2024-03-041-7/+4
|
* Simplify theming for `Text` widgetLibravatar Héctor Ramón Jiménez2024-03-041-1/+1
|
* Add `push_maybe` to `Column` and `Row`Libravatar Héctor Ramón Jiménez2024-02-151-27/+28
|
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-201-5/+11
|
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-14/+17
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-1/+0
|
* Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-201-18/+11
|
* Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-3/+1
| | | | RIP Gfycat
* Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-071-1/+2
|\ | | | | Use workspace dependencies and package inheritance
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-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`Libravatar Héctor Ramón Jiménez2023-09-071-11/+3
|/ | | | Also rename `subscription::events*` to `event::listen*`.
* Introduce `drop` helper to `pane_grid::State`Libravatar Héctor Ramón Jiménez2023-07-061-8/+3
|
* Simplify `Target` enum in `widget::pane_grid`Libravatar Héctor Ramón Jiménez2023-07-061-5/+4
|
* Add ability to drag pane to the pane grid edges & optional style for dragged ↵Libravatar Joao Freitas2023-07-061-4/+9
| | | | pane
* Increase width of controls in `pane_grid` exampleLibravatar Héctor Ramón Jiménez2023-06-081-1/+1
|
* Take pane state internallyLibravatar Joao Freitas2023-05-191-4/+1
|
* Add pane_grid functionality to split a pane with another paneLibravatar Joao Freitas2023-05-161-1/+6
|
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-042-6/+6
|
* Update pane_grid example w/ maximize / restoreLibravatar Cory Forsstrom2022-11-021-5/+35
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-148/+89
|
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-1/+1
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-071-39/+35
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-73/+11
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Increase text size of pane dimensions in `pane_grid` exampleLibravatar Héctor Ramón Jiménez2022-01-121-1/+1
|
* Implement `Widget::overlay` for `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-122-1/+2
|
* Draft `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-111-16/+31
|
* Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-311-4/+4
|
* Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez2021-10-311-5/+5
|
* Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-5/+5
|
* Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-12/+22
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-6/+5
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-4/+5
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-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`Libravatar Héctor Ramón Jiménez2021-07-121-1/+1
|
* Example: Add Pin button to prevent closing a paneLibravatar Clark Moody2021-05-241-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 controlsLibravatar Clark Moody2021-05-241-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`Libravatar Héctor Ramón Jiménez2021-03-111-3/+8
|
* Update PaneGrid example with more complex TitleBarLibravatar Clark Moody2020-12-101-6/+28
|
* Use `f32` for `border_width` and `border_radius`Libravatar Héctor Ramón Jiménez2020-11-231-2/+2
|
* Introduce `event::Status` to `Subscription`Libravatar Héctor Ramón Jiménez2020-11-121-7/+13
|
* Introduce `is_command_pressed` to `ModifiersState`Libravatar Héctor Ramón Jiménez2020-11-101-1/+1
|
* Restore hotkeys in `pane_grid` exampleLibravatar Héctor Ramón Jiménez2020-11-102-16/+39
| | | | | | - Implement `subscription::events_with` - Remove `pane_grid::KeyPressEvent` - Return closest sibling in `pane_grid::State::close`
* Introduce `on_click` handler in `PaneGrid`Libravatar Héctor Ramón Jiménez2020-11-102-3/+16
|