]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/blob - panel-plugin/xfce4-hdaps.h
panel-plugin: switch from xfce-panel-plugin.h to libxfce4panel.h.
[xfce4-hdaps.git] / panel-plugin / xfce4-hdaps.h
1 /*
2 * xfce4-hdaps, an XFCE4 panel plugin for the HDAPS system.
3 *
4 * Copyright (C) 2019 Michael Orlitzky
5 *
6 * http://michael.orlitzky.com/
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details:
17 *
18 * https://www.gnu.org/licenses/agpl-3.0.html
19 *
20 */
21
22 #ifndef __XFCE4_HDAPS_H__
23 #define __XFCE4_HDAPS_H__
24
25 #include <gtk/gtk.h>
26 #include <libxfce4panel/libxfce4panel.h>
27 #include <libxfce4util/libxfce4util.h>
28
29 G_BEGIN_DECLS
30
31 typedef struct {
32 XfcePanelPlugin *plugin;
33
34 /* Panel widgets */
35 GtkWidget *eventbox;
36 GtkWidget *hvbox;
37 GtkWidget *icon;
38
39 /* A pointer to the timeout function.
40 That is, a pointer to the function that gets
41 executed every poll_frequency milliseconds. */
42 gint timeout;
43
44 /* Keep track of the previous status so we don't update the
45 icon every poll_frequency for no reason. */
46 int previous_status;
47
48 /* Settings */
49 gchar *device_name;
50 gint poll_frequency;
51
52 /* Pseudo-setting, updated whenever device_name is. */
53 char sysfs_file[FILENAME_MAX];
54
55 /* Configuration dialog widgets */
56 GtkWidget *sb_poll_frequency; /* Spinners on all our rides, yo. */
57 GtkWidget *cb_device_name; /* The "Device name" combo box. */
58
59
60 } HdapsPlugin;
61
62 void hdaps_save(XfcePanelPlugin *plugin,
63 HdapsPlugin *hdaps);
64
65 void hdaps_reset_timeout(HdapsPlugin *hdaps);
66
67 G_END_DECLS
68
69 #endif