[gcompris] click on letter: improved the graphism. based on an openclipart image.



commit 0d4b11c49a8e0c5a51fe618a81a81bce5461c7c2
Author: Bruno Coudoin <bruno coudoin free fr>
Date:   Mon Jun 13 22:21:44 2011 +0200

    click on letter: improved the graphism. based on an openclipart image.

 src/click_on_letter-activity/click_on_letter.c     |   23 +-
 .../resources/click_on_letter/Makefile.am          |    6 +-
 .../resources/click_on_letter/background.svgz      |  Bin 0 -> 120468 bytes
 .../resources/click_on_letter/carriage.svg         |  225 ++++++++++++++++++++
 .../resources/click_on_letter/carriage_on.svg      |  225 ++++++++++++++++++++
 .../click_on_letter/scenery4_background.png        |  Bin 73430 -> 0 bytes
 .../resources/click_on_letter/wagon-green.png      |  Bin 7524 -> 0 bytes
 .../resources/click_on_letter/wagon-yellow.png     |  Bin 7917 -> 0 bytes
 8 files changed, 465 insertions(+), 14 deletions(-)
---
diff --git a/src/click_on_letter-activity/click_on_letter.c b/src/click_on_letter-activity/click_on_letter.c
index dd90943..f81fdd9 100644
--- a/src/click_on_letter-activity/click_on_letter.c
+++ b/src/click_on_letter-activity/click_on_letter.c
@@ -47,8 +47,8 @@ static void		 config_start(GcomprisBoard *agcomprisBoard,
 static void		 config_stop(void);
 
 
-#define VERTICAL_SEPARATION 408
-#define HORIZONTAL_SEPARATION 0
+#define VERTICAL_SEPARATION 505
+#define HORIZONTAL_SEPARATION -1
 
 #define NUMBER_OF_SUBLEVELS 3
 #define NUMBER_OF_LEVELS 5
@@ -162,7 +162,7 @@ static void start_board (GcomprisBoard *agcomprisBoard)
     {
       gcomprisBoard=agcomprisBoard;
       gc_set_background(goo_canvas_get_root_item(gcomprisBoard->canvas),
-			      "click_on_letter/scenery4_background.png");
+			      "click_on_letter/background.svgz");
       gcomprisBoard->level=1;
       gcomprisBoard->maxlevel=NUMBER_OF_LEVELS;
       gcomprisBoard->sublevel=1;
@@ -459,10 +459,10 @@ static GooCanvasItem *click_on_letter_create_item(GooCanvasItem *parent)
 
 
 
-  button_pixmap = gc_pixmap_load("click_on_letter/wagon-yellow.png");
+  button_pixmap = gc_pixmap_load("click_on_letter/carriage.svg");
 
-  yOffset = VERTICAL_SEPARATION;
-  xOffset = 5;
+  yOffset = VERTICAL_SEPARATION - gdk_pixbuf_get_height(button_pixmap);
+  xOffset = 144;
 
 
   for (i=0; i< number_of_letters; i++) {
@@ -475,12 +475,12 @@ static GooCanvasItem *click_on_letter_create_item(GooCanvasItem *parent)
 
     l_items[i] = goo_canvas_text_new (boardRootItem,
 				      letters[i],
-				      (double) xOffset + gdk_pixbuf_get_width(button_pixmap)/2,
-				      (double) yOffset + gdk_pixbuf_get_height(button_pixmap)/2 - 5,
+				      (double) xOffset + gdk_pixbuf_get_width(button_pixmap)/2 - 10,
+				      (double) yOffset + 30,
 				      -1,
 				      GTK_ANCHOR_CENTER,
 				      "font", gc_skin_font_board_huge_bold,
-				      "fill_color_rgba", 0x0000ffff,
+				      "fill_color_rgba", 0x000000ff,
 				      NULL);
 
     g_free(letters[i]);
@@ -490,6 +490,7 @@ static GooCanvasItem *click_on_letter_create_item(GooCanvasItem *parent)
 		     (GtkSignalFunc) item_event, GINT_TO_POINTER(i));
     g_signal_connect(buttons[i], "button_press_event",
 		     (GtkSignalFunc) item_event, GINT_TO_POINTER(i));
+    gc_item_focus_init(l_items[i], buttons[i]);
     gc_item_focus_init(buttons[i], NULL);
   }
 
@@ -569,13 +570,13 @@ static void highlight_selected(GooCanvasItem * item) {
   }
 
   if (selected_button != NULL && selected_button != button) {
-    button_pixmap = gc_pixmap_load("click_on_letter/wagon-yellow.png");
+    button_pixmap = gc_pixmap_load("click_on_letter/carriage.svg");
     g_object_set(selected_button, "pixbuf", button_pixmap, NULL);
     gdk_pixbuf_unref(button_pixmap);
   }
 
   if (selected_button != button) {
-    button_pixmap_selected = gc_pixmap_load("click_on_letter/wagon-green.png");
+    button_pixmap_selected = gc_pixmap_load("click_on_letter/carriage_on.svg");
     g_object_set(button, "pixbuf", button_pixmap_selected, NULL);
     selected_button = button;
     gdk_pixbuf_unref(button_pixmap_selected);
diff --git a/src/click_on_letter-activity/resources/click_on_letter/Makefile.am b/src/click_on_letter-activity/resources/click_on_letter/Makefile.am
index 95a444e..318b49a 100644
--- a/src/click_on_letter-activity/resources/click_on_letter/Makefile.am
+++ b/src/click_on_letter-activity/resources/click_on_letter/Makefile.am
@@ -1,8 +1,8 @@
 imgdir = $(pkgdatadir)/@PACKAGE_DATA_DIR@/click_on_letter
 img_DATA = \
-	scenery4_background.png \
-	wagon-green.png \
-	wagon-yellow.png \
+	background.svgz \
+	carriage.svg \
+	carriage_on.svg \
 	repeat.svg
 
 EXTRA_DIST = $(img_DATA)
diff --git a/src/click_on_letter-activity/resources/click_on_letter/background.svgz b/src/click_on_letter-activity/resources/click_on_letter/background.svgz
new file mode 100644
index 0000000..384cdb7
Binary files /dev/null and b/src/click_on_letter-activity/resources/click_on_letter/background.svgz differ
diff --git a/src/click_on_letter-activity/resources/click_on_letter/carriage.svg b/src/click_on_letter-activity/resources/click_on_letter/carriage.svg
new file mode 100644
index 0000000..5f2164e
--- /dev/null
+++ b/src/click_on_letter-activity/resources/click_on_letter/carriage.svg
@@ -0,0 +1,225 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   id="svg6438"
+   version="1.1"
+   inkscape:version="0.48.1 r9760"
+   width="117.69477"
+   height="126.24837"
+   sodipodi:docname="carriage.svg">
+  <metadata
+     id="metadata6444">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6442" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="948"
+     inkscape:window-height="780"
+     id="namedview6440"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="3.5625"
+     inkscape:cx="45.693853"
+     inkscape:cy="51.854176"
+     inkscape:window-x="475"
+     inkscape:window-y="24"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g6575"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <g
+     transform="translate(-265.16884,-909.76663)"
+     id="g6575">
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-98"
+       d="m 293.28818,963.89058 3.02417,0 c 1.32906,0 2.39902,1.06997 2.39902,2.39903 l 0,38.20199 c 0,1.329 -1.06996,2.399 -2.39902,2.399 l -3.02417,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-38.20199 c 0,-1.32906 1.06997,-2.39903 2.39903,-2.39903 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-4-0-4"
+       d="m 293.30027,963.89058 c -1.32906,0 -2.40625,1.07719 -2.40625,2.40625 l 0,38.18747 c 0,1.0799 0.70974,1.9784 1.6875,2.2813 -0.37394,-0.4228 -0.625,-0.9823 -0.625,-1.5938 l 0,-38.18747 c 0,-1.32906 1.07719,-2.40625 2.40625,-2.40625 l 3.03125,0 c 0.25437,0 0.48905,0.0523 0.71875,0.125 -0.439,-0.49899 -1.09259,-0.8125 -1.8125,-0.8125 l -3,0 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-9-2"
+       d="m 337.87708,963.89058 3.02416,0 c 1.32907,0 2.39903,1.06997 2.39903,2.39903 l 0,38.20199 c 0,1.329 -1.06996,2.399 -2.39903,2.399 l -3.02416,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-38.20199 c 0,-1.32906 1.06997,-2.39903 2.39903,-2.39903 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-4-0-7-7"
+       d="m 337.8843,963.89058 c -1.32906,0 -2.40625,1.07719 -2.40625,2.40625 l 0,38.18747 c 0,1.0799 0.70974,1.9784 1.6875,2.2813 -0.37394,-0.4228 -0.625,-0.9823 -0.625,-1.5938 l 0,-38.18747 c 0,-1.32906 1.07719,-2.40625 2.40625,-2.40625 l 3.03125,0 c 0.25437,0 0.48905,0.0523 0.71875,0.125 -0.439,-0.49899 -1.09259,-0.8125 -1.8125,-0.8125 l -3,0 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6562-63-4"
+       d="m 273.6993,992.89059 86.20194,0 c 1.32906,0 2.39903,1.07 2.39903,2.399 l 0,5.20201 c 0,1.329 -1.06997,2.399 -2.39903,2.399 l -86.20194,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-5.20201 c 0,-1.329 1.06997,-2.399 2.39903,-2.399 z"
+       style="fill:#5c3566;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-1"
+       d="m 273.72039,993.98429 c -0.74884,0 -1.3125,0.5498 -1.3125,1.2813 l 0,5.21871 c 0,0.7315 0.581,1.3125 1.3125,1.3125 l 86.1875,0 c 0.7315,0 1.3125,-0.581 1.3125,-1.3125 l 0,-5.21871 c 0,-0.7315 -0.56366,-1.2813 -1.3125,-1.2813 l -86.1875,0 z"
+       style="fill:#75507b;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6562-63-2-8"
+       d="m 273.6993,982.89058 86.20194,0 c 1.32906,0 2.39903,1.07001 2.39903,2.39901 l 0,5.202 c 0,1.329 -1.06997,2.399 -2.39903,2.399 l -86.20194,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-5.202 c 0,-1.329 1.06997,-2.39901 2.39903,-2.39901 z"
+       style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-9-4"
+       d="m 273.63217,983.89055 c -0.75009,0 -1.3147,0.56284 -1.3147,1.31174 l 0,5.3432 c 0,0.7489 0.58198,1.3438 1.3147,1.3438 l 86.33205,0 c 0.73273,0 1.3147,-0.5949 1.3147,-1.3438 l 0,-5.3432 c 0,-0.7489 -0.56461,-1.31174 -1.3147,-1.31174 l -86.33205,0 z"
+       style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccscc"
+       id="rect3649-4-0"
+       d="m 255.16888,1026.9789 108.16885,0 c 2.06037,0 2.06037,5 0,5 0,0 -108.16885,0 -108.16885,0 l 0,-5 z"
+       style="fill:#5a5148;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       transform="translate(9.99996,-16.42798)" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-98-8"
+       d="m 272.94169,972.87186 c -0.75747,0 -1.32762,0.66535 -1.32762,1.55067 l 0,6.31613 c 0,0.88531 0.5877,1.58848 1.32762,1.58848 l 87.18022,0 c 0.73992,0 1.32763,-0.70317 1.32763,-1.58848 l 0,-6.31613 c 0,-0.88532 -0.57015,-1.55067 -1.32763,-1.55067 l -87.18022,0 z"
+       style="fill:#1682d2;fill-opacity:1;fill-rule:nonzero;stroke:#1728c5;stroke-width:1.09489703;stroke-opacity:1" />
+    <rect
+       style="color:#000000;fill:#c8cbc5;fill-opacity:0.94117647000000004;fill-rule:nonzero;stroke:#555852;stroke-width:1.678;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="rect7287"
+       width="89.320679"
+       height="61.336727"
+       x="272.44516"
+       y="910.401"
+       rx="5.2659473"
+       ry="4.0139222" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc"
+       id="rect6562-2"
+       d="m 268.6993,1002.8906 95.20194,0 c 4.39903,0 4.39903,8 0,8 l -95.20194,0 c -4.39903,0 -4.39903,-8 0,-8 z"
+       style="fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc"
+       id="path7329-0"
+       d="m 268.30027,1003.8906 c -3,0 -3,6 0,6 9,0 88,0 96,0 3,0 3,-6 0,-6 -8,0 -87,0 -96,0 z"
+       style="fill:#ef292a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3167-4-0-1"
+       d="m 312.17184,1018.515 c 0,9.665 -7.83501,17.5 -17.5,17.5 -9.66498,0 -17.5,-7.835 -17.5,-17.5 0,-9.665 7.83502,-17.5 17.5,-17.5 9.66499,0 17.5,7.835 17.5,17.5 z"
+       style="fill:#d69600;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-28-2"
+       d="m 294.67184,1003.7056 c -8.2107,0 -14.80937,6.5987 -14.80937,14.8094 0,8.2107 6.59867,14.8094 14.80937,14.8094 8.2107,0 14.80938,-6.5987 14.80938,-14.8094 0,-8.2107 -6.59868,-14.8094 -14.80938,-14.8094 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-6-5"
+       d="m 294.67184,1012.215 c -3.61316,0 -6.3,2.6869 -6.3,6.3 0,3.6132 2.68684,6.3 6.3,6.3 3.61317,0 6.3,-2.6868 6.3,-6.3 0,-3.6131 -2.68683,-6.3 -6.3,-6.3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-2-0-2"
+       d="m 295.22815,1027.4221 c 4.10172,0 7.3997,-3.2979 7.3997,-7.3997 0,-0.4364 -0.0533,-0.8649 -0.12489,-1.2801 -0.18985,4.4324 -3.80842,7.9461 -8.28954,7.9461 -1.22529,0 -2.37433,-0.2779 -3.41885,-0.7493 1.23414,0.9227 2.76555,1.483 4.43358,1.483 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-1-8-5"
+       d="m 294.67184,1017.5053 c -0.57907,0 -1.00969,0.4307 -1.00969,1.0097 0,0.5791 0.43062,1.0097 1.00969,1.0097 0.57908,0 1.00969,-0.4306 1.00969,-1.0097 0,-0.579 -0.43061,-1.0097 -1.00969,-1.0097 z"
+       style="fill:#312c29;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-6-1"
+       d="m 292.8413,1006.6939 c -5.52798,0 -9.97274,4.4448 -9.97274,9.9728 0,0.5881 0.0718,1.1656 0.16832,1.7252 0.25587,-5.9736 5.13269,-10.7091 11.17199,-10.7091 1.65135,0 3.19994,0.3745 4.60766,1.0099 -1.66328,-1.2437 -3.72718,-1.9988 -5.97523,-1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-3-5-1"
+       d="m 295.30027,1030.8906 c 5.52798,0 9.97274,-4.4448 9.97274,-9.9727 0,-0.5882 -0.0718,-1.1657 -0.16832,-1.7253 -0.25587,5.9736 -5.13269,10.7091 -11.17199,10.7091 -1.65135,0 -3.19993,-0.3745 -4.60766,-1.0099 1.66328,1.2437 3.72719,1.9988 5.97523,1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-0-8"
+       d="m 293.68772,1009.7687 c -4.10173,0 -7.39971,3.298 -7.39971,7.3997 0,0.4365 0.0532,0.865 0.12489,1.2802 0.18985,-4.4324 3.80842,-7.9461 8.28954,-7.9461 1.22529,0 2.37433,0.2778 3.41885,0.7493 -1.23414,-0.9228 -2.76554,-1.4831 -4.43357,-1.4831 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3167-4-0-0-2"
+       d="m 357.17184,1018.515 c 0,9.665 -7.83501,17.5 -17.5,17.5 -9.66498,0 -17.5,-7.835 -17.5,-17.5 0,-9.665 7.83502,-17.5 17.5,-17.5 9.66499,0 17.5,7.835 17.5,17.5 z"
+       style="fill:#d69600;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-28-0-1"
+       d="m 339.67184,1003.7056 c -8.2107,0 -14.80937,6.5987 -14.80937,14.8094 0,8.2107 6.59867,14.8094 14.80937,14.8094 8.2107,0 14.80938,-6.5987 14.80938,-14.8094 0,-8.2107 -6.59868,-14.8094 -14.80938,-14.8094 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-6-6-9"
+       d="m 339.67184,1012.215 c -3.61316,0 -6.3,2.6869 -6.3,6.3 0,3.6132 2.68684,6.3 6.3,6.3 3.61317,0 6.3,-2.6868 6.3,-6.3 0,-3.6131 -2.68683,-6.3 -6.3,-6.3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-2-0-1-4"
+       d="m 340.22815,1027.4221 c 4.10172,0 7.3997,-3.2979 7.3997,-7.3997 0,-0.4364 -0.0533,-0.8649 -0.12489,-1.2801 -0.18985,4.4324 -3.80842,7.9461 -8.28954,7.9461 -1.22529,0 -2.37433,-0.2779 -3.41885,-0.7493 1.23414,0.9227 2.76555,1.483 4.43358,1.483 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-1-8-3-8"
+       d="m 339.67184,1017.5053 c -0.57907,0 -1.00969,0.4307 -1.00969,1.0097 0,0.5791 0.43062,1.0097 1.00969,1.0097 0.57908,0 1.00969,-0.4306 1.00969,-1.0097 0,-0.579 -0.43061,-1.0097 -1.00969,-1.0097 z"
+       style="fill:#312c29;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-6-8-9"
+       d="m 337.8413,1006.6939 c -5.52798,0 -9.97274,4.4448 -9.97274,9.9728 0,0.5881 0.0718,1.1656 0.16832,1.7252 0.25587,-5.9736 5.13269,-10.7091 11.17199,-10.7091 1.65135,0 3.19994,0.3745 4.60766,1.0099 -1.66328,-1.2437 -3.72718,-1.9988 -5.97523,-1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-3-5-9-0"
+       d="m 340.30027,1030.8906 c 5.52798,0 9.97274,-4.4448 9.97274,-9.9727 0,-0.5882 -0.0718,-1.1657 -0.16832,-1.7253 -0.25587,5.9736 -5.13269,10.7091 -11.17199,10.7091 -1.65135,0 -3.19993,-0.3745 -4.60766,-1.0099 1.66328,1.2437 3.72719,1.9988 5.97523,1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-0-3-1"
+       d="m 338.68772,1009.7687 c -4.10173,0 -7.39971,3.298 -7.39971,7.3997 0,0.4365 0.0532,0.865 0.12489,1.2802 0.18985,-4.4324 3.80842,-7.9461 8.28954,-7.9461 1.22529,0 2.37433,0.2778 3.41885,0.7493 -1.23414,-0.9228 -2.76554,-1.4831 -4.43357,-1.4831 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3651-8-4"
+       d="m 371.86361,1008.44 8,0 c 1.662,0 3,1.338 3,3 l 0,3 c 0,1.662 -1.338,3 -3,3 l -8,0 c -1.662,0 -3,-1.338 -3,-3 l 0,-3 c 0,-1.662 1.338,-3 3,-3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-3-5"
+       d="m 316.41139,967.76062 2.95843,0 c 0.63398,0 1.14437,1.06997 1.14437,2.39903 l 0,40.20195 c 0,1.329 -0.51039,2.399 -1.14437,2.399 l -2.95843,0 c -0.63399,0 -1.14438,-1.07 -1.14438,-2.399 l 0,-40.20195 c 0,-1.32906 0.51039,-2.39903 1.14438,-2.39903 z"
+       style="fill:#d0a239;fill-opacity:1;fill-rule:nonzero;stroke:#ff8f0d;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+  </g>
+</svg>
diff --git a/src/click_on_letter-activity/resources/click_on_letter/carriage_on.svg b/src/click_on_letter-activity/resources/click_on_letter/carriage_on.svg
new file mode 100644
index 0000000..41a24fd
--- /dev/null
+++ b/src/click_on_letter-activity/resources/click_on_letter/carriage_on.svg
@@ -0,0 +1,225 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   id="svg6438"
+   version="1.1"
+   inkscape:version="0.48.1 r9760"
+   width="117.69477"
+   height="126.24837"
+   sodipodi:docname="carriage.svg">
+  <metadata
+     id="metadata6444">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6442" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="948"
+     inkscape:window-height="780"
+     id="namedview6440"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="3.5625"
+     inkscape:cx="45.693853"
+     inkscape:cy="51.854176"
+     inkscape:window-x="475"
+     inkscape:window-y="24"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g6575"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <g
+     transform="translate(-265.16884,-909.76663)"
+     id="g6575">
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-98"
+       d="m 293.28818,963.89058 3.02417,0 c 1.32906,0 2.39902,1.06997 2.39902,2.39903 l 0,38.20199 c 0,1.329 -1.06996,2.399 -2.39902,2.399 l -3.02417,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-38.20199 c 0,-1.32906 1.06997,-2.39903 2.39903,-2.39903 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-4-0-4"
+       d="m 293.30027,963.89058 c -1.32906,0 -2.40625,1.07719 -2.40625,2.40625 l 0,38.18747 c 0,1.0799 0.70974,1.9784 1.6875,2.2813 -0.37394,-0.4228 -0.625,-0.9823 -0.625,-1.5938 l 0,-38.18747 c 0,-1.32906 1.07719,-2.40625 2.40625,-2.40625 l 3.03125,0 c 0.25437,0 0.48905,0.0523 0.71875,0.125 -0.439,-0.49899 -1.09259,-0.8125 -1.8125,-0.8125 l -3,0 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-9-2"
+       d="m 337.87708,963.89058 3.02416,0 c 1.32907,0 2.39903,1.06997 2.39903,2.39903 l 0,38.20199 c 0,1.329 -1.06996,2.399 -2.39903,2.399 l -3.02416,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-38.20199 c 0,-1.32906 1.06997,-2.39903 2.39903,-2.39903 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-1-4-0-7-7"
+       d="m 337.8843,963.89058 c -1.32906,0 -2.40625,1.07719 -2.40625,2.40625 l 0,38.18747 c 0,1.0799 0.70974,1.9784 1.6875,2.2813 -0.37394,-0.4228 -0.625,-0.9823 -0.625,-1.5938 l 0,-38.18747 c 0,-1.32906 1.07719,-2.40625 2.40625,-2.40625 l 3.03125,0 c 0.25437,0 0.48905,0.0523 0.71875,0.125 -0.439,-0.49899 -1.09259,-0.8125 -1.8125,-0.8125 l -3,0 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6562-63-4"
+       d="m 273.6993,992.89059 86.20194,0 c 1.32906,0 2.39903,1.07 2.39903,2.399 l 0,5.20201 c 0,1.329 -1.06997,2.399 -2.39903,2.399 l -86.20194,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-5.20201 c 0,-1.329 1.06997,-2.399 2.39903,-2.399 z"
+       style="fill:#5c3566;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-1"
+       d="m 273.72039,993.98429 c -0.74884,0 -1.3125,0.5498 -1.3125,1.2813 l 0,5.21871 c 0,0.7315 0.581,1.3125 1.3125,1.3125 l 86.1875,0 c 0.7315,0 1.3125,-0.581 1.3125,-1.3125 l 0,-5.21871 c 0,-0.7315 -0.56366,-1.2813 -1.3125,-1.2813 l -86.1875,0 z"
+       style="fill:#75507b;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6562-63-2-8"
+       d="m 273.6993,982.89058 86.20194,0 c 1.32906,0 2.39903,1.07001 2.39903,2.39901 l 0,5.202 c 0,1.329 -1.06997,2.399 -2.39903,2.399 l -86.20194,0 c -1.32906,0 -2.39903,-1.07 -2.39903,-2.399 l 0,-5.202 c 0,-1.329 1.06997,-2.39901 2.39903,-2.39901 z"
+       style="fill:#ce5c00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-9-4"
+       d="m 273.63217,983.89055 c -0.75009,0 -1.3147,0.56284 -1.3147,1.31174 l 0,5.3432 c 0,0.7489 0.58198,1.3438 1.3147,1.3438 l 86.33205,0 c 0.73273,0 1.3147,-0.5949 1.3147,-1.3438 l 0,-5.3432 c 0,-0.7489 -0.56461,-1.31174 -1.3147,-1.31174 l -86.33205,0 z"
+       style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccscc"
+       id="rect3649-4-0"
+       d="m 255.16888,1026.9789 108.16885,0 c 2.06037,0 2.06037,5 0,5 0,0 -108.16885,0 -108.16885,0 l 0,-5 z"
+       style="fill:#5a5148;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       transform="translate(9.99996,-16.42798)" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path7072-98-8"
+       d="m 272.94169,972.87186 c -0.75747,0 -1.32762,0.66535 -1.32762,1.55067 l 0,6.31613 c 0,0.88531 0.5877,1.58848 1.32762,1.58848 l 87.18022,0 c 0.73992,0 1.32763,-0.70317 1.32763,-1.58848 l 0,-6.31613 c 0,-0.88532 -0.57015,-1.55067 -1.32763,-1.55067 l -87.18022,0 z"
+       style="fill:#1682d2;fill-opacity:1;fill-rule:nonzero;stroke:#1728c5;stroke-width:1.09489703;stroke-opacity:1" />
+    <rect
+       style="color:#000000;fill:#d9f869;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#555852;stroke-width:1.67799999999999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="rect7287"
+       width="89.320679"
+       height="61.336727"
+       x="272.44516"
+       y="910.401"
+       rx="5.2659473"
+       ry="4.0139222" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc"
+       id="rect6562-2"
+       d="m 268.6993,1002.8906 95.20194,0 c 4.39903,0 4.39903,8 0,8 l -95.20194,0 c -4.39903,0 -4.39903,-8 0,-8 z"
+       style="fill:#a40000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc"
+       id="path7329-0"
+       d="m 268.30027,1003.8906 c -3,0 -3,6 0,6 9,0 88,0 96,0 3,0 3,-6 0,-6 -8,0 -87,0 -96,0 z"
+       style="fill:#ef292a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3167-4-0-1"
+       d="m 312.17184,1018.515 c 0,9.665 -7.83501,17.5 -17.5,17.5 -9.66498,0 -17.5,-7.835 -17.5,-17.5 0,-9.665 7.83502,-17.5 17.5,-17.5 9.66499,0 17.5,7.835 17.5,17.5 z"
+       style="fill:#d69600;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-28-2"
+       d="m 294.67184,1003.7056 c -8.2107,0 -14.80937,6.5987 -14.80937,14.8094 0,8.2107 6.59867,14.8094 14.80937,14.8094 8.2107,0 14.80938,-6.5987 14.80938,-14.8094 0,-8.2107 -6.59868,-14.8094 -14.80938,-14.8094 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-6-5"
+       d="m 294.67184,1012.215 c -3.61316,0 -6.3,2.6869 -6.3,6.3 0,3.6132 2.68684,6.3 6.3,6.3 3.61317,0 6.3,-2.6868 6.3,-6.3 0,-3.6131 -2.68683,-6.3 -6.3,-6.3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-2-0-2"
+       d="m 295.22815,1027.4221 c 4.10172,0 7.3997,-3.2979 7.3997,-7.3997 0,-0.4364 -0.0533,-0.8649 -0.12489,-1.2801 -0.18985,4.4324 -3.80842,7.9461 -8.28954,7.9461 -1.22529,0 -2.37433,-0.2779 -3.41885,-0.7493 1.23414,0.9227 2.76555,1.483 4.43358,1.483 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-1-8-5"
+       d="m 294.67184,1017.5053 c -0.57907,0 -1.00969,0.4307 -1.00969,1.0097 0,0.5791 0.43062,1.0097 1.00969,1.0097 0.57908,0 1.00969,-0.4306 1.00969,-1.0097 0,-0.579 -0.43061,-1.0097 -1.00969,-1.0097 z"
+       style="fill:#312c29;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-6-1"
+       d="m 292.8413,1006.6939 c -5.52798,0 -9.97274,4.4448 -9.97274,9.9728 0,0.5881 0.0718,1.1656 0.16832,1.7252 0.25587,-5.9736 5.13269,-10.7091 11.17199,-10.7091 1.65135,0 3.19994,0.3745 4.60766,1.0099 -1.66328,-1.2437 -3.72718,-1.9988 -5.97523,-1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-3-5-1"
+       d="m 295.30027,1030.8906 c 5.52798,0 9.97274,-4.4448 9.97274,-9.9727 0,-0.5882 -0.0718,-1.1657 -0.16832,-1.7253 -0.25587,5.9736 -5.13269,10.7091 -11.17199,10.7091 -1.65135,0 -3.19993,-0.3745 -4.60766,-1.0099 1.66328,1.2437 3.72719,1.9988 5.97523,1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-0-8"
+       d="m 293.68772,1009.7687 c -4.10173,0 -7.39971,3.298 -7.39971,7.3997 0,0.4365 0.0532,0.865 0.12489,1.2802 0.18985,-4.4324 3.80842,-7.9461 8.28954,-7.9461 1.22529,0 2.37433,0.2778 3.41885,0.7493 -1.23414,-0.9228 -2.76554,-1.4831 -4.43357,-1.4831 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3167-4-0-0-2"
+       d="m 357.17184,1018.515 c 0,9.665 -7.83501,17.5 -17.5,17.5 -9.66498,0 -17.5,-7.835 -17.5,-17.5 0,-9.665 7.83502,-17.5 17.5,-17.5 9.66499,0 17.5,7.835 17.5,17.5 z"
+       style="fill:#d69600;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-28-0-1"
+       d="m 339.67184,1003.7056 c -8.2107,0 -14.80937,6.5987 -14.80937,14.8094 0,8.2107 6.59867,14.8094 14.80937,14.8094 8.2107,0 14.80938,-6.5987 14.80938,-14.8094 0,-8.2107 -6.59868,-14.8094 -14.80938,-14.8094 z"
+       style="fill:#ffd543;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-6-6-9"
+       d="m 339.67184,1012.215 c -3.61316,0 -6.3,2.6869 -6.3,6.3 0,3.6132 2.68684,6.3 6.3,6.3 3.61317,0 6.3,-2.6868 6.3,-6.3 0,-3.6131 -2.68683,-6.3 -6.3,-6.3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-2-0-1-4"
+       d="m 340.22815,1027.4221 c 4.10172,0 7.3997,-3.2979 7.3997,-7.3997 0,-0.4364 -0.0533,-0.8649 -0.12489,-1.2801 -0.18985,4.4324 -3.80842,7.9461 -8.28954,7.9461 -1.22529,0 -2.37433,-0.2779 -3.41885,-0.7493 1.23414,0.9227 2.76555,1.483 4.43358,1.483 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-2-1-8-3-8"
+       d="m 339.67184,1017.5053 c -0.57907,0 -1.00969,0.4307 -1.00969,1.0097 0,0.5791 0.43062,1.0097 1.00969,1.0097 0.57908,0 1.00969,-0.4306 1.00969,-1.0097 0,-0.579 -0.43061,-1.0097 -1.00969,-1.0097 z"
+       style="fill:#312c29;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-6-8-9"
+       d="m 337.8413,1006.6939 c -5.52798,0 -9.97274,4.4448 -9.97274,9.9728 0,0.5881 0.0718,1.1656 0.16832,1.7252 0.25587,-5.9736 5.13269,-10.7091 11.17199,-10.7091 1.65135,0 3.19994,0.3745 4.60766,1.0099 -1.66328,-1.2437 -3.72718,-1.9988 -5.97523,-1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-3-5-9-0"
+       d="m 340.30027,1030.8906 c 5.52798,0 9.97274,-4.4448 9.97274,-9.9727 0,-0.5882 -0.0718,-1.1657 -0.16832,-1.7253 -0.25587,5.9736 -5.13269,10.7091 -11.17199,10.7091 -1.65135,0 -3.19993,-0.3745 -4.60766,-1.0099 1.66328,1.2437 3.72719,1.9988 5.97523,1.9988 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3260-1-4-0-3-1"
+       d="m 338.68772,1009.7687 c -4.10173,0 -7.39971,3.298 -7.39971,7.3997 0,0.4365 0.0532,0.865 0.12489,1.2802 0.18985,-4.4324 3.80842,-7.9461 8.28954,-7.9461 1.22529,0 2.37433,0.2778 3.41885,0.7493 -1.23414,-0.9228 -2.76554,-1.4831 -4.43357,-1.4831 z"
+       style="fill:#ffe791;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect3651-8-4"
+       d="m 371.86361,1008.44 8,0 c 1.662,0 3,1.338 3,3 l 0,3 c 0,1.662 -1.338,3 -3,3 l -8,0 c -1.662,0 -3,-1.338 -3,-3 l 0,-3 c 0,-1.662 1.338,-3 3,-3 z"
+       style="fill:#8d7c6a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       inkscape:connector-curvature="0"
+       id="rect6969-3-5"
+       d="m 316.41139,967.76062 2.95843,0 c 0.63398,0 1.14437,1.06997 1.14437,2.39903 l 0,40.20195 c 0,1.329 -0.51039,2.399 -1.14437,2.399 l -2.95843,0 c -0.63399,0 -1.14438,-1.07 -1.14438,-2.399 l 0,-40.20195 c 0,-1.32906 0.51039,-2.39903 1.14438,-2.39903 z"
+       style="fill:#d0a239;fill-opacity:1;fill-rule:nonzero;stroke:#ff8f0d;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+  </g>
+</svg>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]