summaryrefslogtreecommitdiffstats
path: root/widget/src/text_input.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Show `text_input` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-191-12/+52
|
* Implement some `From` traits for `text_input::Id`Libravatar Héctor Ramón Jiménez2024-09-181-12/+27
|
* Add `mouse::Button` to `mouse::Click`Libravatar Isaac Marovitz2024-09-091-2/+5
|
* Simplify type signature of `TextInput` methodsLibravatar Héctor Ramón Jiménez2024-09-071-21/+11
|
* Add `*_maybe` helper methods for `TextInput`Libravatar JL7102024-09-071-0/+39
|
* Add `text::Wrapping` supportLibravatar Héctor Ramón Jiménez2024-09-041-0/+3
| | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com>
* Allow interactions on disabled `text_input`Libravatar Héctor Ramón Jiménez2024-09-041-19/+28
| | | | Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com>
* Implement `align_x` for `TextInput`Libravatar Shan2024-08-241-10/+69
| | | | Co-authored-by: Shan <shankern@protonmail.com>
* Introduce `black_box` and `chain` in `widget::operation`Libravatar Héctor Ramón Jiménez2024-08-081-1/+1
|
* Implement blinking cursor for `text_editor`Libravatar Héctor Ramón Jiménez2024-07-291-15/+0
|
* Decouple caching from `Paragraph` APILibravatar Héctor Ramón Jiménez2024-07-171-15/+17
|
* Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-051-6/+7
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-20/+23
|
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-101-3/+3
| | | | And remove `window::Id` from `Event` altogether.
* Create `jump` and `macos_command` methods in `keyboard::Modifiers`Libravatar Héctor Ramón Jiménez2024-05-311-39/+6
|
* Add Command + ArrowLeft/Right input behavior for macosLibravatar BradySimon2024-05-311-20/+61
|
* Merge branch 'master' into wgpu/better-architectureLibravatar Héctor Ramón Jiménez2024-04-071-2/+4
|\
| * Check is_secure before a copy/cut from TextInput (#2366)Libravatar Aaron McGuire2024-04-021-2/+4
| | | | | | | | | | * Check is_secure before copy/cut on text_input * run cargo fmt
* | Decouple caching from layering and simplify everythingLibravatar Héctor Ramón Jiménez2024-04-051-4/+5
|/
* Use generic `Content` in `Text` to avoid reallocation in `fill_text`Libravatar Héctor Ramón Jiménez2024-04-011-2/+4
|
* Use `Catalog` approach for all widgetsLibravatar Héctor Ramón Jiménez2024-03-241-50/+56
|
* Use closures for `TextInput::style`Libravatar Héctor Ramón Jiménez2024-03-121-13/+16
|
* Use integer coordinates for input caretLibravatar Héctor Ramón Jiménez2024-03-101-1/+2
| | | | | This should stop the caret from changing thickness in screens with an integral scale factor.
* Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-17/+14
|
* Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-071-4/+2
|
* Use `Style` struct pattern instead of trait for all widgetsLibravatar Héctor Ramón Jiménez2024-03-061-17/+36
|
* Simplify theming for `TextInput` widgetLibravatar Héctor Ramón Jiménez2024-03-051-845/+824
|
* Capture select all command in `TextInput`Libravatar Héctor Ramón Jiménez2024-02-281-0/+2
|
* Prioritize `TextInput` and `TextEditor` commands over text insertionLibravatar Héctor Ramón Jiménez2024-02-281-73/+83
|
* Prioritize text insertion in `TextInput` and `TextEditor`Libravatar Héctor Ramón Jiménez2024-02-211-23/+22
|
* Rename `password` method in `TextInput` to `secure`Libravatar Héctor Ramón Jiménez2024-02-151-4/+4
|
* Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez2024-02-131-7/+12
|
* Fix impossible to type `v` in `TextInput`Libravatar Héctor Ramón Jiménez2024-01-221-34/+29
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-26/+27
|
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-201-3/+1
|
* Use `Default` implementation of `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-201-11/+5
|
* feat: quad shadowsLibravatar Nick Senger2024-01-201-0/+3
|
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-26/+28
|
* Merge branch 'master' into update-winitLibravatar Héctor Ramón Jiménez2024-01-161-59/+63
|\
| * Merge pull request #2192 from iced-rs/fix/layout-inconsistenciesLibravatar Héctor Ramón2024-01-121-36/+32
| |\ | | | | | | Layout consistency
| | * Introduce useful helpers in `layout` moduleLibravatar Héctor Ramón Jiménez2024-01-101-2/+2
| | |
| | * Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez2024-01-101-6/+5
| | |
| | * Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-30/+27
| | |
| * | Fix clipping of `TextInput` selectionLibravatar Héctor Ramón Jiménez2024-01-121-23/+31
| |/
* / Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-151-29/+27
|/
* Merge pull request #1964 from bungoboingo/feat/multi-window-supportLibravatar Héctor Ramón2023-12-051-3/+3
|\ | | | | [Feature] 🪟 Multi Window 🪟 .. redux!
| * Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-291-182/+250
| |\
| * | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs
* | | Fix `clippy` lintLibravatar Héctor Ramón Jiménez2023-12-011-1/+1
| | |
* | | Clip text to `viewport` bounds instead of layout boundsLibravatar Héctor Ramón Jiménez2023-12-011-31/+28
| |/ |/|