Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 3 | -392/+0 | |
| | |||||
* | Address Clippy lints | 2022-07-09 | 2 | -17/+9 | |
| | |||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 1 | -1/+1 | |
| | |||||
* | Run cargo fmt | 2021-04-12 | 2 | -4/+4 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 2 | -9/+21 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 2 | -24/+1 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Implement flexible `TextInput::draw` helper | 2020-11-17 | 1 | -0/+9 | |
| | |||||
* | Remove redundant `min` checks in `Editor` | 2020-07-11 | 1 | -3/+3 | |
| | |||||
* | Improve safety of `Cursor::selection` | 2020-07-11 | 2 | -18/+12 | |
| | |||||
* | Fix panic on paste in TextInput after programmatic modification of contents | 2020-07-10 | 1 | -6/+12 | |
| | |||||
* | Clippy | 2020-03-28 | 1 | -3/+2 | |
| | |||||
* | Remove unnecessary borrows in `Editor` | 2020-03-25 | 1 | -11/+10 | |
| | |||||
* | Fix edge cases when inserting text in `Editor` | 2020-03-25 | 1 | -2/+2 | |
| | |||||
* | Write documentation for `text_input::Cursor` | 2020-03-24 | 1 | -44/+64 | |
| | |||||
* | Fix edge case in `Editor::backspace` | 2020-03-24 | 1 | -4/+3 | |
| | |||||
* | Create `text_input::Editor` to hold editing logic | 2020-03-24 | 1 | -0/+80 | |
| | |||||
* | Move `Value` to its own module | 2020-03-24 | 1 | -0/+134 | |
| | |||||
* | Improve `text_input::cursor` API | 2020-03-24 | 1 | -51/+47 | |
| | |||||
* | really small cleanup | 2020-02-26 | 1 | -6/+1 | |
| | |||||
* | More selection actions: (Ctrl +) Shift + Left/Right, Shift + Home/End | 2020-02-25 | 1 | -1/+5 | |
| | |||||
* | moved cursor into own file | 2020-02-24 | 1 | -0/+176 | |
moved click tracking as a new State struct to input::mouse made cursor field of text_input state private brought back cursor type(Index, Selection) representation with a state enum cleaned out some stuff (but not enough/all) TODO: Documentation (sigh) TODO: Editor struct TODO: some (hopefully) small improvements here and there |