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

« back to all changes in this revision

Viewing changes to clutter/clutter-script.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:
93
93
 * Since: 0.6
94
94
 */
95
95
#define CLUTTER_SCRIPT_ERROR    (clutter_script_error_quark ())
 
96
CLUTTER_AVAILABLE_IN_ALL
96
97
GQuark clutter_script_error_quark (void);
97
98
 
98
99
/**
143
144
  void (*_clutter_reserved8) (void);
144
145
};
145
146
 
 
147
CLUTTER_AVAILABLE_IN_ALL
146
148
GType clutter_script_get_type (void) G_GNUC_CONST;
147
149
 
 
150
CLUTTER_AVAILABLE_IN_ALL
148
151
ClutterScript * clutter_script_new                      (void);
 
152
CLUTTER_AVAILABLE_IN_ALL
149
153
guint           clutter_script_load_from_file           (ClutterScript             *script,
150
154
                                                         const gchar               *filename,
151
155
                                                         GError                   **error);
 
156
CLUTTER_AVAILABLE_IN_ALL
152
157
guint           clutter_script_load_from_data           (ClutterScript             *script,
153
158
                                                         const gchar               *data,
154
159
                                                         gssize                     length,
158
163
                                                         const gchar               *resource_path,
159
164
                                                         GError                   **error);
160
165
 
 
166
CLUTTER_AVAILABLE_IN_ALL
161
167
GObject *       clutter_script_get_object               (ClutterScript             *script,
162
168
                                                         const gchar               *name);
 
169
CLUTTER_AVAILABLE_IN_ALL
163
170
gint            clutter_script_get_objects              (ClutterScript             *script,
164
171
                                                         const gchar               *first_name,
165
172
                                                         ...) G_GNUC_NULL_TERMINATED;
 
173
CLUTTER_AVAILABLE_IN_ALL
166
174
GList *         clutter_script_list_objects             (ClutterScript             *script);
 
175
CLUTTER_AVAILABLE_IN_ALL
167
176
void            clutter_script_unmerge_objects          (ClutterScript             *script,
168
177
                                                         guint                      merge_id);
 
178
CLUTTER_AVAILABLE_IN_ALL
169
179
void            clutter_script_ensure_objects           (ClutterScript             *script);
170
180
 
171
181
CLUTTER_DEPRECATED_IN_1_12
177
187
ClutterState *  clutter_script_get_states               (ClutterScript             *script,
178
188
                                                         const gchar               *name);
179
189
 
 
190
CLUTTER_AVAILABLE_IN_ALL
180
191
void            clutter_script_connect_signals          (ClutterScript             *script,
181
192
                                                         gpointer                   user_data);
 
193
CLUTTER_AVAILABLE_IN_ALL
182
194
void            clutter_script_connect_signals_full     (ClutterScript             *script,
183
195
                                                         ClutterScriptConnectFunc   func,
184
196
                                                         gpointer                   user_data);
185
197
 
 
198
CLUTTER_AVAILABLE_IN_ALL
186
199
void            clutter_script_add_search_paths         (ClutterScript             *script,
187
200
                                                         const gchar * const        paths[],
188
201
                                                         gsize                      n_paths);
 
202
CLUTTER_AVAILABLE_IN_ALL
189
203
gchar *         clutter_script_lookup_filename          (ClutterScript             *script,
190
204
                                                         const gchar               *filename) G_GNUC_MALLOC;
 
205
CLUTTER_AVAILABLE_IN_ALL
191
206
GType           clutter_script_get_type_from_name       (ClutterScript             *script,
192
207
                                                         const gchar               *type_name);
193
208
 
197
212
CLUTTER_AVAILABLE_IN_1_10
198
213
const gchar *   clutter_script_get_translation_domain   (ClutterScript             *script);
199
214
 
 
215
CLUTTER_AVAILABLE_IN_ALL
200
216
const gchar *   clutter_get_script_id                   (GObject                   *gobject);
201
217
 
202
218
G_END_DECLS