Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gtk
Commits
48367b14
Commit
48367b14
authored
Apr 09, 2014
by
Carlos Garnacho
Browse files
enums: Add missing docs to controller/gesture enums
parent
d768c2cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/gtkenums.h
View file @
48367b14
...
...
@@ -1074,6 +1074,16 @@ typedef enum
GTK_PHASE_BUBBLE
}
GtkPropagationPhase
;
/**
* GtkEventSequenceState:
* @GTK_EVENT_SEQUENCE_NONE: The sequence is handled, but not grabbed.
* @GTK_EVENT_SEQUENCE_CLAIMED: The sequence is handled and grabbed.
* @GTK_EVENT_SEQUENCE_DENIED: The sequence is denied.
*
* Describes the state of a #GdkEventSequence in a #GtkGesture.
*
* Since: 3.14
*/
typedef
enum
{
GTK_EVENT_SEQUENCE_NONE
,
...
...
@@ -1081,6 +1091,17 @@ typedef enum
GTK_EVENT_SEQUENCE_DENIED
}
GtkEventSequenceState
;
/**
* GtkPanDirection:
* @GTK_PAN_DIRECTION_LEFT: panned towards the left
* @GTK_PAN_DIRECTION_RIGHT: panned towards the right
* @GTK_PAN_DIRECTION_UP: panned upwards
* @GTK_PAN_DIRECTION_DOWN: panned downwards
*
* Describes the panning direction of a #GtkGesturePan
*
* Since: 3.14
*/
typedef
enum
{
GTK_PAN_DIRECTION_LEFT
,
...
...
@@ -1089,6 +1110,15 @@ typedef enum
GTK_PAN_DIRECTION_DOWN
}
GtkPanDirection
;
/**
* GtkPanOrientation:
* @GTK_PAN_ORIENTATION_VERTICAL: vertical panning allowed
* @GTK_PAN_ORIENTATION_HORIZONTAL: horizontal panning allowed
*
* Describes the panning axis of a #GtkGesturePan
*
* Since: 3.14
*/
typedef
enum
{
GTK_PAN_ORIENTATION_VERTICAL
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment