Change uint/int to usize/isize

From https://github.com/rust-lang/rfcs/pull/544 the types uint/int were
renamed to usize/isize.
This commit is contained in:
Bryan Bell 2015-01-12 19:19:36 -08:00
parent 318f0d2d06
commit 995bd37c78
4 changed files with 35 additions and 35 deletions

View file

@ -1,10 +1,10 @@
#[derive(Clone, Show, Copy)] #[derive(Clone, Show, Copy)]
pub enum Event { pub enum Event {
/// The size of the window has changed. /// The size of the window has changed.
Resized(uint, uint), Resized(usize, usize),
/// The position of the window has changed. /// The position of the window has changed.
Moved(int, int), Moved(isize, isize),
/// The window has been closed. /// The window has been closed.
Closed, Closed,
@ -23,7 +23,7 @@ pub enum Event {
/// The cursor has moved on the window. /// The cursor has moved on the window.
/// ///
/// The parameter are the (x,y) coords in pixels relative to the top-left corner of the window. /// The parameter are the (x,y) coords in pixels relative to the top-left corner of the window.
MouseMoved((int, int)), MouseMoved((isize, isize)),
/// A positive value indicates that the wheel was rotated forward, away from the user; /// A positive value indicates that the wheel was rotated forward, away from the user;
/// a negative value indicates that the wheel was rotated backward, toward the user. /// a negative value indicates that the wheel was rotated backward, toward the user.

View file

@ -101,10 +101,10 @@ struct BuilderAttribs<'a> {
headless: bool, headless: bool,
strict: bool, strict: bool,
sharing: Option<&'a winimpl::Window>, sharing: Option<&'a winimpl::Window>,
dimensions: Option<(uint, uint)>, dimensions: Option<(usize, usize)>,
title: String, title: String,
monitor: Option<winimpl::MonitorID>, monitor: Option<winimpl::MonitorID>,
gl_version: Option<(uint, uint)>, gl_version: Option<(usize, usize)>,
gl_debug: bool, gl_debug: bool,
vsync: bool, vsync: bool,
visible: bool, visible: bool,
@ -151,7 +151,7 @@ impl<'a> WindowBuilder<'a> {
/// Requests the window to be of specific dimensions. /// Requests the window to be of specific dimensions.
/// ///
/// Width and height are in pixels. /// Width and height are in pixels.
pub fn with_dimensions(mut self, width: uint, height: uint) -> WindowBuilder<'a> { pub fn with_dimensions(mut self, width: usize, height: usize) -> WindowBuilder<'a> {
self.attribs.dimensions = Some((width, height)); self.attribs.dimensions = Some((width, height));
self self
} }
@ -183,7 +183,7 @@ impl<'a> WindowBuilder<'a> {
/// ///
/// Version is a (major, minor) pair. For example to request OpenGL 3.3 /// Version is a (major, minor) pair. For example to request OpenGL 3.3
/// you would pass `(3, 3)`. /// you would pass `(3, 3)`.
pub fn with_gl_version(mut self, version: (uint, uint)) -> WindowBuilder<'a> { pub fn with_gl_version(mut self, version: (usize, usize)) -> WindowBuilder<'a> {
self.attribs.gl_version = Some(version); self.attribs.gl_version = Some(version);
self self
} }
@ -284,7 +284,7 @@ pub struct HeadlessRendererBuilder {
#[cfg(feature = "headless")] #[cfg(feature = "headless")]
impl HeadlessRendererBuilder { impl HeadlessRendererBuilder {
/// Initializes a new `HeadlessRendererBuilder` with default values. /// Initializes a new `HeadlessRendererBuilder` with default values.
pub fn new(width: uint, height: uint) -> HeadlessRendererBuilder { pub fn new(width: usize, height: usize) -> HeadlessRendererBuilder {
HeadlessRendererBuilder { HeadlessRendererBuilder {
attribs: BuilderAttribs { attribs: BuilderAttribs {
headless: true, headless: true,
@ -298,7 +298,7 @@ impl HeadlessRendererBuilder {
/// ///
/// Version is a (major, minor) pair. For example to request OpenGL 3.3 /// Version is a (major, minor) pair. For example to request OpenGL 3.3
/// you would pass `(3, 3)`. /// you would pass `(3, 3)`.
pub fn with_gl_version(mut self, version: (uint, uint)) -> HeadlessRendererBuilder { pub fn with_gl_version(mut self, version: (usize, usize)) -> HeadlessRendererBuilder {
self.attribs.gl_version = Some(version); self.attribs.gl_version = Some(version);
self self
} }
@ -434,7 +434,7 @@ impl Window {
/// ///
/// Returns `None` if the window no longer exists. /// Returns `None` if the window no longer exists.
#[inline] #[inline]
pub fn get_position(&self) -> Option<(int, int)> { pub fn get_position(&self) -> Option<(isize, isize)> {
self.window.get_position() self.window.get_position()
} }
@ -444,7 +444,7 @@ impl Window {
/// ///
/// This is a no-op if the window has already been closed. /// This is a no-op if the window has already been closed.
#[inline] #[inline]
pub fn set_position(&self, x: int, y: int) { pub fn set_position(&self, x: isize, y: isize) {
self.window.set_position(x, y) self.window.set_position(x, y)
} }
@ -456,7 +456,7 @@ impl Window {
/// ///
/// Returns `None` if the window no longer exists. /// Returns `None` if the window no longer exists.
#[inline] #[inline]
pub fn get_inner_size(&self) -> Option<(uint, uint)> { pub fn get_inner_size(&self) -> Option<(usize, usize)> {
self.window.get_inner_size() self.window.get_inner_size()
} }
@ -467,7 +467,7 @@ impl Window {
/// ///
/// Returns `None` if the window no longer exists. /// Returns `None` if the window no longer exists.
#[inline] #[inline]
pub fn get_outer_size(&self) -> Option<(uint, uint)> { pub fn get_outer_size(&self) -> Option<(usize, usize)> {
self.window.get_outer_size() self.window.get_outer_size()
} }
@ -477,7 +477,7 @@ impl Window {
/// ///
/// This is a no-op if the window has already been closed. /// This is a no-op if the window has already been closed.
#[inline] #[inline]
pub fn set_inner_size(&self, x: uint, y: uint) { pub fn set_inner_size(&self, x: usize, y: usize) {
self.window.set_inner_size(x, y) self.window.set_inner_size(x, y)
} }
@ -556,7 +556,7 @@ impl Window {
/// operating systems) during resize operations. This can be used to repaint /// operating systems) during resize operations. This can be used to repaint
/// during window resizing. /// during window resizing.
#[experimental] #[experimental]
pub fn set_window_resize_callback(&mut self, callback: Option<fn(uint, uint)>) { pub fn set_window_resize_callback(&mut self, callback: Option<fn(usize, usize)>) {
self.window.set_window_resize_callback(callback); self.window.set_window_resize_callback(callback);
} }
} }
@ -621,7 +621,7 @@ impl HeadlessContext {
} }
#[experimental] #[experimental]
pub fn set_window_resize_callback(&mut self, _: Option<fn(uint, uint)>) { pub fn set_window_resize_callback(&mut self, _: Option<fn(usize, usize)>) {
} }
} }
@ -698,7 +698,7 @@ impl MonitorID {
} }
/// Returns the number of pixels currently displayed on the monitor. /// Returns the number of pixels currently displayed on the monitor.
pub fn get_dimensions(&self) -> (uint, uint) { pub fn get_dimensions(&self) -> (usize, usize) {
let &MonitorID(ref id) = self; let &MonitorID(ref id) = self;
id.get_dimensions() id.get_dimensions()
} }

View file

@ -160,7 +160,7 @@ impl Window {
} }
for i in range(0, mode_num) { for i in range(0, mode_num) {
let mode: ffi::XF86VidModeModeInfo = ptr::read(*modes.offset(i as int) as *const _); let mode: ffi::XF86VidModeModeInfo = ptr::read(*modes.offset(i as isize) as *const _);
if mode.hdisplay == dimensions.0 as u16 && mode.vdisplay == dimensions.1 as u16 { if mode.hdisplay == dimensions.0 as u16 && mode.vdisplay == dimensions.1 as u16 {
best_mode = i; best_mode = i;
} }
@ -215,7 +215,7 @@ impl Window {
if builder.monitor.is_some() { if builder.monitor.is_some() {
window_attributes |= ffi::CWOverrideRedirect; window_attributes |= ffi::CWOverrideRedirect;
unsafe { unsafe {
ffi::XF86VidModeSwitchToMode(display, screen_id, *modes.offset(best_mode as int)); ffi::XF86VidModeSwitchToMode(display, screen_id, *modes.offset(best_mode as isize));
ffi::XF86VidModeSetViewPort(display, screen_id, 0, 0); ffi::XF86VidModeSetViewPort(display, screen_id, 0, 0);
set_win_attr.override_redirect = 1; set_win_attr.override_redirect = 1;
} }
@ -383,7 +383,7 @@ impl Window {
} }
} }
fn get_geometry(&self) -> Option<(int, int, uint, uint)> { fn get_geometry(&self) -> Option<(isize, isize, usize, usize)> {
unsafe { unsafe {
use std::mem; use std::mem;
@ -402,27 +402,27 @@ impl Window {
return None; return None;
} }
Some((x as int, y as int, width as uint, height as uint)) Some((x as isize, y as isize, width as usize, height as usize))
} }
} }
pub fn get_position(&self) -> Option<(int, int)> { pub fn get_position(&self) -> Option<(isize, isize)> {
self.get_geometry().map(|(x, y, _, _)| (x, y)) self.get_geometry().map(|(x, y, _, _)| (x, y))
} }
pub fn set_position(&self, x: int, y: int) { pub fn set_position(&self, x: isize, y: isize) {
unsafe { ffi::XMoveWindow(self.x.display, self.x.window, x as libc::c_int, y as libc::c_int) } unsafe { ffi::XMoveWindow(self.x.display, self.x.window, x as libc::c_int, y as libc::c_int) }
} }
pub fn get_inner_size(&self) -> Option<(uint, uint)> { pub fn get_inner_size(&self) -> Option<(usize, usize)> {
self.get_geometry().map(|(_, _, w, h)| (w, h)) self.get_geometry().map(|(_, _, w, h)| (w, h))
} }
pub fn get_outer_size(&self) -> Option<(uint, uint)> { pub fn get_outer_size(&self) -> Option<(usize, usize)> {
unimplemented!() unimplemented!()
} }
pub fn set_inner_size(&self, _x: uint, _y: uint) { pub fn set_inner_size(&self, _x: usize, _y: usize) {
unimplemented!() unimplemented!()
} }
@ -476,14 +476,14 @@ impl Window {
let (current_width, current_height) = self.current_size.get(); let (current_width, current_height) = self.current_size.get();
if current_width != cfg_event.width || current_height != cfg_event.height { if current_width != cfg_event.width || current_height != cfg_event.height {
self.current_size.set((cfg_event.width, cfg_event.height)); self.current_size.set((cfg_event.width, cfg_event.height));
events.push_back(Resized(cfg_event.width as uint, cfg_event.height as uint)); events.push_back(Resized(cfg_event.width as usize, cfg_event.height as usize));
} }
}, },
ffi::MotionNotify => { ffi::MotionNotify => {
use events::Event::MouseMoved; use events::Event::MouseMoved;
let event: &ffi::XMotionEvent = unsafe { mem::transmute(&xev) }; let event: &ffi::XMotionEvent = unsafe { mem::transmute(&xev) };
events.push_back(MouseMoved((event.x as int, event.y as int))); events.push_back(MouseMoved((event.x as isize, event.y as isize)));
}, },
ffi::KeyPress | ffi::KeyRelease => { ffi::KeyPress | ffi::KeyRelease => {
@ -507,7 +507,7 @@ impl Window {
mem::transmute(buffer.as_mut_ptr()), mem::transmute(buffer.as_mut_ptr()),
buffer.len() as libc::c_int, ptr::null_mut(), ptr::null_mut()); buffer.len() as libc::c_int, ptr::null_mut(), ptr::null_mut());
str::from_utf8(buffer.as_slice().slice_to(count as uint)) str::from_utf8(buffer.as_slice().slice_to(count as usize))
.unwrap_or("").to_string() .unwrap_or("").to_string()
}; };
@ -609,6 +609,6 @@ impl Window {
::Api::OpenGl ::Api::OpenGl
} }
pub fn set_window_resize_callback(&mut self, _: Option<fn(uint, uint)>) { pub fn set_window_resize_callback(&mut self, _: Option<fn(usize, usize)>) {
} }
} }

View file

@ -3,7 +3,7 @@ use std::collections::RingBuf;
use super::super::ffi; use super::super::ffi;
use super::ensure_thread_init; use super::ensure_thread_init;
pub struct MonitorID(pub uint); pub struct MonitorID(pub usize);
pub fn get_available_monitors() -> RingBuf<MonitorID> { pub fn get_available_monitors() -> RingBuf<MonitorID> {
ensure_thread_init(); ensure_thread_init();
@ -18,7 +18,7 @@ pub fn get_available_monitors() -> RingBuf<MonitorID> {
}; };
let mut monitors = RingBuf::new(); let mut monitors = RingBuf::new();
monitors.extend(range(0, nb_monitors).map(|i| MonitorID(i as uint))); monitors.extend(range(0, nb_monitors).map(|i| MonitorID(i as usize)));
monitors monitors
} }
@ -34,7 +34,7 @@ pub fn get_primary_monitor() -> MonitorID {
primary_monitor primary_monitor
}; };
MonitorID(primary_monitor as uint) MonitorID(primary_monitor as usize)
} }
impl MonitorID { impl MonitorID {
@ -43,7 +43,7 @@ impl MonitorID {
Some(format!("Monitor #{}", screen_num)) Some(format!("Monitor #{}", screen_num))
} }
pub fn get_dimensions(&self) -> (uint, uint) { pub fn get_dimensions(&self) -> (usize, usize) {
let dimensions = unsafe { let dimensions = unsafe {
let display = ffi::XOpenDisplay(ptr::null()); let display = ffi::XOpenDisplay(ptr::null());
let MonitorID(screen_num) = *self; let MonitorID(screen_num) = *self;
@ -51,7 +51,7 @@ impl MonitorID {
let width = ffi::XWidthOfScreen(screen); let width = ffi::XWidthOfScreen(screen);
let height = ffi::XHeightOfScreen(screen); let height = ffi::XHeightOfScreen(screen);
ffi::XCloseDisplay(display); ffi::XCloseDisplay(display);
(width as uint, height as uint) (width as usize, height as usize)
}; };
dimensions dimensions