2014-06-23 19:41:54 +04:00
|
|
|
//
|
|
|
|
// Copyright (C) 2014 Tom Beckmann
|
|
|
|
//
|
|
|
|
// 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, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
using Clutter;
|
|
|
|
using Meta;
|
|
|
|
|
|
|
|
namespace Gala.Plugins.Notify
|
|
|
|
{
|
|
|
|
public class NotificationStack : Actor
|
|
|
|
{
|
|
|
|
public signal void animations_changed (bool running);
|
|
|
|
|
|
|
|
int animation_counter = 0;
|
|
|
|
|
|
|
|
public NotificationStack ()
|
|
|
|
{
|
|
|
|
width = Notification.WIDTH + 2 * Notification.MARGIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void show_notification (uint32 id, string summary, string body, Gdk.Pixbuf? icon,
|
|
|
|
NotificationUrgency urgency, int32 expire_timeout, Window? window, string[] actions)
|
|
|
|
{
|
|
|
|
if (animation_counter == 0)
|
|
|
|
animations_changed (true);
|
|
|
|
|
|
|
|
foreach (var child in get_children ()) {
|
|
|
|
var notification = (Notification) child;
|
|
|
|
|
2014-06-23 23:21:37 +04:00
|
|
|
if (notification.id == id && !notification.being_destroyed) {
|
2014-06-23 19:41:54 +04:00
|
|
|
notification.update (summary, body, icon, expire_timeout, actions);
|
|
|
|
|
|
|
|
var transition = notification.get_transition ("update");
|
|
|
|
if (transition != null) {
|
|
|
|
animation_counter++;
|
|
|
|
transition.completed.connect (() => {
|
|
|
|
if (--animation_counter == 0)
|
|
|
|
animations_changed (false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var notification = new Notification (id, summary, body, icon, urgency,
|
|
|
|
expire_timeout, window, actions);
|
|
|
|
|
|
|
|
add_child (notification);
|
|
|
|
|
|
|
|
animation_counter++;
|
|
|
|
|
|
|
|
notification.get_transition ("entry").completed.connect (() => {
|
|
|
|
if (--animation_counter == 0)
|
|
|
|
animations_changed (false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|