summaryrefslogtreecommitdiffstats
path: root/glutin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update `winit` and `glutin` forksLibravatar Wyatt Herkamp2022-08-292-6/+6
|
* Fix invisible window on WindowsLibravatar Héctor Ramón Jiménez2022-08-261-19/+5
| | | | | ... by reverting the changes that were supposed to hide the window initially and only show it after rendering the first frame.
* Remove `window::Mode` and introduce `Settings::visible`Libravatar Héctor Ramón Jiménez2022-08-181-6/+19
| | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
* Fix `clippy` lints :tada:Libravatar Héctor Ramón Jiménez2022-07-281-3/+3
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-20/+26
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-4/+13
| | | | ... and explicitly annotate crates as well.
* Add `Style` variant support to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-07-081-5/+10
|
* Fix `Theme` not being refreshed in `iced_glutin`Libravatar Héctor Ramón Jiménez2022-06-251-1/+2
|
* Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-05-261-3/+3
|
* Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez2022-05-251-1/+4
| | | | ... and remove `Application::background_color`
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-4/+12
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-041-4/+4
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-4/+4
| |
* | Re-export `iced_winit` in `iced_glutin`Libravatar Héctor Ramón Jiménez2022-05-041-14/+2
| | | | | | | | | | This fixes the `system` module not being exported in `iced_glutin` when only setting the `iced_winit/system` flag.
* | Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-302-1/+4
| |
* | Use closure internally to fetch `graphics_info`Libravatar Richard2022-04-271-3/+2
| |
* | Change `ContextCreationFailed` to `GraphicsCreationFailed`Libravatar Richard2022-04-271-3/+3
| |
* | Rename `get_information` to `fetch_information`Libravatar Richard2022-04-271-2/+2
| |
* | Add graphics information to `iced_glutin`Libravatar Richard2022-04-261-0/+3
| |
* | Export `system` module in `iced_glutin`Libravatar Richard2022-04-261-0/+1
| |
* | Add logging to window and context creationLibravatar Richard2022-04-262-1/+11
| |
* | Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-201-1/+14
|/
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Replace Zulip links with DiscordLibravatar Héctor Ramón Jiménez2022-01-311-1/+1
|
* Add setting to try OpenGL ES firstLibravatar Richard2022-01-191-4/+16
|
* Export `iced_winit::conversion` in `iced_glutin`Libravatar Richard2022-01-191-0/+1
|
* Split `quad::Pipeline` into `core` and `compatibility`Libravatar Richard2022-01-191-0/+1
|
* Invalidate widget tree from `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-111-4/+10
| | | | ... by introducing a new `invalidate_widgets` method to `Shell`
* Update `winit` and `glutin` forksLibravatar Héctor Ramón Jiménez2022-01-041-2/+2
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-033-5/+5
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Fix imports in `application` modulesLibravatar Héctor Ramón Jiménez2021-11-291-1/+1
|
* Allow `Application::run` to return on native platformsLibravatar Andreas Hofstadler2021-11-291-2/+5
|
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-181-5/+24
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-18/+6
|
* Update `winit` and `glutin`Libravatar Héctor Ramón Jiménez2021-10-121-1/+1
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-152-20/+7
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Implement `move_to` and `resize` commands for `window`Libravatar Héctor Ramón Jiménez2021-09-022-0/+3
|
* Implement and expose `read` and `write` helpers for `clipboard`Libravatar Héctor Ramón Jiménez2021-09-021-1/+4
|
* Handle `clipboard::Action` in `iced_winit` shellLibravatar Héctor Ramón Jiménez2021-09-021-5/+18
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-2/+1
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-301-1/+1
| | | | Fixes #1005 and closes #1007.
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-191-1/+1
|
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-161-1/+1
|
* Introduce explicit `id` field to `Settings`Libravatar Héctor Ramón Jiménez2021-08-111-0/+1
| | | | ... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application.
* Fix glow and multiple windows usageLibravatar yamadapc2021-08-031-1/+11
| | | | The context might not be current at redraw
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-07-201-2/+2
| | | | ... and remove crates.io patch
* Draft `conversion::menu_message` in `iced_winit`Libravatar Héctor Ramón Jiménez2021-07-131-0/+10
| | | | ... and wire it up to the runtime loop
* Store and synchronize `Menu` in `application::State`Libravatar Héctor Ramón Jiménez2021-07-121-5/+8
|