summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-27remove re-export on viewer::StateLibravatar Cory Forsstrom1-3/+6
2020-05-27centered image and zoom to cursorLibravatar Cory Forsstrom1-5/+8
2020-05-26rename to image::ViewerLibravatar Cory Forsstrom3-5/+5
2020-05-26Rename and add to iced image moduleLibravatar Cory Forsstrom2-4/+4
2020-05-26Rebase to master and update for api changesLibravatar Cory Forsstrom1-4/+4
2020-05-26Show idle cursor if image can't be pannedLibravatar Cory Forsstrom1-2/+5
2020-05-26Add `ImagePane` widgetLibravatar Cory Forsstrom2-0/+38
2020-05-25Update `wgpu_glyph` and `glyph_brush`Libravatar Héctor Ramón Jiménez1-8/+1
2020-05-19Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez16-1106/+0
2020-05-15Updated `Radio` layout/fns to match `Checkbox`Libravatar Scott Harper1-3/+2
2020-04-30Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez15-57/+57
2020-04-29Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez13-13/+13
2020-04-28Introduce `Translate` primitive in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-3/+3
2020-04-23Make `Font` an associated type of `text::Renderer`Libravatar Héctor Ramón Jiménez1-0/+2
2020-04-10Align text in `iced_wgpu` on a case-by-case basisLibravatar Héctor Ramón Jiménez3-2/+19
2020-04-09Fix unnecessary clip of text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-4/+14
It should only produce a `Clip` primitive when the contents overflow the input now.
2020-04-09Fix `measure_value` for text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-3/+3
It accounts for spaces at the start of text now.
2020-03-29Remove unnecessary conversion in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-2/+1
2020-03-29Remove redundant field assignmentLibravatar Héctor Ramón Jiménez1-1/+1
2020-03-29Remove unnecessary merge of `iced_wgpu::Defaults`Libravatar Héctor Ramón Jiménez2-3/+1
2020-03-25Implement `Renderer::find_cursor_position`Libravatar Héctor Ramón Jiménez1-2/+2
2020-03-24Improve `text_input::cursor` APILibravatar Héctor Ramón Jiménez1-46/+75
2020-03-18Make cursor unavailable when dragging panesLibravatar Héctor Ramón Jiménez1-1/+9
2020-03-14Improve pane selection when resizing a `PaneGrid`Libravatar Héctor Ramón Jiménez1-2/+2
2020-03-14Implement mouse-based pane resizing for `PaneGrid`Libravatar Héctor Ramón Jiménez1-1/+7
2020-03-10Clip `scrollable` primitives only when necessaryLibravatar Héctor Ramón Jiménez1-7/+7
2020-03-10Draft drag and drop support for `PaneGrid`Libravatar Héctor Ramón Jiménez1-18/+62
2020-03-10Rename `Panes` widget to `PaneGrid`Libravatar Héctor Ramón Jiménez2-4/+4
2020-03-04Compute `panes` regions and focus on clickLibravatar Héctor Ramón Jiménez1-3/+3
2020-03-04Draft `Panes` widget and `panes` exampleLibravatar Héctor Ramón Jiménez2-0/+35
2020-02-24moved cursor into own fileLibravatar FabianLars1-43/+7
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
2020-02-24Text Selection completely rewrittenLibravatar FabianLars1-6/+41
2020-02-22 inital patch by FinneraleLibravatar FabianLars1-3/+43
2020-02-18Pull `Checkbox` default constants from its `Renderer`Libravatar Héctor Ramón Jiménez2-11/+3
2020-02-09Allow `iced_wgpu` to render to any `TextureView`Libravatar Héctor Ramón Jiménez1-91/+0
2020-02-07Increase precision of `scale_factor` in `Windowed`Libravatar Héctor Ramón Jiménez1-4/+4
2020-02-07Update `winit` to `0.20`Libravatar Héctor Ramón Jiménez1-18/+18
2020-01-27Custom fonts can be set in the text input.Libravatar sumibi-yakitori1-4/+10
2020-01-22Add default padding to `Button`Libravatar Héctor Ramón Jiménez1-0/+2
2020-01-20Make `image` support optional in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-1/+3
This reduces binary size when image rendering is not necessary a considerable amount.
2020-01-10Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez1-1/+2
We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
2020-01-08Fix drawing empty `Quad` on empty `ProgressBar`Libravatar Héctor Ramón Jiménez1-13/+17
2020-01-08Allow `Checkbox` style to change based on its stateLibravatar Héctor Ramón Jiménez1-2/+2
2020-01-07Always show scroller if scrollbar is visibleLibravatar Héctor Ramón Jiménez1-35/+38
2020-01-07Implement styling for `Checkbox`Libravatar Héctor Ramón Jiménez1-15/+16
2020-01-07Implement styling for `Radio`Libravatar Héctor Ramón Jiménez1-12/+14
2020-01-07Implement styling for `ProgressBar`Libravatar Héctor Ramón Jiménez1-14/+13
2020-01-07Implement styling for `Slider`Libravatar Héctor Ramón Jiménez1-21/+36
2020-01-06Implement styling for `Scrollable`Libravatar Héctor Ramón Jiménez1-12/+21
2020-01-06Draft `styling` exampleLibravatar Héctor Ramón Jiménez1-1/+0