summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove subcrates `CHANGELOG`Libravatar Héctor Ramón Jiménez2020-04-021-38/+0
| | | | | | | | | | | | At this stage, it is important to allow the library to change rapidly. Because of this, keeping a log of changes can be counter-productive. We do not want pin down design decisions by writing detailed changelogs (sunk cost fallacy). Once the library and its different parts start becoming more stable and mature, we will reintroduce changelogs accordingly. For now, we will keep a main `CHANGELOG` file just for the `iced` crate.
* Add example to `pane_grid` module documentationLibravatar Héctor Ramón Jiménez2020-04-021-0/+7
|
* Fix typo in `text_input::Renderer::draw` docsLibravatar Héctor Ramón Jiménez2020-04-021-1/+1
|
* Add example to `iced_native::UserInterface`Libravatar Héctor Ramón Jiménez2020-04-021-0/+7
|
* Add examples to `iced_native::Widget`Libravatar Héctor Ramón Jiménez2020-04-021-0/+20
|
* Fix minor documentation issuesLibravatar Héctor Ramón Jiménez2020-04-021-6/+7
|
* Merge pull request #249 from michael-swan/masterLibravatar Héctor Ramón2020-03-311-0/+11
|\ | | | | Add Ctrl+Backspace text field behaviour
| * Add Ctrl+Backspace text field behaviourLibravatar Michael Swan2020-03-301-0/+11
| |
* | Merge branch 'master' into feature/container-paddingLibravatar Héctor Ramón Jiménez2020-03-312-28/+67
|\ \
| * | Genericize `From` implementation for `image::Handle`Libravatar Héctor Ramón Jiménez2020-03-311-9/+6
| | |
| * | Implement `svg::Handle::from_memory`Libravatar Héctor Ramón Jiménez2020-03-311-19/+61
| |/ | | | | | | Useful if you already have your SVG data in memory.
* / Implement `padding` support for `Container`Libravatar Héctor Ramón Jiménez2020-03-312-6/+18
|/
* Hash type ids in `Widget::hash_layout` implsLibravatar Héctor Ramón Jiménez2020-03-3015-32/+51
|
* refactor: remove not mandatory static lifetimeLibravatar Théo Gaillard2020-03-3012-30/+30
|
* ClippyLibravatar Kai Mast2020-03-281-3/+2
|
* Merge pull request #236 from hecrj/improvement/svg-handle-fromLibravatar Héctor Ramón2020-03-261-8/+5
|\ | | | | Genericize `From` implementation for `svg::Handle`
| * Genericize `From` implementation for `svg::Handle`Libravatar Héctor Ramón Jiménez2020-03-261-8/+5
| |
* | Make `subscription::Recipe` cross-platformLibravatar Héctor Ramón Jiménez2020-03-261-2/+2
|/ | | | By removing the `Send` requirement when targetting Wasm
* Remove unnecessary borrows in `Editor`Libravatar Héctor Ramón Jiménez2020-03-251-11/+10
|
* Fix edge cases when inserting text in `Editor`Libravatar Héctor Ramón Jiménez2020-03-251-2/+2
|
* Implement `Renderer::find_cursor_position`Libravatar Héctor Ramón Jiménez2020-03-252-48/+59
|
* Rename `is_pressed` to `is_dragging` in `text_input`Libravatar Héctor Ramón Jiménez2020-03-241-5/+5
|
* Improve docs of `text_input::State::cursor`Libravatar Héctor Ramón Jiménez2020-03-241-1/+4
|
* Remove commented code in `text_input`Libravatar Héctor Ramón Jiménez2020-03-241-9/+0
|
* Write documentation for `text_input::Cursor`Libravatar Héctor Ramón Jiménez2020-03-242-45/+65
|
* Fix edge case in `Editor::backspace`Libravatar Héctor Ramón Jiménez2020-03-241-4/+3
|
* Create `text_input::Editor` to hold editing logicLibravatar Héctor Ramón Jiménez2020-03-242-55/+103
|
* Move `Value` to its own moduleLibravatar Héctor Ramón Jiménez2020-03-242-139/+142
|
* Improve `text_input::cursor` APILibravatar Héctor Ramón Jiménez2020-03-243-89/+89
|
* Avoid panic in `Click::is_consecutive`Libravatar Héctor Ramón Jiménez2020-03-241-1/+4
|
* Merge branch 'master' into feature/text-selectionLibravatar Héctor Ramón Jiménez2020-03-2421-230/+1359
|\
| * Remove excess whitespace from end of line to comply with `cargo fmt`.Libravatar Mark Friedenbach2020-03-202-2/+2
| |
| * Fix links in `pane_grid` documentationLibravatar Héctor Ramón Jiménez2020-03-202-2/+4
| |
| * Rename `Internal::idle_pane` to `active_pane`Libravatar Héctor Ramón Jiménez2020-03-202-6/+3
| |
| * Check cursor is in-bounds before resizing panesLibravatar Héctor Ramón Jiménez2020-03-201-39/+44
| |
| * Fix minor documentation issues in `pane_grid`Libravatar Héctor Ramón Jiménez2020-03-192-2/+10
| |
| * Write documentation for `pane_grid`Libravatar Héctor Ramón Jiménez2020-03-197-11/+273
| |
| * Rename `PaneGrid::modifiers` to `pressed_modifiers`Libravatar Héctor Ramón Jiménez2020-03-191-5/+5
| |
| * Check only for partial match of modifier keysLibravatar Héctor Ramón Jiménez2020-03-181-3/+5
| |
| * Move common keyboard types to `iced_core`Libravatar Héctor Ramón Jiménez2020-03-173-217/+1
| | | | | | | | Also expose them in `iced` through `iced_native` and `iced_web`.
| * Add `modifiers` to `KeyPressEvent` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-03-171-3/+14
| |
| * Add `PaneGrid::on_key_press` for hotkey logicLibravatar Héctor Ramón Jiménez2020-03-172-3/+52
| |
| * Fix spacing calculation in `Axis::split`Libravatar Héctor Ramón Jiménez2020-03-171-11/+8
| |
| * Merge branch 'master' into feature/panes-widgetLibravatar Héctor Ramón Jiménez2020-03-173-4/+22
| |\
| | * Reuse `with_children` to remove some duplicationLibravatar Héctor Ramón Jiménez2020-03-172-20/+2
| | |
| | * Rename `new_with_children` to `with_children`Libravatar Héctor Ramón Jiménez2020-03-172-4/+8
| | |
| | * Instantiate Column and Row with childrenLibravatar Rowun Giles2020-03-162-0/+32
| | |
| | * Fix `Scrollable` width consistencyLibravatar Héctor Ramón Jiménez2020-03-141-2/+2
| | |
| * | Fix ratio calculation on resize in `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-141-8/+4
| | |
| * | Improve pane selection when resizing a `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-142-63/+65
| | |