X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=src%2Faweather-view.h;h=08d6444c9ce6f9b282e31a4d48a4cd6e3d316d16;hp=9051d888f3cc31a18cb014ae622b58b3fd78a0eb;hb=1cf8b4ecd92f49dfbbe0472e02d4e5bc8841fe2f;hpb=dc6bbd8a388179d64fdc20bdf18056b0bd9267c4 diff --git a/src/aweather-view.h b/src/aweather-view.h index 9051d88..08d6444 100644 --- a/src/aweather-view.h +++ b/src/aweather-view.h @@ -35,9 +35,10 @@ struct _AWeatherView { GObject parent_instance; /* instance members */ - gchar *time; - gchar *site; - gdouble location[3]; + gchar *time; + gboolean offline; + gchar *site; + gdouble location[3]; }; struct _AWeatherViewClass { @@ -50,9 +51,13 @@ GType aweather_view_get_type(void); /* Methods */ AWeatherView *aweather_view_new(); + void aweather_view_set_time(AWeatherView *view, const gchar *time); gchar *aweather_view_get_time(AWeatherView *view); +void aweather_view_set_offline(AWeatherView *view, gboolean offline); +gboolean aweather_view_get_offline(AWeatherView *view); + void aweather_view_get_location(AWeatherView *view, gdouble *x, gdouble *y, gdouble *z); void aweather_view_set_location(AWeatherView *view, gdouble x, gdouble y, gdouble z); void aweather_view_pan (AWeatherView *view, gdouble x, gdouble y, gdouble z);