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

« back to all changes in this revision

Viewing changes to clutter/clutter-click-action.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:
51
51
/**
52
52
 * ClutterClickAction:
53
53
 *
54
 
 * The <structname>ClutterClickAction</structname> structure contains
 
54
 * The #ClutterClickAction structure contains
55
55
 * only private data and should be accessed using the provided API
56
56
 *
57
57
 * Since: 1.4
69
69
 * @clicked: class handler for the #ClutterClickAction::clicked signal
70
70
 * @long_press: class handler for the #ClutterClickAction::long-press signal
71
71
 *
72
 
 * The <structname>ClutterClickActionClass</structname> structure
 
72
 * The #ClutterClickActionClass structure
73
73
 * contains only private data
74
74
 *
75
75
 * Since: 1.4
97
97
  void (* _clutter_click_action7) (void);
98
98
};
99
99
 
 
100
CLUTTER_AVAILABLE_IN_1_4
100
101
GType clutter_click_action_get_type (void) G_GNUC_CONST;
101
102
 
 
103
CLUTTER_AVAILABLE_IN_1_4
102
104
ClutterAction *        clutter_click_action_new        (void);
103
105
 
 
106
CLUTTER_AVAILABLE_IN_1_4
104
107
guint                  clutter_click_action_get_button (ClutterClickAction *action);
 
108
CLUTTER_AVAILABLE_IN_1_4
105
109
ClutterModifierType    clutter_click_action_get_state  (ClutterClickAction *action);
 
110
CLUTTER_AVAILABLE_IN_1_8
106
111
void                   clutter_click_action_get_coords (ClutterClickAction *action,
107
112
                                                        gfloat             *press_x,
108
113
                                                        gfloat             *press_y);
109
114
 
 
115
CLUTTER_AVAILABLE_IN_1_4
110
116
void                   clutter_click_action_release    (ClutterClickAction *action);
111
117
 
112
118
G_END_DECLS