button handling, cursor, cleanup
This commit is contained in:
parent
077be0f5be
commit
a1350283c5
61
src/main.rs
61
src/main.rs
|
@ -7,18 +7,12 @@ fn main() {
|
||||||
|
|
||||||
let window = conn.generate_id();
|
let window = conn.generate_id();
|
||||||
|
|
||||||
let width = screen.width_in_pixels();
|
|
||||||
let height = screen.height_in_pixels();
|
|
||||||
|
|
||||||
println!("width {} height {}", width, height);
|
|
||||||
|
|
||||||
let values = [
|
let values = [
|
||||||
// ?RGB. First 4 bytes appear to do nothing
|
// ?RGB. First 4 bytes appear to do nothing
|
||||||
(xcb::CW_BACK_PIXEL, 0x00_00_00_00),
|
(xcb::CW_BACK_PIXEL, 0x00_00_00_00),
|
||||||
(
|
(
|
||||||
xcb::CW_EVENT_MASK,
|
xcb::CW_EVENT_MASK,
|
||||||
xcb::EVENT_MASK_EXPOSURE
|
xcb::EVENT_MASK_EXPOSURE | xcb::EVENT_MASK_KEY_PRESS, // we'll need this later
|
||||||
| xcb::EVENT_MASK_KEY_PRESS // we'll need this later
|
|
||||||
),
|
),
|
||||||
(xcb::CW_OVERRIDE_REDIRECT, 1 as u32), // Don't be window managed
|
(xcb::CW_OVERRIDE_REDIRECT, 1 as u32), // Don't be window managed
|
||||||
];
|
];
|
||||||
|
@ -52,17 +46,25 @@ fn main() {
|
||||||
title.as_bytes(),
|
title.as_bytes(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let font = conn.generate_id();
|
||||||
|
xcb::open_font(&conn, font, "cursor");
|
||||||
|
|
||||||
|
// TODO: create cursor with a Pixmap
|
||||||
|
// https://stackoverflow.com/questions/40578969/how-to-create-a-cursor-in-x11-from-raw-data-c
|
||||||
|
let cursor = conn.generate_id();
|
||||||
|
xcb::create_glyph_cursor(&conn, cursor, font, font, 0, 30, 0, 0, 0, 0, 0, 0);
|
||||||
|
|
||||||
xcb::grab_pointer(
|
xcb::grab_pointer(
|
||||||
&conn,
|
&conn,
|
||||||
true,
|
true,
|
||||||
screen.root(),
|
screen.root(),
|
||||||
(xcb::EVENT_MASK_BUTTON_RELEASE
|
(xcb::EVENT_MASK_BUTTON_RELEASE
|
||||||
| xcb::EVENT_MASK_BUTTON_PRESS
|
| xcb::EVENT_MASK_BUTTON_PRESS
|
||||||
| xcb::EVENT_MASK_BUTTON_1_MOTION) as u16,
|
| xcb::EVENT_MASK_BUTTON_MOTION) as u16,
|
||||||
xcb::GRAB_MODE_ASYNC as u8,
|
xcb::GRAB_MODE_ASYNC as u8,
|
||||||
xcb::GRAB_MODE_ASYNC as u8,
|
xcb::GRAB_MODE_ASYNC as u8,
|
||||||
xcb::NONE,
|
xcb::NONE,
|
||||||
xcb::NONE,
|
cursor,
|
||||||
xcb::CURRENT_TIME,
|
xcb::CURRENT_TIME,
|
||||||
).get_reply()
|
).get_reply()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -81,36 +83,41 @@ fn main() {
|
||||||
match ev.response_type() {
|
match ev.response_type() {
|
||||||
xcb::BUTTON_PRESS => {
|
xcb::BUTTON_PRESS => {
|
||||||
let button_press: &xcb::ButtonPressEvent = unsafe { xcb::cast_event(&ev) };
|
let button_press: &xcb::ButtonPressEvent = unsafe { xcb::cast_event(&ev) };
|
||||||
println!(
|
|
||||||
"Mouse press: x={}, y={}",
|
if button_press.detail() == 3 {
|
||||||
button_press.event_x(),
|
println!("Exiting due to right click");
|
||||||
button_press.event_y()
|
return;
|
||||||
);
|
}
|
||||||
|
|
||||||
start_x = button_press.event_x();
|
start_x = button_press.event_x();
|
||||||
start_y = button_press.event_y();
|
start_y = button_press.event_y();
|
||||||
|
|
||||||
|
// For the case where there is no motion
|
||||||
|
x = start_x;
|
||||||
|
y = start_y;
|
||||||
}
|
}
|
||||||
xcb::BUTTON_RELEASE => {
|
xcb::KEY_PRESS => {
|
||||||
let button_release: &xcb::ButtonReleaseEvent = unsafe { xcb::cast_event(&ev) };
|
println!("Exiting due to key press");
|
||||||
println!(
|
return;
|
||||||
"Mouse release: x={}, y={}",
|
|
||||||
button_release.event_x(),
|
|
||||||
button_release.event_y()
|
|
||||||
);
|
|
||||||
break; // Move on after mouse released
|
|
||||||
}
|
}
|
||||||
xcb::MOTION_NOTIFY => {
|
xcb::MOTION_NOTIFY => {
|
||||||
let motion: &xcb::MotionNotifyEvent = unsafe { xcb::cast_event(&ev) };
|
let motion: &xcb::MotionNotifyEvent = unsafe { xcb::cast_event(&ev) };
|
||||||
println!(
|
|
||||||
"Mouse motion: x={}, y={}",
|
|
||||||
motion.event_x(),
|
|
||||||
motion.event_y()
|
|
||||||
);
|
|
||||||
x = motion.event_x();
|
x = motion.event_x();
|
||||||
y = motion.event_y();
|
y = motion.event_y();
|
||||||
|
// TODO draw rectangles (and guides)
|
||||||
|
}
|
||||||
|
xcb::BUTTON_RELEASE => {
|
||||||
|
let motion: &xcb::ButtonReleaseEvent = unsafe { xcb::cast_event(&ev) };
|
||||||
|
match motion.detail() {
|
||||||
|
5 => continue, // Scroll wheel down
|
||||||
|
4 => continue, // Scroll wheel up
|
||||||
|
_ => break, // Move on after mouse released
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_ => continue,
|
_ => continue,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now we have taken coordinates, we use them
|
// Now we have taken coordinates, we use them
|
||||||
let width = (x - start_x).abs();
|
let width = (x - start_x).abs();
|
||||||
let height = (y - start_y).abs();
|
let height = (y - start_y).abs();
|
||||||
|
|
Loading…
Reference in New Issue