]> git.street.me.uk Git - andy/viking.git/blobdiff - src/vikwebtool.h
Fix spelling in gpsd retry warning print out
[andy/viking.git] / src / vikwebtool.h
index 60cb992850138fce877427c46ffa1df0aacb761c..80df7f5f65eaf3d1da53f1c5a45aa1178bc0f6af 100644 (file)
@@ -27,6 +27,8 @@
 
 #include "vikexttool.h"
 
+G_BEGIN_DECLS
+
 #define VIK_WEBTOOL_TYPE            (vik_webtool_get_type ())
 #define VIK_WEBTOOL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_WEBTOOL_TYPE, VikWebtool))
 #define VIK_WEBTOOL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_WEBTOOL_TYPE, VikWebtoolClass))
@@ -42,6 +44,7 @@ struct _VikWebtoolClass
 {
   VikExtToolClass object_class;
   gchar *(* get_url) (VikWebtool *self, VikWindow *vwindow);
+  gchar *(* get_url_at_position) (VikWebtool *self, VikWindow *vwindow, VikCoord *vc);
 };
 
 GType vik_webtool_get_type ();
@@ -51,5 +54,8 @@ struct _VikWebtool {
 };
 
 gchar *vik_webtool_get_url ( VikWebtool *self, VikWindow *vwindow );
+gchar *vik_webtool_get_url_at_position ( VikWebtool *self, VikWindow *vwindow, VikCoord *vc );
+
+G_END_DECLS
 
 #endif