From 30c062895951e9639443e8fd264993ba2edd4cc7 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Tue, 5 Sep 2017 21:23:40 +0200 Subject: [PATCH] examples: randomise window location in simple.rs --- Cargo.toml | 1 + examples/simple.rs | 40 ++++++++++++++++++++++++++++++---------- 2 files changed, 31 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57fa1e3..35127d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,7 @@ gl_generator = "0.5" [dev-dependencies] slog-term = "2.0" slog-async = "2.0" +rand = "0.3" [features] default = ["backend_winit", "backend_libinput", "renderer_glium"] diff --git a/examples/simple.rs b/examples/simple.rs index 2abf90a..76f39db 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -1,16 +1,16 @@ #[macro_use] extern crate glium; +extern crate rand; +#[macro_use] +extern crate slog; +extern crate slog_async; +extern crate slog_term; #[macro_use(define_roles)] extern crate smithay; extern crate wayland_protocols; #[macro_use(server_declare_handler)] extern crate wayland_server; -#[macro_use] -extern crate slog; -extern crate slog_async; -extern crate slog_term; - mod helpers; use glium::Surface; @@ -42,7 +42,7 @@ struct SurfaceHandler { #[derive(Default)] struct SurfaceData { buffer: Option<(Vec, (u32, u32))>, - location: Option<(u32, u32)>, + location: Option<(i32, i32)>, } impl compositor::Handler for SurfaceHandler { @@ -77,7 +77,15 @@ impl compositor::Handler for SurfaceHandler { } } -struct ShellSurfaceHandler; +struct ShellSurfaceHandler { + token: CompositorToken, +} + +impl ShellSurfaceHandler { + fn new(token: CompositorToken) -> ShellSurfaceHandler { + ShellSurfaceHandler { token } + } +} impl shell::Handler for ShellSurfaceHandler { fn new_client(&mut self, evlh: &mut EventLoopHandle, client: ShellClient<()>) {} @@ -85,6 +93,16 @@ impl shell::Handler for ShellSurfaceHand fn new_toplevel(&mut self, evlh: &mut EventLoopHandle, surface: ToplevelSurface) -> ToplevelConfigure { + let wl_surface = surface.get_surface().unwrap(); + self.token.with_surface_data(wl_surface, |data| { + // place the window at a random location in the [0;300]x[0;300] square + use rand::distributions::{IndependentSample, Range}; + let range = Range::new(0, 300); + let mut rng = rand::thread_rng(); + let x = range.ind_sample(&mut rng); + let y = range.ind_sample(&mut rng); + data.user_data.location = Some((x, y)) + }); ToplevelConfigure { size: None, states: vec![], @@ -185,8 +203,8 @@ fn main() { * Initialize the shell global */ let shell_handler_id = event_loop.add_handler_with_init(MyShellHandler::new( - ShellSurfaceHandler, - compositor_token.clone(), + ShellSurfaceHandler::new(compositor_token), + compositor_token, log.clone(), )); event_loop.register_global::(shell_handler_id, 1); @@ -220,9 +238,11 @@ fn main() { { if let Some(wl_surface) = toplevel_surface.get_surface() { // this surface is a root of a subsurface tree that needs to be drawn + let initial_place = compositor_token + .with_surface_data(wl_surface, |data| data.user_data.location.unwrap_or((0, 0))); compositor_token.with_surface_tree( wl_surface, - (100, 100), + initial_place, |surface, attributes, role, &(mut x, mut y)| { if let Some((ref contents, (w, h))) = attributes.user_data.buffer { // there is actually something to draw !