packaging for 1.0.4
[psensor-pkg-debian.git] / src / ui_status.h
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #ifndef _PSENSOR_UI_STATUS_H_
21 #define _PSENSOR_UI_STATUS_H_
22
23 #include <gtk/gtk.h>
24 #include <ui.h>
25
26 void ui_status_init(struct ui_psensor *ui);
27 void ui_status_cleanup();
28 void ui_status_update(struct ui_psensor *ui, unsigned int attention);
29 /* Whether status icon is supported i.e. visible. */
30 int is_status_supported();
31 GtkStatusIcon *ui_status_get_icon(struct ui_psensor *ui);
32 /* Whether the statuc icon should be visible.*/
33 void ui_status_set_visible(unsigned int visible);
34
35 #endif