summaryrefslogtreecommitdiffstats
path: root/native/src/widget/pane_grid.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-991/+0
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-1/+1
|
* Use `Pixels` for `spacing`Libravatar Héctor Ramón Jiménez2023-02-171-34/+27
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-4/+4
|
* Use group overlay for containers w/ childrenLibravatar Cory Forsstrom2023-01-171-5/+8
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-1/+1
|
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-221-1/+2
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+2
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-1/+1
|
* Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-021-63/+158
|\
| * Allow &mut self in overlayLibravatar tarkah2022-11-291-2/+2
| |
| * Implement `Widget::operate` for `PaneGrid`Libravatar Ryan Scheidter2022-11-141-0/+18
| |
| * Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
| |
| * Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-2/+2
| |
| * Couple layout & content to avoid desyncLibravatar Cory Forsstrom2022-11-081-51/+52
| |
| * Add state::Scoped & rename Elements as ContentsLibravatar tarkah2022-11-021-91/+85
| |
| * Fix tests & lintsLibravatar tarkah2022-11-021-5/+6
| |
| * Disable drag when maximizedLibravatar Cory Forsstrom2022-11-021-2/+18
| |
| * Add maximize / restore to PaneGridLibravatar Cory Forsstrom2022-11-021-32/+97
| |
* | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-1/+1
|/
* Use child layoutLibravatar Cory Forsstrom2022-10-191-2/+4
|
* Eliminate unnecessary allocationLibravatar Cory Forsstrom2022-10-191-23/+23
|
* Render picked pane lastLibravatar Cory Forsstrom2022-10-171-1/+6
|
* Fix pane grid mouse interactionsLibravatar Cory Forsstrom2022-10-171-1/+2
| | | | | - Use `grabbing` interaction while dragging - Ignore grab interaction when dragging is disabled
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-182/+226
|
* Address Clippy lintsLibravatar Poly2022-07-091-2/+1
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-071-4/+5
|
* Implement theme styling for `PaneGrid`Libravatar Héctor Ramón Jiménez2022-06-011-13/+26
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-1/+9
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-1/+1
|
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-141-335/+446
|
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-17/+2
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-2/+9
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-031-1/+1
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-17/+13
| | | | Widgets now can invalidate the current layout of the application on demand.
* Fix implementation of `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-11-211-4/+27
|
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-041-23/+26
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-2/+2
| | | | This keeps the order of the arguments consistent with `draw`.
* Reintroduce `Box` for `style_sheet` in `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-2/+2
|
* Implement `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-251-15/+42
| | | | | | ... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive.
* Implement `Widget::draw` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-251-74/+143
|
* Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-3/+2
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-1/+2
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-119/+51
|
* Simplify `is_picked` expression in `pane_grid`Libravatar Héctor Ramón Jiménez2021-07-281-5/+1
|
* Prevent body events pane is picked / draggingLibravatar Cory Forsstrom2021-07-271-2/+11
|
* Fix overlay in titlebar when initiating dragLibravatar Cory Forsstrom2021-07-271-18/+14
|
* docs: update all 0.2 github links to 0.3Libravatar Yusuf Bera Ertan2021-06-141-1/+1
|
* Merge pull request #770 from hecrj/feature/clipboard-writeLibravatar Héctor Ramón2021-03-101-3/+3
|\ | | | | Write clipboard support and `TextInput` copy and cut behavior