1
/*
2
 * Copyright (C) 2011-2012 Jiri Techet <techet@gmail.com>
3
 *
4
 * This library is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU Lesser General Public
6
 * License as published by the Free Software Foundation; either
7
 * version 2.1 of the License, or (at your option) any later version.
8
 *
9
 * This library is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with this library; if not, write to the Free Software
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 */
18
19
#if !defined (__CHAMPLAIN_CHAMPLAIN_H_INSIDE__) && !defined (CHAMPLAIN_COMPILATION)
20
#error "Only <champlain/champlain.h> can be included directly."
21
#endif
22
23
#ifndef CHAMPLAIN_CUSTOM_MARKER_H
24
#define CHAMPLAIN_CUSTOM_MARKER_H
25
26
#include <champlain/champlain-marker.h>
27
28
#include <glib-object.h>
29
#include <clutter/clutter.h>
30
31
G_BEGIN_DECLS
32
33
#define CHAMPLAIN_TYPE_CUSTOM_MARKER champlain_custom_marker_get_type ()
34
35
#define CHAMPLAIN_CUSTOM_MARKER(obj) \
36
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHAMPLAIN_TYPE_CUSTOM_MARKER, ChamplainCustomMarker))
37
38
#define CHAMPLAIN_CUSTOM_MARKER_CLASS(klass) \
39
  (G_TYPE_CHECK_CLASS_CAST ((klass), CHAMPLAIN_TYPE_CUSTOM_MARKER, ChamplainCustomMarkerClass))
40
41
#define CHAMPLAIN_IS_CUSTOM_MARKER(obj) \
42
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHAMPLAIN_TYPE_CUSTOM_MARKER))
43
44
#define CHAMPLAIN_IS_CUSTOM_MARKER_CLASS(klass) \
45
  (G_TYPE_CHECK_CLASS_TYPE ((klass), CHAMPLAIN_TYPE_CUSTOM_MARKER))
46
47
#define CHAMPLAIN_CUSTOM_MARKER_GET_CLASS(obj) \
48
  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHAMPLAIN_TYPE_CUSTOM_MARKER, ChamplainCustomMarkerClass))
49
50
typedef struct _ChamplainCustomMarkerPrivate ChamplainCustomMarkerPrivate;
51
52
typedef struct _ChamplainCustomMarker ChamplainCustomMarker;
53
typedef struct _ChamplainCustomMarkerClass ChamplainCustomMarkerClass;
54
55
/**
56
 * ChamplainCustomMarker:
57
 *
58
 * The #ChamplainCustomMarker structure contains only private data
59
 * and should be accessed using the provided API
60
 *
61
 * Since: 0.10
62
 */
63
struct _ChamplainCustomMarker
64
{
65
  ChamplainMarker parent;
66
67
  ChamplainCustomMarkerPrivate *priv;
68
};
69
70
struct _ChamplainCustomMarkerClass
71
{
72
  ChamplainMarkerClass parent_class;
73
};
74
75
GType champlain_custom_marker_get_type (void);
76
77
ClutterActor *champlain_custom_marker_new (void);
78
79
G_END_DECLS
80
81
#endif