X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fgraph.c;h=3b4eb0519b7bbfcabcbfc1772cc21ca8a35ab51c;hb=6ce6f23bfb0f95c38f1f5a3c86fecc3b2e65446d;hp=a52b69e40b532914262eb87c9f389cf2aa570b55;hpb=2b9e1441889f40b55cbb026bb50fa16a95e501a4;p=psensor.git diff --git a/src/graph.c b/src/graph.c index a52b69e..3b4eb05 100644 --- a/src/graph.c +++ b/src/graph.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2012 jeanfi@gmail.com + * Copyright (C) 2010-2013 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -17,10 +17,15 @@ * 02110-1301 USA */ #include +#include + #include + +#include #include #include "cfg.h" +#include "log.h" #include "psensor.h" /* horizontal padding */ @@ -211,6 +216,23 @@ static void draw_sensor_curve(struct psensor *s, cairo_stroke(cr); } +static void display_no_graphs_warning(cairo_t *cr, int x, int y) +{ + char *msg; + + msg = strdup(_("No graphs enabled")); + + cairo_select_font_face(cr, + "sans-serif", + CAIRO_FONT_SLANT_NORMAL, + CAIRO_FONT_WEIGHT_NORMAL); + cairo_set_font_size(cr, 18.0); + + cairo_move_to(cr, x, y); + cairo_show_text(cr, msg); + + free(msg); +} void graph_update(struct psensor **sensors, @@ -223,7 +245,7 @@ graph_update(struct psensor **sensors, double min_rpm, max_rpm, mint, maxt; char *strmin, *strmax; /* horizontal and vertical offset of the graph */ - int g_xoff, g_yoff; + int g_xoff, g_yoff, no_graphs, min, max; cairo_surface_t *cst; cairo_t *cr, *cr_pixmap; char *str_btime, *str_etime; @@ -240,15 +262,14 @@ graph_update(struct psensor **sensors, max_rpm = get_max_rpm(sensors); mint = get_min_temp(sensors); - - strmin = psensor_value_to_string(SENSOR_TYPE_TEMP, - mint, - config->temperature_unit == CELCIUS); + strmin = psensor_value_to_str(SENSOR_TYPE_TEMP, + mint, + config->temperature_unit == CELCIUS); maxt = get_max_temp(sensors); - strmax = psensor_value_to_string(SENSOR_TYPE_TEMP, - maxt, - config->temperature_unit == CELCIUS); + strmax = psensor_value_to_str(SENSOR_TYPE_TEMP, + maxt, + config->temperature_unit == CELCIUS); str_btime = time_to_str(get_graph_begin_time_s(config)); str_etime = time_to_str(get_graph_end_time_s()); @@ -333,12 +354,12 @@ graph_update(struct psensor **sensors, cairo_set_line_join(cr, CAIRO_LINE_JOIN_ROUND); cairo_set_line_width(cr, 1); + no_graphs = 1; while (*sensor_cur) { struct psensor *s = *sensor_cur; - if (s->enabled) { - double min, max; - + if (s->graph_enabled) { + no_graphs = 0; if (is_fan_type(s->type)) { min = min_rpm; max = max_rpm; @@ -361,6 +382,11 @@ graph_update(struct psensor **sensors, sensor_cur++; } + + if (no_graphs) + display_no_graphs_warning(cr, + g_xoff + 12, + g_height / 2); } cr_pixmap = gdk_cairo_create(gtk_widget_get_window(w_graph));