~ubuntu-branches/ubuntu/vivid/clutter-1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to doc/cookbook/examples/script-signals.json

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2014-03-26 11:51:28 UTC
  • mfrom: (1.5.1) (4.1.30 experimental)
  • Revision ID: package-import@ubuntu.com-20140326115128-timmbsde8734o6wz
Tags: 1.18.0-1
* New upstream release.
* debian/control.in:
  + Bump gtk-doc-tools build dependency.
  + Also break libcogl15.
  + Standards-Version is 3.9.5, no changes needed.
* debian/libclutter-1.0-0.symbols:
  + Drop a few symbols that were accidentally exported in the DSO because
    they had a clutter_ prefix but were not in the public headers.
  + Add one new symbol.
  + Drop unnecessary debian revisions from some symbols.
* debian/control.in,
  debian/rules,
  debian/libclutter-1.0-0.symbols:
  + Temporarily disable evdev input support. It was only enabled in 1.17.6-1
    in experimental and there is nothing using it yet, and I would like to
    wait a bit before uploading libinput to unstable as the ABI isn't stable
    yet.
* d/p/0001-wayland-Add-missing-CLUTTER_AVAILABLE-annotations.patch:
  + Add missing annotations so that a few symbols are exported in the DSO.

* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[
 
2
  {
 
3
    "id" : "stage",
 
4
    "type" : "ClutterStage",
 
5
    "width" : 300,
 
6
    "height" : 300,
 
7
    "color" : "#335",
 
8
 
 
9
    "signals" : [
 
10
      { "name" : "destroy", "handler" : "clutter_main_quit" }
 
11
    ],
 
12
 
 
13
    "children" : [ "rectangle" ]
 
14
  },
 
15
 
 
16
  {
 
17
    "id" : "rectangle",
 
18
    "type" : "ClutterRectangle",
 
19
    "width" : 200,
 
20
    "height" : 200,
 
21
    "x" : 50,
 
22
    "y" : 50,
 
23
    "color" : "#a90",
 
24
    "rotation-center-z-gravity" : "center",
 
25
    "reactive" : true,
 
26
 
 
27
    "signals" : [
 
28
      { "name" : "motion-event", "handler" : "foo_pointer_motion_cb" }
 
29
    ],
 
30
 
 
31
    "actions" : [
 
32
      {
 
33
        "type" : "ClutterClickAction",
 
34
        "signals" : [
 
35
          { "name" : "clicked", "handler" : "foo_button_clicked_cb" }
 
36
        ]
 
37
      }
 
38
    ]
 
39
  }
 
40
]