summaryrefslogtreecommitdiffstats
path: root/native/src/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'feature/rule-widget' into masterLibravatar Héctor Ramón Jiménez2020-08-221-0/+125
|\
| * widget Rule addedLibravatar Billy Messenger2020-08-221-0/+125
| |
* | Implement `hash_layout` for `pane_grid::TitleBar`Libravatar Héctor Ramón Jiménez2020-08-192-1/+15
|/
* Add `height` method to `Slider`Libravatar Héctor Ramón Jiménez2020-08-011-6/+15
|
* Merge pull request #463 from mobile-bungalow/titlebar_optionsLibravatar Héctor Ramón2020-07-311-12/+29
|\ | | | | Added `always_show_controls` method to TitleBar
| * Clarify `TitleBar::always_show_controls` docs a bitLibravatar Héctor Ramón Jiménez2020-07-311-3/+6
| |
| * Move `always_show_controls` after `padding`Libravatar Héctor Ramón Jiménez2020-07-311-1/+1
| |
| * Fix typo in `TitleBar::new`Libravatar Héctor Ramón Jiménez2020-07-311-1/+1
| |
| * Added method to TitleBar, allowing controls to be show statically instead ↵Libravatar mobile-bungalow2020-07-271-11/+25
| | | | | | | | of only on mouseover
* | Unfocus `TextInput` when `Escape` key is pressedLibravatar Héctor Ramón Jiménez2020-07-301-0/+5
| |
* | Fix `Widget::layout` for `Checkbox`Libravatar Héctor Ramón Jiménez2020-07-281-0/+1
| |
* | Add custom `font` support to `Checkbox`Libravatar Héctor Ramón Jiménez2020-07-281-1/+12
| |
* | Introduce `state` method to `TextInput`Libravatar Héctor Ramón Jiménez2020-07-241-0/+7
| |
* | Avoid `PaneGrid` unfocus when cursor is unavailableLibravatar Héctor Ramón Jiménez2020-07-232-1/+5
| |
* | Fix `Default` implementation for `pick_list::State`Libravatar Héctor Ramón Jiménez2020-07-231-1/+12
| |
* | Improve `Menu` API to facilitate external controlLibravatar Héctor Ramón Jiménez2020-07-231-29/+50
| |
* | Keep original focus state while a pane is draggedLibravatar Héctor Ramón Jiménez2020-07-221-2/+6
| |
* | Add `focused` method to `pane_grid::State`Libravatar Héctor Ramón Jiménez2020-07-221-0/+16
| |
* | Add newline before `Marker` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-07-221-0/+1
|/
* Merge pull request #444 from hecrj/feature/overlayLibravatar Héctor Ramón2020-07-168-14/+411
|\ | | | | Overlay support and `PickList` widget
| * Rename `ComboBox` to `PickList`Libravatar Héctor Ramón Jiménez2020-07-101-29/+29
| |
| * Write documentation for the new `overlay` APILibravatar Héctor Ramón Jiménez2020-07-101-5/+43
| |
| * Remove unnecessary lifetime in `Widget` traitLibravatar Héctor Ramón Jiménez2020-07-1016-18/+16
| |
| * Implement `Widget::overlay` for `PaneGrid`Libravatar Héctor Ramón Jiménez2020-07-102-2/+32
| |
| * Rename `overlay::Content` trait to `Overlay`Libravatar Héctor Ramón Jiménez2020-07-105-13/+13
| | | | | | | | The `Overlay` struct is now `overlay::Element`.
| * Merge branch 'master' into feature/overlayLibravatar Héctor Ramón Jiménez2020-07-105-77/+577
| |\
| * | Avoid reopening `Menu` in `ComboBox`Libravatar Héctor Ramón Jiménez2020-07-081-11/+19
| | |
| * | Propagate `Font` from `ComboBox` to `Menu`Libravatar Héctor Ramón Jiménez2020-07-081-0/+1
| | |
| * | Implement `font` method for `ComboBox`Libravatar Héctor Ramón Jiménez2020-07-081-3/+12
| | |
| * | Split `Menu::new` into multiple builder methodsLibravatar Héctor Ramón Jiménez2020-07-081-25/+17
| | |
| * | Use `Borrow` to avoid clone in `ComboBox::overlay`Libravatar Héctor Ramón Jiménez2020-07-081-1/+1
| | |
| * | Draft `Widget::overlay` idempotencyLibravatar Héctor Ramón Jiménez2020-07-085-46/+36
| | |
| * | Add styling support for `ComboBox` and `Menu`Libravatar Héctor Ramón Jiménez2020-07-081-5/+28
| | |
| * | Rename `Layer` to `overlay::Content`Libravatar Héctor Ramón Jiménez2020-07-081-4/+5
| | |
| * | Implement `Widget::overlay` for `Row`Libravatar Héctor Ramón Jiménez2020-07-081-2/+13
| | |
| * | Position `Menu` layer based on available spaceLibravatar Héctor Ramón Jiménez2020-07-081-4/+6
| | |
| * | Render arrow icon in `ComboBox`Libravatar Héctor Ramón Jiménez2020-07-081-1/+3
| | |
| * | Implement `Widget::overlay` for `Scrollable`Libravatar Héctor Ramón Jiménez2020-07-081-1/+17
| | |
| * | Draft `ComboBox` and `Menu` layerLibravatar Héctor Ramón Jiménez2020-07-082-3/+259
| | |
| * | Introduce `Layer` traitLibravatar Héctor Ramón Jiménez2020-07-082-4/+22
| | |
| * | Introduce `Widget::overlay` :tada:Libravatar Héctor Ramón Jiménez2020-07-0815-15/+17
| | |
* | | Remove redundant `min` checks in `Editor`Libravatar Héctor Ramón Jiménez2020-07-111-3/+3
| | |
* | | Improve safety of `Cursor::selection`Libravatar Héctor Ramón Jiménez2020-07-113-20/+14
| | |
* | | Fix panic on paste in TextInput after programmatic modification of contentsLibravatar mtkennerly2020-07-101-6/+12
| |/ |/|
* | Update `pane_grid` GIFsLibravatar Héctor Ramón Jiménez2020-07-091-1/+1
| |
* | Fix layout of a `TitleBar` without controlsLibravatar Héctor Ramón Jiménez2020-07-091-1/+1
| |
* | Fix docs of `modifiers_keys` in `PaneGrid`Libravatar Héctor Ramón Jiménez2020-07-091-2/+1
| |
* | Stop tracking `pressed_modifiers` in `PaneGrid`Libravatar Héctor Ramón Jiménez2020-07-092-8/+0
| |
* | Write documentation for new `PaneGrid` APILibravatar Héctor Ramón Jiménez2020-07-093-17/+61
| |
* | Fix default text size in `TitleBar`Libravatar Héctor Ramón Jiménez2020-07-081-3/+3
| |