]> Pileus Git - grits/blobdiff - src/gis-viewer.h
libgis -> grits: Rename files
[grits] / src / gis-viewer.h
diff --git a/src/gis-viewer.h b/src/gis-viewer.h
deleted file mode 100644 (file)
index a4da4fc..0000000
+++ /dev/null
@@ -1,179 +0,0 @@
-/*
- * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-/**
- * Hack alert: gis-opengl.h needs to be included before gis-viewer
- *   - GisViewer depends on GisObject for add/remove functions
- *   - GisObject depends on GisOpenGL for load/unload functions
- *   - GisOpenGL depends on GisViewer for inheritance
- *
- * The problem here is that GisOpenGL needs the GisViewer definition
- * but GisViewer only needs the typedefs (through GisObject),
- * so GisViewer needs to be included after the GisOpenGL typedefs but
- * before the GisOpenGL definition. This is handled internally by
- * gis-opengl.h
- *
- * This should probably be fixed, but making a GisGLObject interface
- * seems like too much work. Merging GisViewer and GisOpenGL would also work,
- * but I like the separate that that's provided by having two.
- */
-#include "gis-opengl.h"
-
-#ifndef __GIS_VIEWER_H__
-#define __GIS_VIEWER_H__
-
-#include <gtk/gtk.h>
-#include <glib-object.h>
-
-/* Rendering levels */
-/**
- * GIS_LEVEL_BACKGROUND: 
- *
- * The level used to draw background objects (stars, atmosphere, etc).
- */
-#define GIS_LEVEL_BACKGROUND -100
-
-/**
- * GIS_LEVEL_WORLD: 
- *
- * The level used to draw world objects. This is for both surface data as well
- * as things in the air or underground. Most objects should use
- * %GIS_LEVEL_WORLD;
- */
-#define GIS_LEVEL_WORLD         0
-
-/**
- * GIS_LEVEL_OVERLAY: 
- *
- * The level used to draw screen overlays. These will be drawn in front of most
- * of ther objects. Text and markers should use %GIS_LEVEL_OVERLAY.
- */
-#define GIS_LEVEL_OVERLAY     100
-
-/**
- * GIS_LEVEL_HUD: 
- *
- * The level used to draw the Heads Up Display. This is for things that are not
- * anchored at all the the world. They should be drawn in front of everything
- * else.
- */
-#define GIS_LEVEL_HUD         200
-
-/* Type macros */
-#define GIS_TYPE_VIEWER            (gis_viewer_get_type())
-#define GIS_VIEWER(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_VIEWER, GisViewer))
-#define GIS_IS_VIEWER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_VIEWER))
-#define GIS_VIEWER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_VIEWER, GisViewerClass))
-#define GIS_IS_VIEWER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_VIEWER))
-#define GIS_VIEWER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_VIEWER, GisViewerClass))
-
-typedef struct _GisViewer      GisViewer;
-typedef struct _GisViewerClass GisViewerClass;
-
-/**
- * GisHeightFunc:
- * @lat:       the target latitude
- * @lon:       the target longitude
- * @user_data: user data passed to the function
- *
- * Determine the surface elevation (ground level) at a given point.
- *
- * Returns: the elevation in meters above sea level
- */
-typedef gdouble (*GisHeightFunc)(gdouble lat, gdouble lon, gpointer user_data);
-
-#include "gis-plugin.h"
-#include "gis-prefs.h"
-#include "objects/gis-object.h"
-
-struct _GisViewer {
-       GtkDrawingArea parent_instance;
-
-       /* instance members */
-       GisPlugins *plugins;
-       GisPrefs   *prefs;
-       time_t      time;
-       gdouble     location[3];
-       gdouble     rotation[3];
-       gboolean    offline;
-
-       /* For dragging */
-       gint    drag_mode;
-       gdouble drag_x, drag_y;
-};
-
-struct _GisViewerClass {
-       GtkDrawingAreaClass parent_class;
-
-       /* class members */
-       void (*center_position)  (GisViewer *viewer,
-                                 gdouble lat, gdouble lon, gdouble elev);
-
-       void (*project)          (GisViewer *viewer,
-                                 gdouble lat, gdouble lon, gdouble elev,
-                                 gdouble *px, gdouble *py, gdouble *pz);
-
-       void (*clear_height_func)(GisViewer *viewer);
-       void (*set_height_func)  (GisViewer *viewer, GisBounds *bounds,
-                                 GisHeightFunc height_func, gpointer user_data,
-                                 gboolean update);
-
-       gpointer (*add)          (GisViewer *viewer, GisObject *object,
-                                 gint level, gboolean sort);
-       GisObject *(*remove)     (GisViewer *viewer, gpointer ref);
-};
-
-GType gis_viewer_get_type(void);
-
-/* Methods */
-void gis_viewer_setup(GisViewer *viewer, GisPlugins *plugins, GisPrefs *prefs);
-
-void gis_viewer_set_time(GisViewer *viewer, time_t time);
-time_t gis_viewer_get_time(GisViewer *viewer);
-
-void gis_viewer_set_location(GisViewer *viewer, gdouble  lat, gdouble  lon, gdouble  elev);
-void gis_viewer_get_location(GisViewer *viewer, gdouble *lat, gdouble *lon, gdouble *elev);
-void gis_viewer_pan(GisViewer *viewer, gdouble forward, gdouble right, gdouble up);
-void gis_viewer_zoom(GisViewer *viewer, gdouble  scale);
-
-void gis_viewer_set_rotation(GisViewer *viewer, gdouble  x, gdouble  y, gdouble  z);
-void gis_viewer_get_rotation(GisViewer *viewer, gdouble *x, gdouble *y, gdouble *z);
-void gis_viewer_rotate      (GisViewer *viewer, gdouble  x, gdouble  y, gdouble  z);
-
-void gis_viewer_refresh(GisViewer *viewer);
-
-void gis_viewer_set_offline(GisViewer *viewer, gboolean offline);
-gboolean gis_viewer_get_offline(GisViewer *viewer);
-
-/* To be implemented by subclasses */
-void gis_viewer_center_position(GisViewer *viewer,
-               gdouble lat, gdouble lon, gdouble elev);
-
-void gis_viewer_project(GisViewer *viewer,
-               gdouble lat, gdouble lon, gdouble elev,
-               gdouble *px, gdouble *py, gdouble *pz);
-
-void gis_viewer_clear_height_func(GisViewer *viewer);
-void gis_viewer_set_height_func(GisViewer *viewer, GisBounds *bounds,
-               GisHeightFunc height_func, gpointer user_data,
-               gboolean update);
-
-gpointer gis_viewer_add(GisViewer *viewer, GisObject *object,
-               gint level, gboolean sort);
-GisObject *gis_viewer_remove(GisViewer *viewer, gpointer ref);
-
-#endif