forked from AuroraMiddleware/gtk
Fix up version annotations
The new api here was introduced in 3.24.
This commit is contained in:
parent
ee22277f18
commit
affb4ff5f4
@ -232,7 +232,7 @@ gtk_event_controller_key_set_im_context (GtkEventControllerKey *controller,
|
||||
*
|
||||
* Returns: (transfer none): the IM context
|
||||
*
|
||||
* Since: 3.94
|
||||
* Since: 3.24
|
||||
**/
|
||||
GtkIMContext *
|
||||
gtk_event_controller_key_get_im_context (GtkEventControllerKey *controller)
|
||||
|
@ -26,7 +26,7 @@
|
||||
* #GtkEventControllerMotion is an event controller meant for situations
|
||||
* where you need to track the position of the pointer.
|
||||
*
|
||||
* This object was added in 3.94.
|
||||
* This object was added in 3.24.
|
||||
**/
|
||||
#include "config.h"
|
||||
|
||||
@ -156,7 +156,7 @@ gtk_event_controller_motion_init (GtkEventControllerMotion *motion)
|
||||
*
|
||||
* Returns: a new #GtkEventControllerMotion
|
||||
*
|
||||
* Since: 3.94
|
||||
* Since: 3.24
|
||||
**/
|
||||
GtkEventController *
|
||||
gtk_event_controller_motion_new (GtkWidget *widget)
|
||||
|
@ -56,7 +56,7 @@
|
||||
* with two X/Y velocity arguments that are consistent with the motion that
|
||||
* was received.
|
||||
*
|
||||
* This object was added in 3.93.
|
||||
* This object was added in 3.24.
|
||||
**/
|
||||
#include "config.h"
|
||||
|
||||
@ -367,7 +367,7 @@ gtk_event_controller_scroll_class_init (GtkEventControllerScrollClass *klass)
|
||||
*
|
||||
* The flags affecting event controller behavior
|
||||
*
|
||||
* Since: 3.93
|
||||
* Since: 3.24
|
||||
**/
|
||||
pspecs[PROP_FLAGS] =
|
||||
g_param_spec_flags ("flags",
|
||||
@ -461,7 +461,7 @@ gtk_event_controller_scroll_init (GtkEventControllerScroll *scroll)
|
||||
*
|
||||
* Returns: a new #GtkEventControllerScroll
|
||||
*
|
||||
* Since: 3.93
|
||||
* Since: 3.24
|
||||
**/
|
||||
GtkEventController *
|
||||
gtk_event_controller_scroll_new (GtkWidget *widget,
|
||||
@ -482,7 +482,7 @@ gtk_event_controller_scroll_new (GtkWidget *widget,
|
||||
*
|
||||
* Sets the flags conditioning scroll controller behavior.
|
||||
*
|
||||
* Since: 3.93
|
||||
* Since: 3.24
|
||||
**/
|
||||
void
|
||||
gtk_event_controller_scroll_set_flags (GtkEventControllerScroll *scroll,
|
||||
@ -505,7 +505,7 @@ gtk_event_controller_scroll_set_flags (GtkEventControllerScroll *scroll,
|
||||
*
|
||||
* Returns: the controller flags.
|
||||
*
|
||||
* Since: 3.93
|
||||
* Since: 3.24
|
||||
**/
|
||||
GtkEventControllerScrollFlags
|
||||
gtk_event_controller_scroll_get_flags (GtkEventControllerScroll *scroll)
|
||||
|
@ -51,7 +51,7 @@ typedef struct _GtkEventControllerScrollClass GtkEventControllerScrollClass;
|
||||
*
|
||||
* Describes the behavior of a #GtkEventControllerScroll.
|
||||
*
|
||||
* Since: 3.93
|
||||
* Since: 3.24
|
||||
**/
|
||||
typedef enum {
|
||||
GTK_EVENT_CONTROLLER_SCROLL_NONE = 0,
|
||||
|
@ -137,7 +137,7 @@ gtk_gesture_stylus_init (GtkGestureStylus *gesture)
|
||||
*
|
||||
* Returns: a newly created stylus gesture
|
||||
*
|
||||
* Since: 3.94
|
||||
* Since: 3.24
|
||||
**/
|
||||
GtkGesture *
|
||||
gtk_gesture_stylus_new (GtkWidget *widget)
|
||||
@ -170,7 +170,7 @@ gesture_get_current_event (GtkGestureStylus *gesture)
|
||||
*
|
||||
* Returns: #TRUE if there is a current value for the axis
|
||||
*
|
||||
* Since: 3.94
|
||||
* Since: 3.24
|
||||
**/
|
||||
gboolean
|
||||
gtk_gesture_stylus_get_axis (GtkGestureStylus *gesture,
|
||||
@ -202,6 +202,8 @@ gtk_gesture_stylus_get_axis (GtkGestureStylus *gesture,
|
||||
* signals.
|
||||
*
|
||||
* Returns: #TRUE if there is a current value for the axes
|
||||
*
|
||||
* Since: 3.24
|
||||
**/
|
||||
gboolean
|
||||
gtk_gesture_stylus_get_axes (GtkGestureStylus *gesture,
|
||||
@ -253,6 +255,8 @@ gtk_gesture_stylus_get_axes (GtkGestureStylus *gesture,
|
||||
* signals.
|
||||
*
|
||||
* Returns: (nullable) (transfer none): The current stylus tool
|
||||
*
|
||||
* Since: 3.24
|
||||
**/
|
||||
GdkDeviceTool *
|
||||
gtk_gesture_stylus_get_device_tool (GtkGestureStylus *gesture)
|
||||
|
@ -37,21 +37,21 @@ G_BEGIN_DECLS
|
||||
typedef struct _GtkGestureStylus GtkGestureStylus;
|
||||
typedef struct _GtkGestureStylusClass GtkGestureStylusClass;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_AVAILABLE_IN_3_24
|
||||
GType gtk_gesture_stylus_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_AVAILABLE_IN_3_24
|
||||
GtkGesture * gtk_gesture_stylus_new (GtkWidget *widget);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_AVAILABLE_IN_3_24
|
||||
gboolean gtk_gesture_stylus_get_axis (GtkGestureStylus *gesture,
|
||||
GdkAxisUse axis,
|
||||
gdouble *value);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_AVAILABLE_IN_3_24
|
||||
gboolean gtk_gesture_stylus_get_axes (GtkGestureStylus *gesture,
|
||||
GdkAxisUse axes[],
|
||||
gdouble **values);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_AVAILABLE_IN_3_24
|
||||
GdkDeviceTool * gtk_gesture_stylus_get_device_tool (GtkGestureStylus *gesture);
|
||||
|
||||
G_END_DECLS
|
||||
|
Loading…
Reference in New Issue
Block a user