Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 5 | -35/+36 | |
| | |||||
* | Use `Option` to encode empty text case in hit test methods | 2021-09-15 | 1 | -1/+1 | |
| | |||||
* | Use `FillTessellator::tessellate_rectangle` in `Frame` | 2021-08-26 | 1 | -10/+8 | |
| | |||||
* | Avoid reallocating tessellators in `Frame` methods | 2021-08-26 | 1 | -27/+36 | |
| | |||||
* | Update `lyon` to `0.17` in `iced_graphics` | 2021-08-26 | 3 | -27/+23 | |
| | |||||
* | Rename `HitTestResult` to `Hit` | 2021-08-26 | 1 | -3/+2 | |
| | | | | ... and also move it to a new `text` module in `iced_core` | ||||
* | Implement textual hit testing | 2021-08-21 | 1 | -1/+21 | |
| | |||||
* | Avoid cloning `placeholder` for `PickList` unnecessarily during `draw` | 2021-07-22 | 1 | -2/+4 | |
| | |||||
* | Introduce `placeholder_color` to `pick_list::Style` | 2021-07-22 | 1 | -1/+4 | |
| | |||||
* | feat: add placeholders to pick_list | 2021-07-22 | 1 | -1/+2 | |
| | | | | see issue #726 | ||||
* | fix-typo | 2021-06-24 | 1 | -1/+1 | |
| | |||||
* | docs: update all 0.2 github links to 0.3 | 2021-06-14 | 1 | -1/+1 | |
| | |||||
* | Change label of `Toggler` to optional | 2021-06-03 | 1 | -2/+7 | |
| | |||||
* | Implement `Toggler` widget for iced_native | 2021-06-03 | 1 | -0/+94 | |
| | |||||
* | Use `Padding::horizontal` and `Padding::vertical` helpers | 2021-06-01 | 1 | -2/+1 | |
| | |||||
* | Fix `Tooltip` widget | 2021-06-01 | 1 | -3/+3 | |
| | |||||
* | Add support for asymmetrical padding | 2021-06-01 | 2 | -7/+9 | |
| | |||||
* | Enable event handling within the title elements | 2021-05-24 | 1 | -3/+3 | |
| | | | | | Shrink the pick area to avoid both the controls and the title elements. Handle events and merge title area event status with control events. | ||||
* | Fix `Scrollable` scrollbar being rendered behind contents | 2021-05-03 | 1 | -1/+9 | |
| | | | | ... by issuing a new clip layer just for the scrollbar itself. | ||||
* | Update frame.rs | 2021-04-01 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #770 from hecrj/feature/clipboard-write | 2021-03-10 | 1 | -2/+2 | |
|\ | | | | | Write clipboard support and `TextInput` copy and cut behavior | ||||
| * | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -2/+2 | |
| | | |||||
* | | Reposition `Tooltip` inside `viewport` bounds | 2021-02-27 | 1 | -37/+60 | |
| | | | | | | | | ... only when out of bounds. | ||||
* | | Fix `viewport` argument in `PaneGrid` draw calls | 2021-02-27 | 1 | -5/+14 | |
|/ | |||||
* | Add `style` and `padding` to `Tooltip` | 2021-02-23 | 1 | -24/+62 | |
| | |||||
* | Introduce `Tooltip::gap` to control spacing | 2021-02-23 | 1 | -6/+10 | |
| | |||||
* | Change `Tooltip` to support `Text` only for now | 2021-02-23 | 1 | -5/+71 | |
| | |||||
* | feat(native): add Tooltip widget | 2021-02-15 | 1 | -0/+37 | |
| | |||||
* | Implement split highlight on hover for `PaneGrid` | 2021-01-01 | 1 | -12/+66 | |
| | |||||
* | Merge pull request #657 from clarkmoody/feature/pane-grid-title-contents | 2020-12-22 | 1 | -22/+11 | |
|\ | | | | | Generic Element Content in Pane Grid TitleBar | ||||
| * | Remove unnecessary `text::Renderer` bound for `PaneGrid` | 2020-12-22 | 1 | -3/+2 | |
| | | | | | | | | This is no longer necessary, as we do not render text directly anymore. | ||||
| * | Replace TitleBar string title with generic Content | 2020-12-10 | 1 | -19/+9 | |
| | | |||||
* | | Rename `starting_cursor_pos` to `cursor_grabbed_at` in `image::Viewer` | 2020-12-18 | 1 | -1/+1 | |
| | | |||||
* | | Fix `layout` of `image::Viewer` | 2020-12-18 | 1 | -5/+9 | |
| | | |||||
* | | Format use declarations in `image::viewer` | 2020-12-18 | 1 | -4/+4 | |
| | | |||||
* | | Merge remote-tracking branch 'tarkah/image-pane' into image-pane | 2020-12-18 | 2 | -1/+55 | |
|/ | |||||
* | Update example links to point to `0.2` branch | 2020-11-26 | 1 | -1/+1 | |
| | |||||
* | Account for empty ranges in `Slider` and `ProgressBar` | 2020-11-26 | 2 | -7/+14 | |
| | |||||
* | fix slider handle_offset formula | 2020-11-26 | 1 | -1/+1 | |
| | | | | | | change : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(1.0)) to : let handle_offset = (bounds.width - handle_width) * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0) | ||||
* | fix active_progress_width formula | 2020-11-26 | 1 | -1/+1 | |
| | | | | | | change : let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(1.0)) to : let active_progress_width = bounds.width * ((value - range_start) / (range_end - range_start).max(f32::EPSILON)).max(0.0).min(1.0) | ||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 16 | -143/+11 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Merge pull request #627 from hecrj/fix/canvas-rotation | 2020-11-24 | 1 | -1/+1 | |
|\ | | | | | Fix backwards `Frame::rotate` in `canvas` | ||||
| * | Fix backwards `Frame::rotate` in `canvas` | 2020-11-22 | 1 | -1/+1 | |
| | | | | | | | | | | The angle direction has been fixed upstream in `euclid` (see https://github.com/servo/euclid/pull/413). | ||||
* | | Use `f32` for `border_width` and `border_radius` | 2020-11-23 | 8 | -20/+20 | |
|/ | |||||
* | Implement `QRCode` widget | 2020-11-20 | 1 | -0/+305 | |
| | |||||
* | Remove `Focus` in `pane_grid` | 2020-11-17 | 1 | -2/+2 | |
| | | | | Since #608, the `PaneGrid` widget does not handle pane focus. | ||||
* | Implement event capturing for `Canvas` | 2020-11-12 | 3 | -8/+13 | |
| | |||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 2 | -3/+9 | |
| | |||||
* | Restore hotkeys in `pane_grid` example | 2020-11-10 | 1 | -2/+2 | |
| | | | | | | - Implement `subscription::events_with` - Remove `pane_grid::KeyPressEvent` - Return closest sibling in `pane_grid::State::close` | ||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 6 | -11/+32 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. |