summaryrefslogtreecommitdiffstats
path: root/native/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Implement mouse-based pane resizing for `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-144-10/+244
| | |
| * | Reintroduce `pane_grid::Split` as an identifierLibravatar Héctor Ramón Jiménez2020-03-144-7/+11
| | |
| * | Remove `PaneGrid::split_*` helpersLibravatar Héctor Ramón Jiménez2020-03-141-12/+0
| | | | | | | | | | | | We can use the `split` method directly instead.
| * | Rename `Split` to `Axis`Libravatar Héctor Ramón Jiménez2020-03-144-23/+18
| | |
| * | Replace `FocusedPane` with `Action` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-03-143-50/+52
| | |
| * | Create module boundaries for `pane_grid` logicLibravatar Héctor Ramón Jiménez2020-03-146-412/+448
| | |
| * | Reuse `PaneGrid::focus` to remove some duplicationLibravatar Héctor Ramón Jiménez2020-03-141-9/+2
| | |
| * | Simplify `iter` and `iter_mut` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-03-141-4/+4
| | |
| * | Expose `adjacent_pane` instead of `focus_adjacent`Libravatar Héctor Ramón Jiménez2020-03-141-33/+37
| | |
| * | Improve `PaneGrid::focus_adjacent` intuitivenessLibravatar Héctor Ramón Jiménez2020-03-131-67/+27
| | |
| * | Draft `PaneGrid::focus_adjacent`Libravatar Héctor Ramón Jiménez2020-03-131-8/+83
| | |
| * | Unfocus pane in `PaneGrid` on out-of-bounds clickLibravatar Héctor Ramón Jiménez2020-03-131-0/+2
| | |
| * | Implement `spacing` support for `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-131-11/+32
| | |
| * | Improve `PaneGrid` API by introducing `DragEvent`Libravatar Héctor Ramón Jiménez2020-03-131-33/+43
| | |
| * | Replace `Panes` with `PaneGrid` in documentationLibravatar Héctor Ramón Jiménez2020-03-111-12/+13
| | |
| * | Round region dimensions of panes to avoid overlapsLibravatar Héctor Ramón Jiménez2020-03-111-2/+2
| | |
| * | Expose `pane_grid::Focus` for state-based stylingLibravatar Héctor Ramón Jiménez2020-03-111-28/+87
| | |
| * | Draft drag and drop support for `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-101-29/+135
| | |
| * | Implement `Default` for `keyboard::ModifiersState`Libravatar Héctor Ramón Jiménez2020-03-101-1/+1
| | |
| * | Merge branch 'master' into feature/panes-widgetLibravatar Héctor Ramón Jiménez2020-03-102-3/+3
| |\|
| | * Merge pull request #91 from nvzqz/const-all-the-thingsLibravatar Héctor Ramón2020-03-062-3/+3
| | |\ | | | | | | | | Make many functions `const`
| | | * Remove counterintuitive constant functionsLibravatar Héctor Ramón Jiménez2020-03-067-31/+28
| | | |
| | | * Make many functions `const`Libravatar Nikolai Vazquez2019-11-297-31/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`.
| * | | Rename `Panes` widget to `PaneGrid`Libravatar Héctor Ramón Jiménez2020-03-102-8/+8
| | | |
| * | | Implement `panes::State::close`Libravatar Héctor Ramón Jiménez2020-03-051-3/+47
| | | |
| * | | Fix `Split::apply` on vertical splitsLibravatar Héctor Ramón Jiménez2020-03-041-4/+15
| | | |
| * | | Compute `panes` regions and focus on clickLibravatar Héctor Ramón Jiménez2020-03-041-14/+184
| | | |
| * | | Draft `Panes` widget and `panes` exampleLibravatar Héctor Ramón Jiménez2020-03-044-2/+243
| |/ /
| * | Note BGRA requirement in Handle::from_pixels docsLibravatar Soham Chowdhury2020-03-011-1/+3
| | |
| * | Add support for loading already-decoded image pixelsLibravatar Soham Chowdhury2020-02-291-0/+26
| | |
| * | Implemented a texture atlas for images and svgs.Libravatar Malte Veerman2020-02-251-1/+1
| | |
* | | Convert `mouse::State` into `mouse::Click`Libravatar Héctor Ramón Jiménez2020-03-243-84/+111
| | |
* | | fixed panic on pasting into non updating inputLibravatar FabianLars2020-03-141-1/+1
| | |
* | | keep cursor inside value boundaries more reliableLibravatar FabianLars2020-03-131-3/+3
| | |
* | | disable word selection if is_secure == trueLibravatar FabianLars2020-02-271-6/+10
| | |
* | | really small cleanupLibravatar FabianLars2020-02-262-8/+2
| | |
* | | More selection actions: (Ctrl +) Shift + Left/Right, Shift + Home/EndLibravatar FabianLars2020-02-252-5/+45
| | |
* | | double click fixedLibravatar FabianLars2020-02-242-6/+4
| | |
* | | moved cursor into own fileLibravatar FabianLars2020-02-243-241/+308
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Text Selection completely rewrittenLibravatar FabianLars2020-02-241-304/+283
| | |
* | | max time window for double clickLibravatar FabianLars2020-02-231-1/+20
| | |
* | | double click for word selectionLibravatar FabianLars2020-02-231-1/+39
| | | | | | | | | | | | 3 clicks to select all
* | | ctrl + a selection for text inputLibravatar FabianLars2020-02-221-0/+10
| | |
* | | inital patch by FinneraleLibravatar FabianLars2020-02-221-39/+210
|/ /
* | Merge pull request #193 from hecrj/feature/canvasLibravatar Héctor Ramón2020-02-202-54/+1
|\ \ | | | | | | Canvas widget for 2D graphics
| * \ Merge branch 'master' into feature/canvasLibravatar Héctor Ramón Jiménez2020-02-155-11/+34
| |\ \
| * | | Move `Size` to `iced_core`Libravatar Héctor Ramón Jiménez2020-02-142-54/+1
| | | |
* | | | Pull `Checkbox` default constants from its `Renderer`Libravatar Héctor Ramón Jiménez2020-02-184-20/+25
| | | |
* | | | Add size, spacing, and text_size properties to CheckboxLibravatar Clark Moody2020-02-171-7/+38
| |/ / |/| |
* | | Improve documentation for new `Node` methodsLibravatar Héctor Ramón Jiménez2020-02-141-6/+5
| | |