aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-09-24 09:11:59 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-09-24 09:11:59 +0200
commit86fa1b58e5a44a1711e812ed1e56c0e2c6946eed (patch)
treec60477887a81d310e11f37c1e25ec3d5862ead7b /src/window.rs
parentaa5f5de1099fab89f173fb02bae16324946de147 (diff)
downloadglutin-86fa1b58e5a44a1711e812ed1e56c0e2c6946eed.tar.gz
glutin-86fa1b58e5a44a1711e812ed1e56c0e2c6946eed.zip
Rename MonitorID -> MonitorId
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/window.rs b/src/window.rs
index 9d9aeff..d9386df 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -65,8 +65,8 @@ impl<'a> WindowBuilder<'a> {
///
/// If you don't specify dimensions for the window, it will match the monitor's.
#[inline]
- pub fn with_fullscreen(mut self, monitor: MonitorID) -> WindowBuilder<'a> {
- let MonitorID(monitor) = monitor;
+ pub fn with_fullscreen(mut self, monitor: MonitorId) -> WindowBuilder<'a> {
+ let MonitorId(monitor) = monitor;
self.window.monitor = Some(monitor);
self
}
@@ -611,15 +611,15 @@ impl<'a> Iterator for WaitEventsIterator<'a> {
// Implementation note: we retreive the list once, then serve each element by one by one.
// This may change in the future.
pub struct AvailableMonitorsIter {
- data: VecDequeIter<platform::MonitorID>,
+ data: VecDequeIter<platform::MonitorId>,
}
impl Iterator for AvailableMonitorsIter {
- type Item = MonitorID;
+ type Item = MonitorId;
#[inline]
- fn next(&mut self) -> Option<MonitorID> {
- self.data.next().map(|id| MonitorID(id))
+ fn next(&mut self) -> Option<MonitorId> {
+ self.data.next().map(|id| MonitorId(id))
}
#[inline]
@@ -637,32 +637,32 @@ pub fn get_available_monitors() -> AvailableMonitorsIter {
/// Returns the primary monitor of the system.
#[inline]
-pub fn get_primary_monitor() -> MonitorID {
- MonitorID(platform::get_primary_monitor())
+pub fn get_primary_monitor() -> MonitorId {
+ MonitorId(platform::get_primary_monitor())
}
/// Identifier for a monitor.
-pub struct MonitorID(platform::MonitorID);
+pub struct MonitorId(platform::MonitorId);
-impl MonitorID {
+impl MonitorId {
/// Returns a human-readable name of the monitor.
#[inline]
pub fn get_name(&self) -> Option<String> {
- let &MonitorID(ref id) = self;
+ let &MonitorId(ref id) = self;
id.get_name()
}
/// Returns the native platform identifier for this monitor.
#[inline]
pub fn get_native_identifier(&self) -> NativeMonitorId {
- let &MonitorID(ref id) = self;
+ let &MonitorId(ref id) = self;
id.get_native_identifier()
}
/// Returns the number of pixels currently displayed on the monitor.
#[inline]
pub fn get_dimensions(&self) -> (u32, u32) {
- let &MonitorID(ref id) = self;
+ let &MonitorId(ref id) = self;
id.get_dimensions()
}
}