1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/*
* Copyright (C) 2008 Pierre-Luc Beaudoin <pierre-luc@pierlux.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <champlain/champlain.h>
#include <markers.h>
/* This event callback will never be called if you use
* ChamplainSelectionLayer. The selection layer uses this
* event for the selection and do not pass the event forward.
* For this event to be fired, you should use a simple
* ChamplainLayer.
*/
/*
static gboolean
marker_button_release_cb (ClutterActor *actor,
ClutterButtonEvent *event,
ChamplainView * view)
{
if (event->button != 1 || event->click_count > 1)
return FALSE;
g_print("Montreal was clicked\n");
return TRUE;
}
*/
ChamplainLayer *
create_marker_layer (ChamplainView *view)
{
ClutterActor *marker;
ChamplainLayer *layer;
ClutterColor orange = { 0xf3, 0x94, 0x07, 0xbb };
layer = champlain_selection_layer_new ();
marker = champlain_marker_new_with_text ("Montréal\n<span size=\"xx-small\">Québec</span>",
"Serif 14", NULL, NULL);
champlain_marker_set_use_markup (CHAMPLAIN_MARKER (marker), TRUE);
champlain_marker_set_alignment (CHAMPLAIN_MARKER (marker), PANGO_ALIGN_RIGHT);
champlain_marker_set_color (CHAMPLAIN_MARKER (marker), &orange);
champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker),
45.528178, -73.563788);
champlain_layer_add_marker (layer, CHAMPLAIN_BASE_MARKER (marker));
/*
* This event handler will never be called anyway because this demo is using
* a ChamplainSelectionLayer but we leave it here in the demo so that you know
* how to have reactive markers
clutter_actor_set_reactive (marker, TRUE);
g_signal_connect_after (marker, "button-release-event",
G_CALLBACK (marker_button_release_cb), view);
*/
marker = champlain_marker_new_from_file ("/usr/share/icons/gnome/24x24/emblems/emblem-generic.png", NULL);
champlain_marker_set_text (CHAMPLAIN_MARKER (marker), "New York");
champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), 40.77, -73.98);
champlain_layer_add_marker (layer, CHAMPLAIN_BASE_MARKER (marker));
marker = champlain_marker_new_from_file ("/usr/share/icons/gnome/24x24/emblems/emblem-important.png", NULL);
champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), 47.130885,
-70.764141);
champlain_layer_add_marker (layer, CHAMPLAIN_BASE_MARKER (marker));
marker = champlain_marker_new_from_file ("/usr/share/icons/gnome/24x24/emblems/emblem-favorite.png", NULL);
champlain_marker_set_draw_background (CHAMPLAIN_MARKER (marker), FALSE);
champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), 45.41484,
-71.918907);
champlain_layer_add_marker (layer, CHAMPLAIN_BASE_MARKER (marker));
champlain_layer_show (layer);
return layer;
}
|