/* * viking -- GPS Data and Topo Analyzer, Explorer, and Manager * * Copyright (C) 2003-2005, Evan Battaglia * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef _VIKING_WAYPOINT_H #define _VIKING_WAYPOINT_H #include "vikcoord.h" /* todo important: put these in their own header file, maybe.probably also rename */ #define VIK_WAYPOINT(x) ((VikWaypoint *)(x)) typedef struct _VikWaypoint VikWaypoint; struct _VikWaypoint { VikCoord coord; gboolean visible; gdouble altitude; gchar *name; gchar *comment; gchar *image; /* a rather misleading, ugly hack needed for trwlayer's click image. * these are the height at which the thumbnail is being drawn, not the * dimensions of the original image. */ guint8 image_width; guint8 image_height; gchar *symbol; }; VikWaypoint *vik_waypoint_new(); void vik_waypoint_set_name(VikWaypoint *wp, const gchar *name); void vik_waypoint_set_comment(VikWaypoint *wp, const gchar *comment); void vik_waypoint_set_image(VikWaypoint *wp, const gchar *image); void vik_waypoint_set_symbol(VikWaypoint *wp, const gchar *symname); void vik_waypoint_free(VikWaypoint * wp); VikWaypoint *vik_waypoint_copy(const VikWaypoint *wp); void vik_waypoint_set_comment_no_copy(VikWaypoint *wp, gchar *comment); void vik_waypoint_marshall ( VikWaypoint *wp, guint8 **data, guint *len); VikWaypoint *vik_waypoint_unmarshall (guint8 *data, guint datalen); #endif