blob: ba97e33122d2511d969d2626c252124f24a832c2 [file] [log] [blame]
Stepan Salenikovich76c33e62015-05-22 12:24:07 -04001/*
Stepan Salenikovichbe87d2c2016-01-25 14:14:34 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Stepan Salenikovich76c33e62015-05-22 12:24:07 -04003 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040018 */
19
20#ifndef RING_NOTIFY_H_
21#define RING_NOTIFY_H_
22
Stepan Salenikovich67112d12015-06-16 16:57:06 -040023#include <gtk/gtk.h>
24#include "ring_client.h"
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040025
26class Call;
Stepan Salenikovich67112d12015-06-16 16:57:06 -040027class QString;
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040028
29G_BEGIN_DECLS
30
31void ring_notify_init();
32void ring_notify_uninit();
33gboolean ring_notify_is_initted();
34gboolean ring_notify_incoming_call(Call *call);
Stepan Salenikovich67112d12015-06-16 16:57:06 -040035void ring_notify_monitor_chat_notifications(RingClient *client);
36gboolean ring_notify_close_chat_notification(Call *call);
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040037
38G_END_DECLS
39
40#endif /* RING_NOTIFY_H_ */