summaryrefslogtreecommitdiffstats
path: root/native/src/widget/pane_grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-0410-1706/+0
|
* Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-171-4/+1
|
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-222-0/+6
|
* Allow &mut self in overlayLibravatar tarkah2022-11-292-8/+8
|
* Implement `Widget::operate` for `PaneGrid`Libravatar Ryan Scheidter2022-11-142-2/+67
|
* Fix broken documentation linksLibravatar Héctor Ramón Jiménez2022-11-103-3/+5
|
* Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-092-2/+2
|
* Couple layout & content to avoid desyncLibravatar Cory Forsstrom2022-11-081-17/+3
|
* Add pub method for getting maximized valueLibravatar Cory Forsstrom2022-11-031-0/+7
|
* Remove maximized when split occursLibravatar Cory Forsstrom2022-11-031-0/+1
|
* Fix doc linksLibravatar tarkah2022-11-021-2/+8
|
* Add state::Scoped & rename Elements as ContentsLibravatar tarkah2022-11-021-3/+15
|
* Add maximize / restore to PaneGridLibravatar Cory Forsstrom2022-11-021-23/+31
|
* Fix pane grid mouse interactionsLibravatar Cory Forsstrom2022-10-171-1/+2
| | | | | - Use `grabbing` interaction while dragging - Ignore grab interaction when dragging is disabled
* Render pane grid titlebar after bodyLibravatar Cory Forsstrom2022-10-071-7/+7
|
* When pane grid title bar is cramped, still show content until hover and ↵Libravatar Matthew Kennerly2022-08-271-9/+15
| | | | allow dragging where content would've been
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-273-42/+142
|
* Address Clippy lintsLibravatar Poly2022-07-092-13/+12
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-081-25/+48
|\
| * Prevent pane grid title bar content and controls from overlappingLibravatar mtkennerly2022-06-071-24/+47
| |
* | Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-072-12/+30
| |
* | Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-142-2/+14
|/ | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-304-4/+26
|
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-144-71/+101
|
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-233-30/+3
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-112-7/+18
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-292-8/+10
| | | | Widgets now can invalidate the current layout of the application on demand.
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-022-6/+6
| | | | This keeps the order of the arguments consistent with `draw`.
* Fix `mouse_interaction` using wrong layout in `PaneGrid`Libravatar Héctor Ramón Jiménez2021-11-011-3/+2
| | | | ... when no titlebar is present.
* Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-312-6/+12
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-315-11/+9
|
* Implement `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-252-0/+66
| | | | | | ... 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-252-70/+86
|
* Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-182-13/+7
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-182-2/+4
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-142-54/+55
|
* Merge pull request #971 from tarkah/fix/pane-dragging-overlayLibravatar Héctor Ramón2021-07-281-8/+13
|\ | | | | fix: allow titlebar overlays to close when dragging pane
| * Prevent body events pane is picked / draggingLibravatar Cory Forsstrom2021-07-271-8/+13
| |
* | Remove unnecesary use of `Option::unwrap`Libravatar Héctor Ramón Jiménez2021-07-151-3/+3
| | | | | | | | ... in `overlay` implementation for `pane_grid::TitleBar`
* | Fix implementation of `Widget::overlay` for `pane_grid::TitleBar`Libravatar Héctor Ramón Jiménez2021-07-151-1/+17
|/
* Use `match` statement in `Content::overlay`Libravatar Héctor Ramón Jiménez2021-06-221-5/+4
| | | | ... to improve readability a bit.
* Allow overlay from pane grid title barLibravatar Clark Moody2021-06-172-8/+16
|
* Replace ignored doc-tests with additional documentation for `Padding`Libravatar Héctor Ramón2021-06-011-5/+0
|
* Add support for asymmetrical paddingLibravatar Ben LeFevre2021-06-011-10/+19
|
* Enable event handling within the title elementsLibravatar Clark Moody2021-05-241-10/+23
| | | | | Shrink the pick area to avoid both the controls and the title elements. Handle events and merge title area event status with control events.
* Merge pull request #770 from hecrj/feature/clipboard-writeLibravatar Héctor Ramón2021-03-102-7/+7
|\ | | | | Write clipboard support and `TextInput` copy and cut behavior
| * Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-102-7/+7
| |
* | Merge pull request #771 from hecrj/fix/tooltip-layeringLibravatar Héctor Ramón2021-03-102-2/+7
|\ \ | |/ |/| Reposition `Tooltip` inside `viewport` bounds
| * Fix `viewport` argument in `PaneGrid` draw callsLibravatar Héctor Ramón Jiménez2021-02-272-2/+7
| |
* | Call `hash_layout` for `controls` in `pane_grid::TitleBar`Libravatar Héctor Ramón Jiménez2021-03-091-0/+4
|/