]> Pileus Git - aweather/blobdiff - src/aweather-view.h
adding zooming
[aweather] / src / aweather-view.h
index eed4bad7c82cc0fd9217564f63d232695d320bf9..9051d888f3cc31a18cb014ae622b58b3fd78a0eb 100644 (file)
@@ -35,8 +35,9 @@ struct _AWeatherView {
        GObject parent_instance;
 
        /* instance members */
-       gchar *time;
-       gchar *location;
+       gchar  *time;
+       gchar  *site;
+       gdouble location[3];
 };
 
 struct _AWeatherViewClass {
@@ -52,11 +53,15 @@ 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_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);
+void aweather_view_zoom        (AWeatherView *view, gdouble  scale);
 
 void aweather_view_refresh(AWeatherView *view);
-void aweather_view_zoomin(AWeatherView *view);
-void aweather_view_zoomout(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