mirror of
https://github.com/brl/mutter.git
synced 2024-11-30 03:50:47 -05:00
docs: Fixes for the API reference
This commit is contained in:
parent
767b14fb2d
commit
28266a59ed
@ -341,11 +341,11 @@ struct _ClutterStageStateEvent
|
|||||||
* @source: event source actor (unused)
|
* @source: event source actor (unused)
|
||||||
* @x: the X coordinate of the pointer, relative to the stage
|
* @x: the X coordinate of the pointer, relative to the stage
|
||||||
* @y: the Y coordinate of the pointer, relative to the stage
|
* @y: the Y coordinate of the pointer, relative to the stage
|
||||||
* @axes: @x and @y, translated to the axes of @device, or %NULL
|
* @sequence: the event sequence that this event belongs to
|
||||||
* @state: (type ClutterModifierType): a bit-mask representing the state
|
* @modifier_state: (type ClutterModifierType): a bit-mask representing the state
|
||||||
* of modifier keys (e.g. Control, Shift, and Alt) and the pointer
|
* of modifier keys (e.g. Control, Shift, and Alt) and the pointer
|
||||||
* buttons. See #ClutterModifierType
|
* buttons. See #ClutterModifierType
|
||||||
* @sequence: the event sequence that this event belongs to
|
* @axes: reserved
|
||||||
* @device: the device that originated the event
|
* @device: the device that originated the event
|
||||||
*
|
*
|
||||||
* Used for touch events.
|
* Used for touch events.
|
||||||
@ -373,10 +373,9 @@ struct _ClutterTouchEvent
|
|||||||
|
|
||||||
gfloat x;
|
gfloat x;
|
||||||
gfloat y;
|
gfloat y;
|
||||||
guint state;
|
|
||||||
ClutterEventSequence *sequence;
|
ClutterEventSequence *sequence;
|
||||||
ClutterModifierType modifier_state;
|
ClutterModifierType modifier_state;
|
||||||
gdouble *axes;
|
gdouble *axes; /* reserved */
|
||||||
ClutterInputDevice *device;
|
ClutterInputDevice *device;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1123,6 +1123,8 @@ ClutterMotionEvent
|
|||||||
ClutterScrollEvent
|
ClutterScrollEvent
|
||||||
ClutterStageStateEvent
|
ClutterStageStateEvent
|
||||||
ClutterCrossingEvent
|
ClutterCrossingEvent
|
||||||
|
ClutterTouchEvent
|
||||||
|
ClutterEventSequence
|
||||||
clutter_event_new
|
clutter_event_new
|
||||||
clutter_event_copy
|
clutter_event_copy
|
||||||
clutter_event_free
|
clutter_event_free
|
||||||
@ -1142,6 +1144,7 @@ clutter_event_get_stage
|
|||||||
clutter_event_set_flags
|
clutter_event_set_flags
|
||||||
clutter_event_get_flags
|
clutter_event_get_flags
|
||||||
clutter_event_get_axes
|
clutter_event_get_axes
|
||||||
|
clutter_event_get_event_sequence
|
||||||
|
|
||||||
<SUBSECTION>
|
<SUBSECTION>
|
||||||
clutter_event_get
|
clutter_event_get
|
||||||
@ -1174,6 +1177,8 @@ clutter_event_get_related
|
|||||||
<SUBSECTION>
|
<SUBSECTION>
|
||||||
clutter_event_set_scroll_direction
|
clutter_event_set_scroll_direction
|
||||||
clutter_event_get_scroll_direction
|
clutter_event_get_scroll_direction
|
||||||
|
clutter_event_get_scroll_delta
|
||||||
|
clutter_event_set_scroll_delta
|
||||||
|
|
||||||
<SUBSECTION>
|
<SUBSECTION>
|
||||||
clutter_event_set_device
|
clutter_event_set_device
|
||||||
|
Loading…
Reference in New Issue
Block a user