diff options
Diffstat (limited to 'multiload/global.h')
-rw-r--r-- | multiload/global.h | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/multiload/global.h b/multiload/global.h new file mode 100644 index 00000000..46840e08 --- /dev/null +++ b/multiload/global.h @@ -0,0 +1,99 @@ +#ifndef __GLOBAL_H__ +#define __GLOBAL_H__ + +#include <glib.h> +#include <glib/gi18n.h> +#include <gdk-pixbuf/gdk-pixbuf.h> +#include <gtk/gtk.h> +#include <mate-panel-applet.h> + +G_BEGIN_DECLS + +#define NCPUSTATES 5 +#define NGRAPHS 6 + +typedef struct _MultiloadApplet MultiloadApplet; +typedef struct _LoadGraph LoadGraph; +typedef void (*LoadGraphDataFunc) (int, int [], LoadGraph *); + +#include "netspeed.h" + +struct _LoadGraph { + MultiloadApplet *multiload; + + guint n, id; + guint speed, size; + guint orient, pixel_size; + guint draw_width, draw_height; + LoadGraphDataFunc get_data; + + guint allocated; + + GdkColor *colors; + gint **data; + guint data_size; + guint *pos; + + gint colors_allocated; + GtkWidget *main_widget; + GtkWidget *frame, *box, *disp; + GdkPixmap *pixmap; + GdkGC *gc; + int timer_index; + + gint show_frame; + + long cpu_time [NCPUSTATES]; + long cpu_last [NCPUSTATES]; + int cpu_initialized; + + double loadavg1; + NetSpeed *netspeed_in; + NetSpeed *netspeed_out; + + gboolean visible; + gboolean tooltip_update; + const gchar *name; +}; + +struct _MultiloadApplet +{ + MatePanelApplet *applet; + + LoadGraph *graphs[NGRAPHS]; + + GtkWidget *box; + + gboolean view_cpuload; + gboolean view_memload; + gboolean view_netload; + gboolean view_swapload; + gboolean view_loadavg; + gboolean view_diskload; + + GtkWidget *about_dialog; + GtkWidget *check_boxes[NGRAPHS]; + GtkWidget *prop_dialog; + GtkWidget *notebook; + int last_clicked; +}; + +#include "load-graph.h" +#include "linux-proc.h" + +/* show properties dialog */ +G_GNUC_INTERNAL void +multiload_properties_cb (GtkAction *action, + MultiloadApplet *ma); + +/* remove the old graphs and rebuild them */ +G_GNUC_INTERNAL void +multiload_applet_refresh(MultiloadApplet *ma); + +/* update the tooltip to the graph's current "used" percentage */ +G_GNUC_INTERNAL void +multiload_applet_tooltip_update(LoadGraph *g); + +G_END_DECLS + +#endif |