mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
62 lines
2.2 KiB
Rust
62 lines
2.2 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
|
|
use dom::bindings::codegen::Bindings::PermissionStatusBinding::{self, PermissionDescriptor, PermissionName};
|
|
use dom::bindings::codegen::Bindings::PermissionStatusBinding::{PermissionNameValues, PermissionState};
|
|
use dom::bindings::codegen::Bindings::PermissionStatusBinding::PermissionStatusMethods;
|
|
use dom::bindings::js::Root;
|
|
use dom::bindings::reflector::reflect_dom_object;
|
|
use dom::eventtarget::EventTarget;
|
|
use dom::globalscope::GlobalScope;
|
|
use std::cell::Cell;
|
|
use std::fmt::{self, Display, Formatter};
|
|
|
|
// https://w3c.github.io/permissions/#permissionstatus
|
|
#[dom_struct]
|
|
pub struct PermissionStatus {
|
|
eventtarget: EventTarget,
|
|
state: Cell<PermissionState>,
|
|
query: Cell<PermissionName>,
|
|
}
|
|
|
|
impl PermissionStatus {
|
|
pub fn new_inherited(query: PermissionName) -> PermissionStatus {
|
|
PermissionStatus {
|
|
eventtarget: EventTarget::new_inherited(),
|
|
state: Cell::new(PermissionState::Denied),
|
|
query: Cell::new(query),
|
|
}
|
|
}
|
|
|
|
pub fn new(global: &GlobalScope, query: &PermissionDescriptor) -> Root<PermissionStatus> {
|
|
reflect_dom_object(box PermissionStatus::new_inherited(query.name),
|
|
global,
|
|
PermissionStatusBinding::Wrap)
|
|
}
|
|
|
|
pub fn set_state(&self, state: PermissionState) {
|
|
self.state.set(state);
|
|
}
|
|
|
|
pub fn get_query(&self) -> PermissionName {
|
|
self.query.get()
|
|
}
|
|
}
|
|
|
|
impl PermissionStatusMethods for PermissionStatus {
|
|
// https://w3c.github.io/permissions/#dom-permissionstatus-state
|
|
fn State(&self) -> PermissionState {
|
|
self.state.get()
|
|
}
|
|
|
|
// https://w3c.github.io/permissions/#dom-permissionstatus-onchange
|
|
event_handler!(onchange, GetOnchange, SetOnchange);
|
|
}
|
|
|
|
impl Display for PermissionName {
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
write!(f, "{}", PermissionNameValues::strings[*self as usize].to_string())
|
|
}
|
|
}
|