mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-13 09:52:00 -04:00
Adds get-screen-reader-enabled, set-screen-reader-enabled, get-screen-reader-(pitch|rate|volume), set-screen-reader-(pitch|rate|volume).
62 lines
2 KiB
Rust
62 lines
2 KiB
Rust
/*
|
|
* Copyright © 2023 Collabora Ltd.
|
|
* Copyright © 2024 Valve Software
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#![allow(clippy::module_name_repetitions)]
|
|
|
|
// Re-export relevant proxies
|
|
|
|
// Deprecated interface
|
|
mod manager;
|
|
pub use crate::proxy::manager::ManagerProxy;
|
|
|
|
// Optional interfaces
|
|
mod ambient_light_sensor1;
|
|
mod battery_charge_limit1;
|
|
mod cpu_scaling1;
|
|
mod factory_reset1;
|
|
mod fan_control1;
|
|
mod gpu_performance_level1;
|
|
mod gpu_power_profile1;
|
|
mod hdmi_cec1;
|
|
mod low_power_mode1;
|
|
mod manager2;
|
|
mod performance_profile1;
|
|
mod screenreader0;
|
|
mod storage1;
|
|
mod tdp_limit1;
|
|
mod update_bios1;
|
|
mod update_dock1;
|
|
mod wifi_debug1;
|
|
mod wifi_debug_dump1;
|
|
mod wifi_power_management1;
|
|
pub use crate::proxy::ambient_light_sensor1::AmbientLightSensor1Proxy;
|
|
pub use crate::proxy::battery_charge_limit1::BatteryChargeLimit1Proxy;
|
|
pub use crate::proxy::cpu_scaling1::CpuScaling1Proxy;
|
|
pub use crate::proxy::factory_reset1::FactoryReset1Proxy;
|
|
pub use crate::proxy::fan_control1::FanControl1Proxy;
|
|
pub use crate::proxy::gpu_performance_level1::GpuPerformanceLevel1Proxy;
|
|
pub use crate::proxy::gpu_power_profile1::GpuPowerProfile1Proxy;
|
|
pub use crate::proxy::hdmi_cec1::HdmiCec1Proxy;
|
|
pub use crate::proxy::low_power_mode1::LowPowerMode1Proxy;
|
|
pub use crate::proxy::manager2::Manager2Proxy;
|
|
pub use crate::proxy::performance_profile1::PerformanceProfile1Proxy;
|
|
pub use crate::proxy::screenreader0::ScreenReader0Proxy;
|
|
pub use crate::proxy::storage1::Storage1Proxy;
|
|
pub use crate::proxy::tdp_limit1::TdpLimit1Proxy;
|
|
pub use crate::proxy::update_bios1::UpdateBios1Proxy;
|
|
pub use crate::proxy::update_dock1::UpdateDock1Proxy;
|
|
pub use crate::proxy::wifi_debug1::WifiDebug1Proxy;
|
|
pub use crate::proxy::wifi_debug_dump1::WifiDebugDump1Proxy;
|
|
pub use crate::proxy::wifi_power_management1::WifiPowerManagement1Proxy;
|
|
|
|
// Sub-interfaces
|
|
mod job1;
|
|
mod job_manager1;
|
|
mod udev_events1;
|
|
pub use crate::proxy::job1::Job1Proxy;
|
|
pub use crate::proxy::job_manager1::JobManager1Proxy;
|
|
pub use crate::proxy::udev_events1::UdevEvents1Proxy;
|