~ubuntu-branches/ubuntu/natty/libchamplain/natty

« back to all changes in this revision

Viewing changes to champlain/champlain-layer.h

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons, Laurent Bigonville, Sjoerd Simons
  • Date: 2009-09-15 00:01:41 UTC
  • mfrom: (1.1.3 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090915000141-i8fg5n1t02zxo79m
Tags: 0.4.0-1
[ Laurent Bigonville ]
* debian/control: Add libchamplain-0.3-dev dependency to
  libchamplain-gtk-0.3-dev

[ Sjoerd Simons ]
* New upstream release (0.4.0)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#define CHAMPLAIN_LAYER_H
25
25
 
26
26
#include <champlain/champlain-defines.h>
 
27
#include <champlain/champlain-base-marker.h>
27
28
 
28
29
#include <glib-object.h>
29
30
#include <clutter/clutter.h>
59
60
 
60
61
ChamplainLayer* champlain_layer_new (void);
61
62
 
 
63
void champlain_layer_show (ChamplainLayer *layer);
 
64
void champlain_layer_hide (ChamplainLayer *layer);
 
65
 
 
66
void champlain_layer_add_marker (ChamplainLayer *layer,
 
67
    ChamplainBaseMarker *marker);
 
68
void champlain_layer_remove_marker (ChamplainLayer *layer,
 
69
    ChamplainBaseMarker *marker);
 
70
 
 
71
void champlain_layer_animate_in_all_markers (ChamplainLayer *layer);
 
72
void champlain_layer_animate_out_all_markers (ChamplainLayer *layer);
 
73
 
 
74
void champlain_layer_show_all_markers (ChamplainLayer *layer);
 
75
void champlain_layer_hide_all_markers (ChamplainLayer *layer);
 
76
 
62
77
G_END_DECLS
63
78
 
64
79
#endif