Add configuration options for OpenAerial and BlueMarble
[viking/guyou.git] / src / vikwebtoolcenter.h
blobda8d40b2ef76cc1a02e1da8138148879077ca250
1 /*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 * Copyright (C) 2008, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _VIKING_WEBTOOL_CENTER_H
22 #define _VIKING_WEBTOOL_CENTER_H
24 #include <glib.h>
26 #include "vikwebtool.h"
28 #define VIK_WEBTOOL_CENTER_TYPE (vik_webtool_center_get_type ())
29 #define VIK_WEBTOOL_CENTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_WEBTOOL_CENTER_TYPE, VikWebtoolCenter))
30 #define VIK_WEBTOOL_CENTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_WEBTOOL_CENTER_TYPE, VikWebtoolCenterClass))
31 #define IS_VIK_WEBTOOL_CENTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_WEBTOOL_CENTER_TYPE))
32 #define IS_VIK_WEBTOOL_CENTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_WEBTOOL_CENTER_TYPE))
33 #define VIK_WEBTOOL_CENTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIK_WEBTOOL_CENTER_TYPE, VikWebtoolCenterClass))
36 typedef struct _VikWebtoolCenter VikWebtoolCenter;
37 typedef struct _VikWebtoolCenterClass VikWebtoolCenterClass;
39 struct _VikWebtoolCenterClass
41 VikWebtoolClass object_class;
42 guint8 (* mpp_to_zoom) (VikWebtool *self, gdouble mpp);
45 GType vik_webtool_center_get_type ();
47 struct _VikWebtoolCenter {
48 VikWebtool obj;
51 guint8 vik_webtool_center_mpp_to_zoom (VikWebtool *self, gdouble mpp);
53 VikWebtoolCenter* vik_webtool_center_new ( );
54 VikWebtoolCenter* vik_webtool_center_new_with_members ( const gchar *label, const gchar *url );
56 #endif