Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 10 | -1706/+0 | |
| | |||||
* | Use `f32` for `Padding` | 2023-02-17 | 1 | -4/+1 | |
| | |||||
* | Add `Renderer` argument to `operate` | 2022-12-22 | 2 | -0/+6 | |
| | |||||
* | Allow &mut self in overlay | 2022-11-29 | 2 | -8/+8 | |
| | |||||
* | Implement `Widget::operate` for `PaneGrid` | 2022-11-14 | 2 | -2/+67 | |
| | |||||
* | Fix broken documentation links | 2022-11-10 | 3 | -3/+5 | |
| | |||||
* | Introduce `Custom` variants for every style in the built-in `Theme` | 2022-11-09 | 2 | -2/+2 | |
| | |||||
* | Couple layout & content to avoid desync | 2022-11-08 | 1 | -17/+3 | |
| | |||||
* | Add pub method for getting maximized value | 2022-11-03 | 1 | -0/+7 | |
| | |||||
* | Remove maximized when split occurs | 2022-11-03 | 1 | -0/+1 | |
| | |||||
* | Fix doc links | 2022-11-02 | 1 | -2/+8 | |
| | |||||
* | Add state::Scoped & rename Elements as Contents | 2022-11-02 | 1 | -3/+15 | |
| | |||||
* | Add maximize / restore to PaneGrid | 2022-11-02 | 1 | -23/+31 | |
| | |||||
* | Fix pane grid mouse interactions | 2022-10-17 | 1 | -1/+2 | |
| | | | | | - Use `grabbing` interaction while dragging - Ignore grab interaction when dragging is disabled | ||||
* | Render pane grid titlebar after body | 2022-10-07 | 1 | -7/+7 | |
| | |||||
* | When pane grid title bar is cramped, still show content until hover and ↵ | 2022-08-27 | 1 | -9/+15 | |
| | | | | allow dragging where content would've been | ||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 3 | -42/+142 | |
| | |||||
* | Address Clippy lints | 2022-07-09 | 2 | -13/+12 | |
| | |||||
* | Merge branch 'master' into theming | 2022-07-08 | 1 | -25/+48 | |
|\ | |||||
| * | Prevent pane grid title bar content and controls from overlapping | 2022-06-07 | 1 | -24/+47 | |
| | | |||||
* | | Implement theme styling for `Container` | 2022-06-07 | 2 | -12/+30 | |
| | | |||||
* | | Draft first-class `Theme` support | 2022-05-14 | 2 | -2/+14 | |
|/ | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Fix broken intra-doc links in documentation | 2022-04-30 | 4 | -4/+26 | |
| | |||||
* | Implement `pure` version of `PaneGrid` widget | 2022-03-14 | 4 | -71/+101 | |
| | |||||
* | Remove `hash_layout` method from `Widget` trait | 2022-02-23 | 3 | -30/+3 | |
| | |||||
* | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 2022-01-11 | 2 | -7/+18 | |
| | |||||
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 2 | -8/+10 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 2 | -6/+6 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Fix `mouse_interaction` using wrong layout in `PaneGrid` | 2021-11-01 | 1 | -3/+2 | |
| | | | | ... when no titlebar is present. | ||||
* | Reintroduce `Box` for `style_sheet` in `Container` | 2021-10-31 | 2 | -6/+12 | |
| | |||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 5 | -11/+9 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `PaneGrid` | 2021-10-25 | 2 | -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` | 2021-10-25 | 2 | -70/+86 | |
| | |||||
* | Wire up `container` styling to `iced_native` | 2021-10-18 | 2 | -13/+7 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 2 | -2/+4 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 2 | -54/+55 | |
| | |||||
* | Merge pull request #971 from tarkah/fix/pane-dragging-overlay | 2021-07-28 | 1 | -8/+13 | |
|\ | | | | | fix: allow titlebar overlays to close when dragging pane | ||||
| * | Prevent body events pane is picked / dragging | 2021-07-27 | 1 | -8/+13 | |
| | | |||||
* | | Remove unnecesary use of `Option::unwrap` | 2021-07-15 | 1 | -3/+3 | |
| | | | | | | | | ... in `overlay` implementation for `pane_grid::TitleBar` | ||||
* | | Fix implementation of `Widget::overlay` for `pane_grid::TitleBar` | 2021-07-15 | 1 | -1/+17 | |
|/ | |||||
* | Use `match` statement in `Content::overlay` | 2021-06-22 | 1 | -5/+4 | |
| | | | | ... to improve readability a bit. | ||||
* | Allow overlay from pane grid title bar | 2021-06-17 | 2 | -8/+16 | |
| | |||||
* | Replace ignored doc-tests with additional documentation for `Padding` | 2021-06-01 | 1 | -5/+0 | |
| | |||||
* | Add support for asymmetrical padding | 2021-06-01 | 1 | -10/+19 | |
| | |||||
* | Enable event handling within the title elements | 2021-05-24 | 1 | -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-write | 2021-03-10 | 2 | -7/+7 | |
|\ | | | | | Write clipboard support and `TextInput` copy and cut behavior | ||||
| * | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 2 | -7/+7 | |
| | | |||||
* | | Merge pull request #771 from hecrj/fix/tooltip-layering | 2021-03-10 | 2 | -2/+7 | |
|\ \ | |/ |/| | Reposition `Tooltip` inside `viewport` bounds | ||||
| * | Fix `viewport` argument in `PaneGrid` draw calls | 2021-02-27 | 2 | -2/+7 | |
| | | |||||
* | | Call `hash_layout` for `controls` in `pane_grid::TitleBar` | 2021-03-09 | 1 | -0/+4 | |
|/ |