aboutsummaryrefslogtreecommitdiff
path: root/src/notification.vala
blob: 0c9e5b87bb6ed48c3206db5f15a1e6a8681cc9fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * Copyright 2015 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Charles Kerr <charles.kerr@canonical.com>
 */

public abstract class IndicatorSound.Notification: Object
{
	public bool visible { get; protected set; default = false; }

	public Notification() {
		BusWatcher.watch_namespace (GLib.BusType.SESSION,
		                            "org.freedesktop.Notifications",
		                            () => { debug("Notifications name appeared"); },
		                            () => { debug("Notifications name vanshed"); _server_caps = null; });

		_notification = create_notification();
		_notification.closed.connect((n) => {
			visible = false;
		});
	}

	protected abstract Notify.Notification create_notification();

	~Notification() {
		close();
	}

	protected async void show_() {
		try {
			GLib.message("calling _notification.show");
			_notification.show ();
			GLib.message("after calling show, n.id is %d", (int)_notification.id);
			visible = true;
		} catch (GLib.Error e) {
			warning ("Unable to show notification: %s", e.message);
		}
	}

	public void close() {
		var n = _notification;

		return_if_fail (n != null);

		message("closing id %d", n.id);
		if (n.id != 0) {
			try {
				n.close();
			} catch (GLib.Error e) {
				warning("Unable to close notification: %s", e.message);
			}
		}
	}

	protected bool notify_server_supports(string cap) {
		if (_server_caps == null) {
			GLib.message("getting server caps");
			_server_caps = Notify.get_server_caps();
			GLib.message("got server caps");
		}

		var ret = _server_caps.find_custom(cap, strcmp) != null;
		message("%s --> %d", cap, (int)ret);
		return ret;
	}

	protected Notify.Notification _notification = null;

	private static List<string> _server_caps = null;
}