Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[X11] Create windows with a parent window #2096

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ And please only add new entries to the top of this list, right below the `# Unre
- **Breaking:** Bump `ndk` version to 0.6, ndk-sys to `v0.3`, `ndk-glue` to `0.6`.
- Remove no longer needed `WINIT_LINK_COLORSYNC` environment variable.
- **Breaking:** Rename the `Exit` variant of `ControlFlow` to `ExitWithCode`, which holds a value to control the exit code after running. Add an `Exit` constant which aliases to `ExitWithCode(0)` instead to avoid major breakage. This shouldn't affect most existing programs.
- On X11, create windows with a parent window via `WindowBuilder::with_x11_parent()`.

# 0.26.1 (2022-01-05)

Expand Down
1 change: 1 addition & 0 deletions FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ If your PR makes notable changes to Winit's features, please update this section

### Unix
* Window urgency
* Setting the X11 parent window
* X11 Window Class
* X11 Override Redirect Flag
* GTK Theme Variant
Expand Down
71 changes: 71 additions & 0 deletions examples/child_window.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
use std::collections::HashMap;

use simple_logger::SimpleLogger;
use winit::{
dpi::{LogicalPosition, LogicalSize, Position},
event::{ElementState, Event, KeyboardInput, WindowEvent},
event_loop::{ControlFlow, EventLoop},
window::WindowBuilder,
};

#[cfg(feature = "x11")]
use winit::platform::unix::{WindowBuilderExtUnix, WindowExtUnix};

#[cfg(feature = "x11")]
fn main() {
SimpleLogger::new().init().unwrap();
let mut windows = HashMap::new();

let event_loop: EventLoop<()> = EventLoop::new();
let parent_window = WindowBuilder::new()
.with_title("parent window")
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
.with_inner_size(LogicalSize::new(640.0, 480.0))
.build(&event_loop)
.unwrap();
let root = parent_window.xlib_window().unwrap();
println!("parent window id: {})", root);

event_loop.run(move |event: Event<'_, ()>, event_loop, control_flow| {
*control_flow = ControlFlow::Wait;

match event {
Event::WindowEvent { event, window_id } => match event {
WindowEvent::CloseRequested => {
windows.clear();
*control_flow = ControlFlow::Exit;
}
WindowEvent::CursorEntered { device_id: _ } => {
println!("cursor entered in the window {:?}", window_id);
}
WindowEvent::KeyboardInput {
input:
KeyboardInput {
state: ElementState::Pressed,
..
},
..
} => {
let child_window = WindowBuilder::new()
.with_x11_parent(root)
.with_title("child window")
.with_inner_size(LogicalSize::new(100.0, 100.0))
.build(&event_loop)
.unwrap();
println!(
"child window created with id: {}",
child_window.xlib_window().unwrap()
);
windows.insert(child_window.id(), child_window);
}
_ => (),
},
_ => (),
}
})
}

#[cfg(not(feature = "x11"))]
fn main() {
panic!("This example is supported only on x11.");
}
9 changes: 9 additions & 0 deletions src/platform/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,8 @@ pub trait WindowBuilderExtUnix {
fn with_x11_visual<T>(self, visual_infos: *const T) -> Self;
#[cfg(feature = "x11")]
fn with_x11_screen(self, screen_id: i32) -> Self;
#[cfg(feature = "x11")]
fn with_x11_parent(self, parent_id: u64) -> Self;

/// Build window with `WM_CLASS` hint; defaults to the name of the binary. Only relevant on X11.
#[cfg(feature = "x11")]
Expand Down Expand Up @@ -400,6 +402,13 @@ impl WindowBuilderExtUnix for WindowBuilder {
self
}

#[inline]
#[cfg(feature = "x11")]
fn with_x11_parent(mut self, parent_id: u64) -> Self {
self.platform_specific.parent_id = Some(parent_id);
self
}

#[inline]
#[cfg(feature = "x11")]
fn with_class(mut self, instance: String, class: String) -> Self {
Expand Down
4 changes: 4 additions & 0 deletions src/platform_impl/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ pub struct PlatformSpecificWindowBuilderAttributes {
#[cfg(feature = "x11")]
pub screen_id: Option<i32>,
#[cfg(feature = "x11")]
pub parent_id: Option<u64>,
#[cfg(feature = "x11")]
pub resize_increments: Option<Size>,
#[cfg(feature = "x11")]
pub base_size: Option<Size>,
Expand All @@ -79,6 +81,8 @@ impl Default for PlatformSpecificWindowBuilderAttributes {
#[cfg(feature = "x11")]
screen_id: None,
#[cfg(feature = "x11")]
parent_id: None,
#[cfg(feature = "x11")]
resize_increments: None,
#[cfg(feature = "x11")]
base_size: None,
Expand Down
6 changes: 5 additions & 1 deletion src/platform_impl/linux/x11/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@ impl UnownedWindow {
pl_attribs: PlatformSpecificWindowBuilderAttributes,
) -> Result<UnownedWindow, RootOsError> {
let xconn = &event_loop.xconn;
let root = event_loop.root;
let root = if let Some(id) = pl_attribs.parent_id {
id
} else {
event_loop.root
};

let mut monitors = xconn.available_monitors();
let guessed_monitor = if monitors.is_empty() {
Expand Down