162 lines
4.6 KiB
Rust
162 lines
4.6 KiB
Rust
use app_state::*;
|
|
use audio::*;
|
|
use errors::*;
|
|
use glib::Variant;
|
|
use glib::prelude::*;
|
|
use gtk::DialogExt;
|
|
use gtk::MessageDialogExt;
|
|
use gtk::WidgetExt;
|
|
use gtk::WindowExt;
|
|
use gtk;
|
|
use gtk_sys::{GTK_DIALOG_DESTROY_WITH_PARENT, GTK_RESPONSE_YES};
|
|
use libnotify;
|
|
use prefs::*;
|
|
use std::cell::Cell;
|
|
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
use std::thread;
|
|
use std::time::Duration;
|
|
use support_audio::*;
|
|
use support_ui::*;
|
|
use ui_popup_menu::*;
|
|
use ui_popup_window::*;
|
|
use ui_prefs_dialog::*;
|
|
use ui_tray_icon::*;
|
|
|
|
|
|
|
|
pub struct Notif {
|
|
enabled: Cell<bool>,
|
|
from_popup: Cell<bool>,
|
|
from_tray: Cell<bool>,
|
|
// TODO: from hotkey
|
|
from_external: Cell<bool>,
|
|
|
|
volume_notif: libnotify::Notification,
|
|
text_notif: libnotify::Notification,
|
|
}
|
|
|
|
impl Notif {
|
|
pub fn new(prefs: &Prefs) -> Result<Self> {
|
|
let notif = Notif {
|
|
enabled: Cell::new(false),
|
|
from_popup: Cell::new(false),
|
|
from_tray: Cell::new(false),
|
|
from_external: Cell::new(false),
|
|
|
|
volume_notif: libnotify::Notification::new("", None, None),
|
|
text_notif: libnotify::Notification::new("", None, None),
|
|
};
|
|
|
|
notif.reload(prefs)?;
|
|
|
|
return Ok(notif);
|
|
}
|
|
|
|
pub fn reload(&self, prefs: &Prefs) -> Result<()> {
|
|
let timeout = prefs.notify_prefs.notifcation_timeout;
|
|
|
|
self.enabled.set(prefs.notify_prefs.enable_notifications);
|
|
self.from_popup.set(prefs.notify_prefs.notify_popup);
|
|
self.from_tray.set(prefs.notify_prefs.notify_mouse_scroll);
|
|
self.from_external.set(prefs.notify_prefs.notify_external);
|
|
|
|
self.volume_notif.set_timeout(timeout as i32);
|
|
self.volume_notif
|
|
.set_hint("x-canonical-private-synchronous", Some("".to_variant()));
|
|
|
|
|
|
self.text_notif.set_timeout(timeout as i32);
|
|
self.text_notif
|
|
.set_hint("x-canonical-private-synchronous", Some("".to_variant()));
|
|
|
|
return Ok(());
|
|
}
|
|
|
|
pub fn show_volume_notif(&self, audio: &Audio) -> Result<()> {
|
|
let vol = audio.vol()?;
|
|
let vol_level = audio.vol_level();
|
|
|
|
let icon = {
|
|
match vol_level {
|
|
VolLevel::Muted => "audio-volume-muted",
|
|
VolLevel::Off => "audio-volume-off",
|
|
VolLevel::Low => "audio-volume-low",
|
|
VolLevel::Medium => "audio-volume-medium",
|
|
VolLevel::High => "audio-volume-high",
|
|
}
|
|
};
|
|
|
|
let summary = {
|
|
match vol_level {
|
|
VolLevel::Muted => String::from("Volume muted"),
|
|
_ => {
|
|
format!("{} ({})\nVolume: {}",
|
|
audio.acard
|
|
.borrow()
|
|
.card_name()?,
|
|
audio.acard
|
|
.borrow()
|
|
.chan_name()?,
|
|
vol)
|
|
}
|
|
}
|
|
};
|
|
|
|
// TODO: error handling
|
|
self.volume_notif.update(summary.as_str(), None, Some(icon)).unwrap();
|
|
self.volume_notif.set_hint("value", Some((vol as i32).to_variant()));
|
|
// TODO: error handling
|
|
self.volume_notif.show().unwrap();
|
|
|
|
return Ok(());
|
|
}
|
|
|
|
|
|
pub fn show_text_notif(&self, summary: &str, body: &str) -> Result<()> {
|
|
// TODO: error handling
|
|
self.text_notif.update(summary, Some(body), None).unwrap();
|
|
// TODO: error handling
|
|
self.text_notif.show().unwrap();
|
|
|
|
return Ok(());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
pub fn init_notify(appstate: Rc<AppS>) {
|
|
debug!("Blah");
|
|
{
|
|
/* connect handler */
|
|
let apps = appstate.clone();
|
|
appstate.audio.connect_handler(Box::new(move |s, u| {
|
|
let notif = &apps.notif;
|
|
if !notif.enabled.get() {
|
|
return;
|
|
}
|
|
match (s,
|
|
u,
|
|
(notif.from_popup.get(),
|
|
notif.from_tray.get(),
|
|
notif.from_external.get())) {
|
|
// TODO
|
|
(AudioSignal::CardDisconnected, _, _) => (),
|
|
(AudioSignal::CardError, _, _) => (),
|
|
(AudioSignal::ValuesChanged,
|
|
AudioUser::TrayIcon,
|
|
(_, true, _)) => try_w!(notif.show_volume_notif(&apps.audio)),
|
|
(AudioSignal::ValuesChanged,
|
|
AudioUser::Popup,
|
|
(true, _, _)) => try_w!(notif.show_volume_notif(&apps.audio)),
|
|
(AudioSignal::ValuesChanged,
|
|
AudioUser::Unknown,
|
|
(_, _, true)) => try_w!(notif.show_volume_notif(&apps.audio)),
|
|
|
|
_ => (),
|
|
}
|
|
}));
|
|
|
|
}
|
|
}
|