#[cfg(all(feature="winit", feature="glium"))] #[macro_use] extern crate conrod;
#[cfg(all(feature="winit", feature="glium"))] mod support;
fn main() {
feature::main();
}
#[cfg(all(feature="winit", feature="glium"))]
mod feature {
extern crate find_folder;
extern crate image;
use conrod::{self, widget, Colorable, Positionable, Sizeable, Widget, color};
use conrod::backend::glium::glium;
use conrod::backend::glium::glium::Surface;
use std;
use support;
pub fn main() {
const WIDTH: u32 = 800;
const HEIGHT: u32 = 600;
let mut events_loop = glium::glutin::EventsLoop::new();
let window = glium::glutin::WindowBuilder::new()
.with_title("Image Widget Demonstration")
.with_dimensions(WIDTH, HEIGHT);
let context = glium::glutin::ContextBuilder::new()
.with_vsync(true)
.with_multisampling(4);
let display = glium::Display::new(window, context, &events_loop).unwrap();
let mut ui = conrod::UiBuilder::new([WIDTH as f64, HEIGHT as f64]).build();
let mut renderer = conrod::backend::glium::Renderer::new(&display).unwrap();
widget_ids!(struct Ids { background, rust_logo });
let ids = Ids::new(ui.widget_id_generator());
let rust_logo = load_rust_logo(&display);
let (w, h) = (rust_logo.get_width(), rust_logo.get_height().unwrap());
let mut image_map = conrod::image::Map::new();
let rust_logo = image_map.insert(rust_logo);
let mut event_loop = support::EventLoop::new();
'main: loop {
for event in event_loop.next(&mut events_loop) {
if let Some(event) = conrod::backend::winit::convert_event(event.clone(), &display) {
ui.handle_event(event);
}
match event {
glium::glutin::Event::WindowEvent { event, .. } => match event {
glium::glutin::WindowEvent::Closed |
glium::glutin::WindowEvent::KeyboardInput {
input: glium::glutin::KeyboardInput {
virtual_keycode: Some(glium::glutin::VirtualKeyCode::Escape),
..
},
..
} => break 'main,
_ => (),
},
_ => (),
}
}
{
let ui = &mut ui.set_widgets();
widget::Canvas::new().color(color::LIGHT_BLUE).set(ids.background, ui);
widget::Image::new(rust_logo).w_h(w as f64, h as f64).middle().set(ids.rust_logo, ui);
}
if let Some(primitives) = ui.draw_if_changed() {
renderer.fill(&display, primitives, &image_map);
let mut target = display.draw();
target.clear_color(0.0, 0.0, 0.0, 1.0);
renderer.draw(&display, &mut target, &image_map).unwrap();
target.finish().unwrap();
}
}
}
fn load_rust_logo(display: &glium::Display) -> glium::texture::Texture2d {
let assets = find_folder::Search::ParentsThenKids(3, 3).for_folder("assets").unwrap();
let path = assets.join("images/rust.png");
let rgba_image = image::open(&std::path::Path::new(&path)).unwrap().to_rgba();
let image_dimensions = rgba_image.dimensions();
let raw_image = glium::texture::RawImage2d::from_raw_rgba_reversed(&rgba_image.into_raw(), image_dimensions);
let texture = glium::texture::Texture2d::new(display, raw_image).unwrap();
texture
}
}
#[cfg(not(all(feature="winit", feature="glium")))]
mod feature {
pub fn main() {
println!("This example requires the `winit` and `glium` features. \
Try running `cargo run --release --features=\"winit glium\" --example <example_name>`");
}
}