winit/src/platform_impl/windows/icon.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

264 lines
7.5 KiB
Rust
Raw Normal View History

use std::ffi::c_void;
use std::path::Path;
use std::sync::Arc;
2025-02-23 22:40:11 -05:00
use std::{fmt, io, mem, ptr};
2022-03-07 22:58:12 +01:00
use cursor_icon::CursorIcon;
2022-03-07 22:58:12 +01:00
use windows_sys::core::PCWSTR;
use windows_sys::Win32::Graphics::Gdi::{
CreateBitmap, CreateCompatibleBitmap, DeleteObject, GetDC, ReleaseDC, SetBitmapBits,
};
2022-03-07 22:58:12 +01:00
use windows_sys::Win32::UI::WindowsAndMessaging::{
CreateIcon, CreateIconIndirect, DestroyCursor, DestroyIcon, LoadImageW, HCURSOR, HICON,
ICONINFO, ICON_BIG, ICON_SMALL, IMAGE_ICON, LR_DEFAULTSIZE, LR_LOADFROMFILE,
};
2018-05-07 17:36:21 -04:00
use super::util;
use crate::cursor::{CursorImage, CustomCursorProvider};
use crate::dpi::PhysicalSize;
use crate::error::RequestError;
use crate::icon::*;
use crate::platform::windows::WinIcon;
2018-05-07 17:36:21 -04:00
2025-05-01 19:59:29 +09:00
pub(crate) const PIXEL_SIZE: usize = mem::size_of::<Pixel>();
unsafe impl Send for WinIcon {}
2018-05-07 17:36:21 -04:00
impl WinIcon {
pub(crate) fn from_path_impl<P: AsRef<Path>>(
path: P,
size: Option<PhysicalSize<u32>>,
) -> Result<Self, BadIcon> {
// width / height of 0 along with LR_DEFAULTSIZE tells windows to load the default icon size
let (width, height) = size.map(Into::into).unwrap_or((0, 0));
2022-03-07 22:58:12 +01:00
let wide_path = util::encode_wide(path.as_ref());
2018-05-07 17:36:21 -04:00
let handle = unsafe {
2022-03-07 22:58:12 +01:00
LoadImageW(
2025-02-23 22:40:11 -05:00
ptr::null_mut(),
2022-03-07 22:58:12 +01:00
wide_path.as_ptr(),
IMAGE_ICON,
width,
height,
2022-03-07 22:58:12 +01:00
LR_DEFAULTSIZE | LR_LOADFROMFILE,
)
2018-05-07 17:36:21 -04:00
};
2025-02-23 22:40:11 -05:00
if !handle.is_null() {
2022-03-07 22:58:12 +01:00
Ok(WinIcon::from_handle(handle as HICON))
2018-05-07 17:36:21 -04:00
} else {
Err(BadIcon::OsError(io::Error::last_os_error()))
2018-05-07 17:36:21 -04:00
}
}
pub(crate) fn from_resource_impl(
2022-03-07 22:58:12 +01:00
resource_id: u16,
size: Option<PhysicalSize<u32>>,
) -> Result<Self, BadIcon> {
Self::from_resource_ptr(resource_id as PCWSTR, size)
}
pub(crate) fn from_resource_name_impl(
resource_name: &str,
size: Option<PhysicalSize<u32>>,
) -> Result<Self, BadIcon> {
let wide_name = util::encode_wide(resource_name);
Self::from_resource_ptr(wide_name.as_ptr(), size)
}
fn from_resource_ptr(
resource: PCWSTR,
size: Option<PhysicalSize<u32>>,
) -> Result<Self, BadIcon> {
// width / height of 0 along with LR_DEFAULTSIZE tells windows to load the default icon size
let (width, height) = size.map(Into::into).unwrap_or((0, 0));
2018-05-07 17:36:21 -04:00
let handle = unsafe {
2022-03-07 22:58:12 +01:00
LoadImageW(
util::get_instance_handle(),
resource,
2022-03-07 22:58:12 +01:00
IMAGE_ICON,
width,
height,
2022-03-07 22:58:12 +01:00
LR_DEFAULTSIZE,
)
2018-05-07 17:36:21 -04:00
};
2025-02-23 22:40:11 -05:00
if !handle.is_null() {
2022-03-07 22:58:12 +01:00
Ok(WinIcon::from_handle(handle as HICON))
2018-05-07 17:36:21 -04:00
} else {
Err(BadIcon::OsError(io::Error::last_os_error()))
2018-05-07 17:36:21 -04:00
}
}
pub(crate) fn as_raw_handle(&self) -> HICON {
self.inner.handle
}
pub(crate) fn from_rgba(rgba: &RgbaIcon) -> Result<Self, BadIcon> {
2025-05-01 19:59:29 +09:00
let pixel_count = rgba.buffer().len() / PIXEL_SIZE;
let mut and_mask = Vec::with_capacity(pixel_count);
let pixels = unsafe {
2025-05-01 19:59:29 +09:00
std::slice::from_raw_parts_mut(rgba.buffer().as_ptr() as *mut Pixel, pixel_count)
};
for pixel in pixels {
and_mask.push(pixel.a.wrapping_sub(u8::MAX)); // invert alpha channel
pixel.convert_to_bgra();
}
assert_eq!(and_mask.len(), pixel_count);
let handle = unsafe {
CreateIcon(
ptr::null_mut(),
2025-05-01 19:59:29 +09:00
rgba.width() as i32,
rgba.height() as i32,
1,
(PIXEL_SIZE * 8) as u8,
and_mask.as_ptr(),
2025-05-01 19:59:29 +09:00
rgba.buffer().as_ptr(),
)
};
if !handle.is_null() {
Ok(WinIcon::from_handle(handle))
} else {
Err(BadIcon::OsError(io::Error::last_os_error()))
2018-05-07 17:36:21 -04:00
}
}
fn from_handle(handle: HICON) -> Self {
Self { inner: Arc::new(RaiiIcon { handle }) }
}
2018-05-07 17:36:21 -04:00
}
impl IconProvider for WinIcon {}
2018-05-07 17:36:21 -04:00
impl fmt::Debug for WinIcon {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
(*self.inner).fmt(formatter)
}
}
impl Pixel {
fn convert_to_bgra(&mut self) {
mem::swap(&mut self.r, &mut self.b);
}
}
#[derive(Debug, Clone, Copy)]
pub enum IconType {
Small = ICON_SMALL as isize,
Big = ICON_BIG as isize,
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub(crate) struct RaiiIcon {
handle: HICON,
}
unsafe impl Send for RaiiIcon {}
unsafe impl Sync for RaiiIcon {}
impl Drop for RaiiIcon {
fn drop(&mut self) {
unsafe { DestroyIcon(self.handle) };
2018-05-07 17:36:21 -04:00
}
}
#[derive(Debug, Clone)]
pub enum SelectedCursor {
Named(CursorIcon),
2024-01-05 17:02:08 +01:00
Custom(Arc<RaiiCursor>),
}
impl Default for SelectedCursor {
fn default() -> Self {
Self::Named(Default::default())
}
}
2024-01-05 17:02:08 +01:00
#[derive(Clone, Debug, Hash, Eq, PartialEq)]
pub struct WinCursor(pub(super) Arc<RaiiCursor>);
impl CustomCursorProvider for WinCursor {
fn is_animated(&self) -> bool {
false
}
}
impl WinCursor {
pub(crate) fn new(image: &CursorImage) -> Result<Self, RequestError> {
2025-05-01 20:16:34 +09:00
let mut bgra = Vec::from(image.buffer());
bgra.chunks_exact_mut(4).for_each(|chunk| chunk.swap(0, 2));
2025-05-01 20:16:34 +09:00
let w = image.width() as i32;
let h = image.height() as i32;
unsafe {
2025-02-23 22:40:11 -05:00
let hdc_screen = GetDC(ptr::null_mut());
if hdc_screen.is_null() {
return Err(os_error!(io::Error::last_os_error()).into());
}
let hbm_color = CreateCompatibleBitmap(hdc_screen, w, h);
2025-02-23 22:40:11 -05:00
ReleaseDC(ptr::null_mut(), hdc_screen);
if hbm_color.is_null() {
return Err(os_error!(io::Error::last_os_error()).into());
}
if SetBitmapBits(hbm_color, bgra.len() as u32, bgra.as_ptr() as *const c_void) == 0 {
DeleteObject(hbm_color);
return Err(os_error!(io::Error::last_os_error()).into());
};
// Mask created according to https://learn.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-createbitmap#parameters
let mask_bits: Vec<u8> = vec![0xff; ((((w + 15) >> 4) << 1) * h) as usize];
let hbm_mask = CreateBitmap(w, h, 1, 1, mask_bits.as_ptr() as *const _);
2025-02-23 22:40:11 -05:00
if hbm_mask.is_null() {
DeleteObject(hbm_color);
return Err(os_error!(io::Error::last_os_error()).into());
}
let icon_info = ICONINFO {
fIcon: 0,
2025-05-01 20:16:34 +09:00
xHotspot: image.hotspot_x() as u32,
yHotspot: image.hotspot_y() as u32,
hbmMask: hbm_mask,
hbmColor: hbm_color,
};
let handle = CreateIconIndirect(&icon_info as *const _);
DeleteObject(hbm_color);
DeleteObject(hbm_mask);
2025-02-23 22:40:11 -05:00
if handle.is_null() {
return Err(os_error!(io::Error::last_os_error()).into());
}
Ok(Self(Arc::new(RaiiCursor { handle })))
2024-01-05 17:02:08 +01:00
}
}
}
2024-01-05 17:02:08 +01:00
#[derive(Debug, Hash, Eq, PartialEq)]
pub struct RaiiCursor {
handle: HCURSOR,
}
2025-02-23 22:40:11 -05:00
unsafe impl Send for RaiiCursor {}
unsafe impl Sync for RaiiCursor {}
impl Drop for RaiiCursor {
fn drop(&mut self) {
unsafe { DestroyCursor(self.handle) };
}
}
2024-01-05 17:02:08 +01:00
impl RaiiCursor {
pub fn as_raw_handle(&self) -> HICON {
self.handle
}
}
2025-05-01 19:59:29 +09:00
#[repr(C)]
#[derive(Debug)]
pub(crate) struct Pixel {
pub(crate) r: u8,
pub(crate) g: u8,
pub(crate) b: u8,
pub(crate) a: u8,
}