]> Pileus Git - grits/blobdiff - src/aweather-view.h
Download progress bars
[grits] / src / aweather-view.h
index 9d3ee8d162bce5ad10fecd1744625285f897a641..7fc964b8d1f28be78da0a654db0a2990d1d91adc 100644 (file)
@@ -35,8 +35,10 @@ struct _AWeatherView {
        GObject parent_instance;
 
        /* instance members */
-       gchar *time;
-       gchar *location;
+       gchar   *time;
+       gchar   *site;
+       gdouble  location[3];
+       gboolean offline;
 };
 
 struct _AWeatherViewClass {
@@ -49,10 +51,22 @@ 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_location(AWeatherView *view, const gchar *location);
-gchar *aweather_view_get_location(AWeatherView *view);
+void aweather_view_set_location(AWeatherView *view, gdouble  x, gdouble  y, gdouble  z);
+void aweather_view_get_location(AWeatherView *view, gdouble *x, gdouble *y, gdouble *z);
+void aweather_view_pan         (AWeatherView *view, gdouble  x, gdouble  y, gdouble  z);
+void aweather_view_zoom        (AWeatherView *view, gdouble  scale);
+
+void aweather_view_refresh(AWeatherView *view);
+
+void aweather_view_set_offline(AWeatherView *view, gboolean offline);
+gboolean aweather_view_get_offline(AWeatherView *view);
+
+/* To be deprecated, use {get,set}_location */
+void aweather_view_set_site(AWeatherView *view, const gchar *site);
+gchar *aweather_view_get_site(AWeatherView *view);
 
 #endif