]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Fix some issues with star rating code
authorDirk Hohndel <dirk@hohndel.org>
Thu, 8 Dec 2011 04:49:22 +0000 (20:49 -0800)
committerDirk Hohndel <dirk@hohndel.org>
Thu, 8 Dec 2011 04:49:22 +0000 (20:49 -0800)
To waste less space in the tree view heading we simply put a star in the
heading instead of "Rating".

We now treat "zero stars" to mean "not rated" and don't store that value
in the XML file.

Rating is no longer a top level tag in the dive entry but instead a
property of the dive tag.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
divelist.c
save-xml.c

index 3976382aa93f58e510bd159ca2de7e3bb0d74d10..de2d35df3b9d5a9a1ac103f51f3955943665e239 100644 (file)
@@ -593,7 +593,7 @@ GtkWidget *dive_list_create(void)
        dive_list.nr = divelist_column(&dive_list, DIVE_NR, "#", NULL, PANGO_ALIGN_RIGHT, TRUE);
        gtk_tree_view_column_set_sort_column_id(dive_list.nr, -1);
        dive_list.date = divelist_column(&dive_list, DIVE_DATE, "Date", date_data_func, PANGO_ALIGN_LEFT, TRUE);
-       dive_list.stars = divelist_column(&dive_list, DIVE_RATING, "Rating", star_data_func, PANGO_ALIGN_LEFT, TRUE);
+       dive_list.stars = divelist_column(&dive_list, DIVE_RATING, UTF8_BLACKSTAR, star_data_func, PANGO_ALIGN_LEFT, TRUE);
        dive_list.depth = divelist_column(&dive_list, DIVE_DEPTH, "ft", depth_data_func, PANGO_ALIGN_RIGHT, TRUE);
        dive_list.duration = divelist_column(&dive_list, DIVE_DURATION, "min", duration_data_func, PANGO_ALIGN_RIGHT, TRUE);
        dive_list.temperature = divelist_column(&dive_list, DIVE_TEMPERATURE, UTF8_DEGREE "F", temperature_data_func, PANGO_ALIGN_RIGHT, visible_cols.temperature);
index 80c26b88260fd70665fd0934c2fe79b6c6980486..c9085db51554394442e3f92ef2782e52c52ec37f 100644 (file)
@@ -182,7 +182,6 @@ static void save_overview(FILE *f, struct dive *dive)
        show_location(f, dive);
        show_utf8(f, dive->divemaster, "  <divemaster>","</divemaster>\n");
        show_utf8(f, dive->buddy, "  <buddy>","</buddy>\n");
-       fprintf(f, "  <rating>%d</rating>\n", dive->rating);
        show_utf8(f, dive->notes, "  <notes>","</notes>\n");
 }
 
@@ -263,6 +262,8 @@ static void save_dive(FILE *f, struct dive *dive)
        fputs("<dive", f);
        if (dive->number)
                fprintf(f, " number='%d'", dive->number);
+       if (dive->rating)
+               fprintf(f, " rating='%d'", dive->rating);
        fprintf(f, " date='%04u-%02u-%02u'",
                tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
        fprintf(f, " time='%02u:%02u:%02u'",