summaryrefslogtreecommitdiffstats
path: root/native/src/widget/text_input.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-1218/+0
|
* Compute grapheme index in `find_cursor_position` for `TextInput`Libravatar Héctor Ramón Jiménez2023-02-241-3/+12
|
* Fix useless `f32` conversions and please `clippy`Libravatar Héctor Ramón Jiménez2023-02-241-6/+1
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-241-10/+8
|
* Fix `clippy` lints :tada:Libravatar Héctor Ramón Jiménez2023-02-241-1/+1
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-241-18/+21
|
* Fix `TextInput` line heightLibravatar Héctor Ramón Jiménez2023-02-241-1/+5
|
* Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-171-4/+4
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-171-10/+10
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-7/+3
|
* Pad after setting widthLibravatar Cory Forsstrom2023-02-141-1/+1
| | | | | Otherwise `width` will set limits back to a fixed width if `Length::Units` is used, overwriting padding.
* Use `instant` instead of `wasm-timer` in `iced_core`Libravatar Héctor Ramón Jiménez2023-01-121-2/+1
|
* Use `instant` to fix Wasm targetLibravatar Héctor Ramón Jiménez2023-01-121-1/+1
|
* Replace `Option<Instant>` with `RedrawRequest` enumLibravatar Héctor Ramón Jiménez2023-01-121-2/+2
|
* Rename `Focus::at` to `Focus::updated_at` in `text_input`Libravatar Héctor Ramón Jiménez2023-01-121-7/+14
|
* Use short-hand field notation in `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-1/+1
|
* Avoid reblinking cursor when clicking a focused `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-12/+7
|
* Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-121-24/+78
| | | | ... and implement `TextInput` cursor blink :tada:
* TextInput: SHIFT+Left Click to SelectLibravatar Ryan Scheidter2022-12-251-2/+10
|
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-221-0/+1
|
* Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-021-4/+57
|\
| * Fix padding for `TextInput` with `Length::Units` widthLibravatar Héctor Ramón Jiménez2022-11-161-7/+5
| |
| * Merge pull request #1526 from mtkennerly/feature/find-focusedLibravatar Héctor Ramón2022-11-141-0/+6
| |\ | | | | | | Add widget operation to find currently focused widget
| | * Allow converting from widget-specific IDs to generic IDLibravatar mtkennerly2022-11-111-0/+6
| | |
| * | Add text input operationsLibravatar Cory Forsstrom2022-11-111-0/+45
| |/
| * Fix broken documentation linksLibravatar 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-3/+3
| |
| * Merge pull request #1494 from tarkah/fix/paddingLibravatar Héctor Ramón2022-11-081-3/+7
| |\ | | | | | | Constrain padding to resolved inner / outer widget sizes
| | * Rearrange `layout` code to improve readabilityLibravatar Héctor Ramón Jiménez2022-11-081-3/+1
| | |
| | * Rename `Padding::constrain` to `fit`Libravatar Héctor Ramón Jiménez2022-11-081-1/+1
| | |
| | * Fix text input paddingLibravatar Cory Forsstrom2022-10-271-3/+9
| | |
* | | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-3/+3
|/ /
* | Increase default `padding` of `TextInput`Libravatar Héctor Ramón Jiménez2022-11-031-1/+1
| |
* | Reset `is_pasting` for `TextInput` even when unfocusedLibravatar Héctor Ramón Jiménez2022-10-291-0/+2
| |
* | Keep keyboard modifiers always in sync in `TextInput`Libravatar Héctor Ramón Jiménez2022-10-291-3/+1
|/
* Fix latest `clippy` lintsLibravatar Héctor Ramón Jiménez2022-09-231-14/+10
|
* Write missing documentation in `iced_native`Libravatar Héctor Ramón Jiménez2022-08-051-0/+6
|
* Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez2022-08-041-3/+2
|
* Focus text inputs in `todos` exampleLibravatar Héctor Ramón Jiménez2022-07-281-0/+4
|
* Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez2022-07-281-2/+37
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-0/+15
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-113/+120
|
* Simplify `update` signature in `text_input`Libravatar Héctor Ramón Jiménez2022-07-131-2/+2
|
* Simplify `on_paste` signatureLibravatar Héctor Ramón Jiménez2022-07-131-5/+8
| | | | ... and fix spacing.
* Added `on_paste` handler to `TextInput`Libravatar Wyatt Jacob Herkamp2022-07-131-2/+17
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-1/+1
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-091-11/+11
|
* Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-071-22/+33
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+1
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-3/+6
|