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

« back to all changes in this revision

Viewing changes to clutter/clutter-binding-pool.h

  • 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:
71
71
                                               ClutterModifierType  modifiers,
72
72
                                               gpointer             user_data);
73
73
 
 
74
CLUTTER_AVAILABLE_IN_1_0
74
75
GType clutter_binding_pool_get_type (void) G_GNUC_CONST;
75
76
 
 
77
CLUTTER_AVAILABLE_IN_1_0
76
78
ClutterBindingPool *  clutter_binding_pool_new              (const gchar         *name);
 
79
CLUTTER_AVAILABLE_IN_1_0
77
80
ClutterBindingPool *  clutter_binding_pool_get_for_class    (gpointer             klass);
 
81
CLUTTER_AVAILABLE_IN_1_0
78
82
ClutterBindingPool *  clutter_binding_pool_find             (const gchar         *name);
79
83
 
 
84
CLUTTER_AVAILABLE_IN_1_0
80
85
void                  clutter_binding_pool_install_action   (ClutterBindingPool  *pool,
81
86
                                                             const gchar         *action_name,
82
87
                                                             guint                key_val,
84
89
                                                             GCallback            callback,
85
90
                                                             gpointer             data,
86
91
                                                             GDestroyNotify       notify);
 
92
CLUTTER_AVAILABLE_IN_1_0
87
93
void                  clutter_binding_pool_install_closure  (ClutterBindingPool  *pool,
88
94
                                                             const gchar         *action_name,
89
95
                                                             guint                key_val,
90
96
                                                             ClutterModifierType  modifiers,
91
97
                                                             GClosure            *closure);
 
98
CLUTTER_AVAILABLE_IN_1_0
92
99
void                  clutter_binding_pool_override_action  (ClutterBindingPool  *pool,
93
100
                                                             guint                key_val,
94
101
                                                             ClutterModifierType  modifiers,
95
102
                                                             GCallback            callback,
96
103
                                                             gpointer             data,
97
104
                                                             GDestroyNotify       notify);
 
105
CLUTTER_AVAILABLE_IN_1_0
98
106
void                  clutter_binding_pool_override_closure (ClutterBindingPool  *pool,
99
107
                                                             guint                key_val,
100
108
                                                             ClutterModifierType  modifiers,
101
109
                                                             GClosure            *closure);
102
110
 
 
111
CLUTTER_AVAILABLE_IN_1_0
103
112
const gchar *         clutter_binding_pool_find_action      (ClutterBindingPool  *pool,
104
113
                                                             guint                key_val,
105
114
                                                             ClutterModifierType  modifiers);
 
115
CLUTTER_AVAILABLE_IN_1_0
106
116
void                  clutter_binding_pool_remove_action    (ClutterBindingPool  *pool,
107
117
                                                             guint                key_val,
108
118
                                                             ClutterModifierType  modifiers);
109
119
 
 
120
CLUTTER_AVAILABLE_IN_1_0
110
121
gboolean              clutter_binding_pool_activate         (ClutterBindingPool  *pool,
111
122
                                                             guint                key_val,
112
123
                                                             ClutterModifierType  modifiers,
113
124
                                                             GObject             *gobject);
114
125
 
 
126
CLUTTER_AVAILABLE_IN_1_0
115
127
void                  clutter_binding_pool_block_action     (ClutterBindingPool  *pool,
116
128
                                                             const gchar         *action_name);
 
129
CLUTTER_AVAILABLE_IN_1_0
117
130
void                  clutter_binding_pool_unblock_action   (ClutterBindingPool  *pool,
118
131
                                                             const gchar         *action_name);
119
132