summaryrefslogtreecommitdiff
path: root/gtk/gtkeventcontroller.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-02-05 20:13:20 +0100
committerMatthias Clasen <mclasen@redhat.com>2018-02-06 01:16:32 -0500
commit4c150d8eb518c35c484802e5cd7da572e4030f25 (patch)
tree8867f973fd6c9737b5d7f05d6945817f354a37e2 /gtk/gtkeventcontroller.c
parent2616e6857cc136c654b64dd16839ddf89f4b5c62 (diff)
downloadgtk+-4c150d8eb518c35c484802e5cd7da572e4030f25.tar.gz
The big versioning cleanup
Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
Diffstat (limited to 'gtk/gtkeventcontroller.c')
-rw-r--r--gtk/gtkeventcontroller.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gtk/gtkeventcontroller.c b/gtk/gtkeventcontroller.c
index 0d4f7a0727..38cf96a98d 100644
--- a/gtk/gtkeventcontroller.c
+++ b/gtk/gtkeventcontroller.c
@@ -160,8 +160,6 @@ gtk_event_controller_class_init (GtkEventControllerClass *klass)
* GtkEventController:widget:
*
* The widget receiving the #GdkEvents that the controller will handle.
- *
- * Since: 3.14
*/
properties[PROP_WIDGET] =
g_param_spec_object ("widget",
@@ -173,8 +171,6 @@ gtk_event_controller_class_init (GtkEventControllerClass *klass)
* GtkEventController:propagation-phase:
*
* The propagation phase at which this controller will handle events.
- *
- * Since: 3.14
*/
properties[PROP_PROPAGATION_PHASE] =
g_param_spec_enum ("propagation-phase",
@@ -206,8 +202,6 @@ gtk_event_controller_init (GtkEventController *controller)
*
* Returns: %TRUE if the event was potentially useful to trigger the
* controller action
- *
- * Since: 3.14
**/
gboolean
gtk_event_controller_handle_event (GtkEventController *controller,
@@ -241,8 +235,6 @@ gtk_event_controller_handle_event (GtkEventController *controller,
* Returns the #GtkWidget this controller relates to.
*
* Returns: (transfer none): a #GtkWidget
- *
- * Since: 3.14
**/
GtkWidget *
gtk_event_controller_get_widget (GtkEventController *controller)
@@ -263,8 +255,6 @@ gtk_event_controller_get_widget (GtkEventController *controller)
* Resets the @controller to a clean state. Every interaction
* the controller did through gtk_event_controll_handle_event()
* will be dropped at this point.
- *
- * Since: 3.14
**/
void
gtk_event_controller_reset (GtkEventController *controller)
@@ -286,8 +276,6 @@ gtk_event_controller_reset (GtkEventController *controller)
* Gets the propagation phase at which @controller handles events.
*
* Returns: the propagation phase
- *
- * Since: 3.14
**/
GtkPropagationPhase
gtk_event_controller_get_propagation_phase (GtkEventController *controller)
@@ -311,8 +299,6 @@ gtk_event_controller_get_propagation_phase (GtkEventController *controller)
* If @phase is %GTK_PHASE_NONE, no automatic event handling will be
* performed, but other additional gesture maintenance will. In that phase,
* the events can be managed by calling gtk_event_controller_handle_event().
- *
- * Since: 3.14
**/
void
gtk_event_controller_set_propagation_phase (GtkEventController *controller,