| 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_POINT_H |
| 24 |
#define CHAMPLAIN_POINT_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_POINT champlain_point_get_type () |
| 34 |
|
| 35 |
#define CHAMPLAIN_POINT(obj) \ |
| 36 |
(G_TYPE_CHECK_INSTANCE_CAST ((obj), CHAMPLAIN_TYPE_POINT, ChamplainPoint)) |
| 37 |
|
| 38 |
#define CHAMPLAIN_POINT_CLASS(klass) \ |
| 39 |
(G_TYPE_CHECK_CLASS_CAST ((klass), CHAMPLAIN_TYPE_POINT, ChamplainPointClass)) |
| 40 |
|
| 41 |
#define CHAMPLAIN_IS_POINT(obj) \ |
| 42 |
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHAMPLAIN_TYPE_POINT)) |
| 43 |
|
| 44 |
#define CHAMPLAIN_IS_POINT_CLASS(klass) \ |
| 45 |
(G_TYPE_CHECK_CLASS_TYPE ((klass), CHAMPLAIN_TYPE_POINT)) |
| 46 |
|
| 47 |
#define CHAMPLAIN_POINT_GET_CLASS(obj) \ |
| 48 |
(G_TYPE_INSTANCE_GET_CLASS ((obj), CHAMPLAIN_TYPE_POINT, ChamplainPointClass)) |
| 49 |
|
| 50 |
typedef struct _ChamplainPointPrivate ChamplainPointPrivate; |
| 51 |
|
| 52 |
typedef struct _ChamplainPoint ChamplainPoint; |
| 53 |
typedef struct _ChamplainPointClass ChamplainPointClass; |
| 54 |
|
| 55 |
/** |
| 56 |
* ChamplainPoint: |
| 57 |
* |
| 58 |
* The #ChamplainPoint structure contains only private data |
| 59 |
* and should be accessed using the provided API |
| 60 |
* |
| 61 |
* Since: 0.10 |
| 62 |
*/ |
| 63 |
struct _ChamplainPoint |
| 64 |
{ |
| 65 |
ChamplainMarker parent; |
| 66 |
|
| 67 |
ChamplainPointPrivate *priv; |
| 68 |
}; |
| 69 |
|
| 70 |
struct _ChamplainPointClass |
| 71 |
{ |
| 72 |
ChamplainMarkerClass parent_class; |
| 73 |
}; |
| 74 |
|
| 75 |
GType champlain_point_get_type (void); |
| 76 |
|
| 77 |
ClutterActor *champlain_point_new (void); |
| 78 |
|
| 79 |
ClutterActor *champlain_point_new_full (gdouble size, |
| 80 |
const ClutterColor *color); |
| 81 |
|
| 82 |
void champlain_point_set_color (ChamplainPoint *point, |
| 83 |
const ClutterColor *color); |
| 84 |
ClutterColor *champlain_point_get_color (ChamplainPoint *point); |
| 85 |
|
| 86 |
void champlain_point_set_size (ChamplainPoint *point, |
| 87 |
gdouble size); |
| 88 |
gdouble champlain_point_get_size (ChamplainPoint *point); |
| 89 |
|
| 90 |
|
| 91 |
G_END_DECLS |
| 92 |
|
| 93 |
#endif |