]> Pileus Git - grits/blobdiff - src/gis-viewer.h
Merging GisWorld and GisView into GisViewer
[grits] / src / gis-viewer.h
similarity index 93%
rename from src/gis-view.h
rename to src/gis-viewer.h
index ec84b845793e9ba1a7acedec48ba995bd7beec75..6b0d6bdfb2b5f0d40a667c77060c478df022637f 100644 (file)
@@ -39,11 +39,12 @@ struct _GisView {
        gchar   *site;
        gdouble  location[3];
        gdouble  rotation[3];
+       gboolean offline;
 };
 
 struct _GisViewClass {
        GObjectClass parent_class;
-       
+
        /* class members */
 };
 
@@ -68,4 +69,9 @@ void gis_view_rotate      (GisView *view, gdouble  x, gdouble  y, gdouble  z);
 void gis_view_set_site(GisView *view, const gchar *site);
 gchar *gis_view_get_site(GisView *view);
 
+void gis_world_refresh(GisWorld *world);
+
+void gis_world_set_offline(GisWorld *world, gboolean offline);
+gboolean gis_world_get_offline(GisWorld *world);
+
 #endif