Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Add workflow to check format in CI | 2020-03-21 | 2 | -2/+12 | ||
|/ / | ||||||
* | | Merge pull request #228 from maaku/fix-cargo-fmt | 2020-03-21 | 2 | -2/+2 | ||
|\ \ | ||||||
| * | | Remove excess whitespace from end of line to comply with `cargo fmt`. | 2020-03-20 | 2 | -2/+2 | ||
|/ / | ||||||
* | | Merge pull request #224 from hecrj/feature/panes-widget | 2020-03-20 | 36 | -35/+1915 | ||
|\ \ | ||||||
| * | | Fix links in `pane_grid` documentation | 2020-03-20 | 2 | -2/+4 | ||
| * | | Rename `Internal::idle_pane` to `active_pane` | 2020-03-20 | 2 | -6/+3 | ||
| * | | Check cursor is in-bounds before resizing panes | 2020-03-20 | 1 | -39/+44 | ||
| * | | Remove redundant check in `ModifiersState::matches` | 2020-03-20 | 1 | -4/+4 | ||
| * | | Use `f32::hypot` in `Point::distance` | 2020-03-20 | 1 | -1/+1 | ||
| * | | Fix minor documentation issues in `pane_grid` | 2020-03-19 | 2 | -2/+10 | ||
| * | | Create `PaneGrid` alias in `iced_wgpu` | 2020-03-19 | 3 | -3/+24 | ||
| * | | Write documentation for `pane_grid` | 2020-03-19 | 7 | -11/+273 | ||
| * | | Rename `PaneGrid::modifiers` to `pressed_modifiers` | 2020-03-19 | 1 | -5/+5 | ||
| * | | Check only for partial match of modifier keys | 2020-03-18 | 2 | -4/+21 | ||
| * | | Update `README` of examples | 2020-03-18 | 2 | -5/+16 | ||
| * | | Improve styling of `pane_grid` example | 2020-03-18 | 1 | -18/+41 | ||
| * | | Add some styling to `pane_grid` buttons | 2020-03-18 | 1 | -4/+47 | ||
| * | | Make cursor unavailable when dragging panes | 2020-03-18 | 1 | -1/+9 | ||
| * | | Move common keyboard types to `iced_core` | 2020-03-17 | 10 | -10/+20 | ||
| * | | Add `modifiers` to `KeyPressEvent` in `pane_grid` | 2020-03-17 | 2 | -6/+17 | ||
| * | | Implement hotkey logic in `pane_grid` example | 2020-03-17 | 2 | -2/+41 | ||
| * | | Add `PaneGrid::on_key_press` for hotkey logic | 2020-03-17 | 2 | -3/+52 | ||
| * | | Add simple `pane_grid` example | 2020-03-17 | 4 | -0/+230 | ||
| * | | Fix spacing calculation in `Axis::split` | 2020-03-17 | 1 | -11/+8 | ||
| * | | Merge branch 'master' into feature/panes-widget | 2020-03-17 | 9 | -24/+49 | ||
| |\ \ | ||||||
| * | | | Fix ratio calculation on resize in `PaneGrid` | 2020-03-14 | 1 | -8/+4 | ||
| * | | | Improve pane selection when resizing a `PaneGrid` | 2020-03-14 | 3 | -65/+67 | ||
| * | | | Trigger `PaneGrid` resize on click | 2020-03-14 | 1 | -35/+47 | ||
| * | | | Implement mouse-based pane resizing for `PaneGrid` | 2020-03-14 | 7 | -11/+265 | ||
| * | | | Reintroduce `pane_grid::Split` as an identifier | 2020-03-14 | 4 | -7/+11 | ||
| * | | | Remove `PaneGrid::split_*` helpers | 2020-03-14 | 1 | -12/+0 | ||
| * | | | Rename `Split` to `Axis` | 2020-03-14 | 4 | -23/+18 | ||
| * | | | Replace `FocusedPane` with `Action` in `pane_grid` | 2020-03-14 | 3 | -50/+52 | ||
| * | | | Create module boundaries for `pane_grid` logic | 2020-03-14 | 6 | -412/+448 | ||
| * | | | Reuse `PaneGrid::focus` to remove some duplication | 2020-03-14 | 1 | -9/+2 | ||
| * | | | Simplify `iter` and `iter_mut` in `pane_grid` | 2020-03-14 | 1 | -4/+4 | ||
| * | | | Expose `adjacent_pane` instead of `focus_adjacent` | 2020-03-14 | 1 | -33/+37 | ||
| * | | | Remove `pane_grid` example for now | 2020-03-14 | 10 | -607/+393 | ||
| * | | | Improve `PaneGrid::focus_adjacent` intuitiveness | 2020-03-13 | 1 | -67/+27 | ||
| * | | | Draft `PaneGrid::focus_adjacent` | 2020-03-13 | 1 | -8/+83 | ||
| * | | | Unfocus pane in `PaneGrid` on out-of-bounds click | 2020-03-13 | 1 | -0/+2 | ||
| * | | | Implement `spacing` support for `PaneGrid` | 2020-03-13 | 1 | -11/+32 | ||
| * | | | Improve `PaneGrid` API by introducing `DragEvent` | 2020-03-13 | 1 | -33/+43 | ||
| * | | | Replace `Panes` with `PaneGrid` in documentation | 2020-03-11 | 1 | -12/+13 | ||
| * | | | Round region dimensions of panes to avoid overlaps | 2020-03-11 | 1 | -2/+2 | ||
| * | | | Expose `pane_grid::Focus` for state-based styling | 2020-03-11 | 2 | -29/+88 | ||
| * | | | Clip `scrollable` primitives only when necessary | 2020-03-10 | 1 | -7/+7 | ||
| * | | | Draft drag and drop support for `PaneGrid` | 2020-03-10 | 2 | -47/+197 | ||
| * | | | Implement `Default` for `keyboard::ModifiersState` | 2020-03-10 | 1 | -1/+1 | ||
| * | | | Fix `Debug` implementation of `layer::cache::State` | 2020-03-10 | 1 | -3/+2 |