summaryrefslogtreecommitdiffstats
path: root/widget/src/text_input.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |/ |/|
* | Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-271-12/+12
|\ \
| * | Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-12/+12
| | |
* | | Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-111-10/+7
|/ /
* | Fix `ComboBox` widget not displaying selection textLibravatar Héctor Ramón Jiménez2023-09-101-1/+27
| |
* | Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-101-1/+1
|\ \
| * | Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-091-1/+1
| | |
* | | Implement `Icon` support for `TextInput`Libravatar Héctor Ramón Jiménez2023-09-091-4/+23
| | |
* | | Simplify new logic in `TextInput`Libravatar Héctor Ramón Jiménez2023-08-301-33/+25
| | |
* | | Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez2023-08-301-27/+19
| | |
* | | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-158/+164
|/ /
* | Run `cargo fmt` with Rust 1.72Libravatar Héctor Ramón Jiménez2023-08-261-2/+6
| |
* | ensure no paste with altLibravatar Casper Rogild Storm2023-08-051-1/+3
| |