summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement `Widget::mouse_interaction` for `Slider`Libravatar Héctor Ramón Jiménez2021-10-201-0/+18
|
* Implement `Widget::draw` for `Slider`Libravatar Héctor Ramón Jiménez2021-10-201-14/+81
|
* Wire up styling to `Slider` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-202-40/+18
|
* Implement `Widget::mouse_interaction` for `Button`Libravatar Héctor Ramón Jiménez2021-10-181-1/+18
|
* Implement `Widget::mouse_interaction` for `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-181-0/+39
|
* Implement `Widget::mouse_interaction` for `Row`Libravatar Héctor Ramón Jiménez2021-10-181-0/+21
|
* Implement `Widget::mouse_interaction` for `Column`Libravatar Héctor Ramón Jiménez2021-10-181-0/+21
|
* Implement `Widget::mouse_interaction` for `Container`Libravatar Héctor Ramón Jiménez2021-10-181-0/+14
|
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-186-9/+106
|
* Implement `Widget::draw` for `Button`Libravatar Héctor Ramón Jiménez2021-10-181-7/+60
|
* Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-182-29/+12
|
* Draw styling in `Widget::draw` for `Container`Libravatar Héctor Ramón Jiménez2021-10-181-8/+36
|
* Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-188-55/+28
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-1831-133/+140
|
* Draw scrollbar in `Widget::draw` for `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-185-115/+119
|
* Introduce `fill_rectangle` to `Renderer` traitLibravatar Héctor Ramón Jiménez2021-10-182-1/+14
|
* Implement `Widget::draw` for `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-144-51/+116
| | | | Rendering the scroller is still WIP
* Implement `Widget::draw` for `Container`Libravatar Héctor Ramón Jiménez2021-10-141-1/+7
|
* Implement `Widget::draw` for `Row`Libravatar Héctor Ramón Jiménez2021-10-141-8/+3
|
* Implement `Widget::draw` for `Column`Libravatar Héctor Ramón Jiménez2021-10-141-1/+3
|
* Implement `Widget::draw` for `Text`Libravatar Héctor Ramón Jiménez2021-10-145-10/+66
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-1434-1141/+383
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-2012-85/+106
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-2010-46/+58
|
* Improve readability of Align::Fill branchingLibravatar Cory Forsstrom2021-09-201-34/+22
|
* Calc fill cross and use for all childrenLibravatar Cory Forsstrom2021-09-201-29/+55
|
* Add Align::Fill variantLibravatar Cory Forsstrom2021-09-202-13/+55
|
* Merge pull request #1047 from iced-rs/revert-menusLibravatar Héctor Ramón2021-09-152-3/+3
|\ | | | | Revert system menus support
| * Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-152-3/+3
| | | | | | | | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* | Use `Option` to encode empty text case in hit test methodsLibravatar Héctor Ramón Jiménez2021-09-153-29/+32
|/
* Write missing docs and `Debug` implementations for `native`Libravatar Héctor Ramón Jiménez2021-09-134-2/+51
|
* Hide implementation details of `Command` in `iced_futures`Libravatar Héctor Ramón Jiménez2021-09-021-40/+25
|
* Handle `clipboard::Action` in `iced_winit` shellLibravatar Héctor Ramón Jiménez2021-09-021-2/+2
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-029-18/+151
| | | | | | | | | 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!)
* Rename `HitTestResult` to `Hit`Libravatar Héctor Ramón Jiménez2021-08-263-10/+12
| | | | ... and also move it to a new `text` module in `iced_core`
* Implement textual hit testingLibravatar Tom2021-08-214-69/+42
|
* Merge pull request #652 from twitchyliquid64/text_input_fixLibravatar Héctor Ramón2021-08-121-0/+10
|\ | | | | text_input: Do not capture Tab/Up/Down keys
| * text_input: Do not capture tab/up/down keysLibravatar Tom2020-12-161-0/+10
| |
* | Merge pull request #971 from tarkah/fix/pane-dragging-overlayLibravatar Héctor Ramón2021-07-282-26/+32
|\ \ | | | | | | fix: allow titlebar overlays to close when dragging pane
| * | 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-272-10/+24
| | |
| * | Fix overlay in titlebar when initiating dragLibravatar Cory Forsstrom2021-07-271-18/+14
| | |
* | | Allow `PickList` selection with mouse scroll only if command is pressedLibravatar Héctor Ramón Jiménez2021-07-271-2/+13
| | | | | | | | | | | | | | | This should avoid unintended interactions when using a `PickList` inside a `Scrollable`
* | | Add window::Event::MovedLibravatar Cory Forsstrom2021-07-261-0/+8
| | |
* | | Merge pull request #872 from 13r0ck/masterLibravatar Héctor Ramón2021-07-221-0/+37
|\ \ \ | | | | | | | | add scrolling to pick_lists
| * | | Enable scroll selection for `PickList` only when scroll is discreteLibravatar Héctor Ramón Jiménez2021-07-221-8/+4
| | | |
| * | | Abstract and improve scroll logic in `PickList`Libravatar Héctor Ramón Jiménez2021-07-221-25/+21
| | | |
| * | | Remove redundant 'on_change'Libravatar 13r0ck2021-05-251-14/+0
| | | |
| * | | cargo fmtLibravatar 13r0ck2021-05-101-7/+13
| | | |
| * | | Improve performance using itersLibravatar 13r0ck2021-05-101-23/+8
| | | |