Package ch.bailu.gtk.gtk
Interface WidgetClass.OnWidgetActionActivateFunc
- Enclosing class:
- WidgetClass
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onWidgetActionActivateFunc
(CallbackHandler __self, Widget widget, Str action_name, Variant parameter) The type of the callback functions used for activating
actions installed with gtk_widget_class_install_action().
-
Method Details
-
onWidgetActionActivateFunc
void onWidgetActionActivateFunc(CallbackHandler __self, @Nonnull Widget widget, @Nonnull Str action_name, @Nonnull Variant parameter) The type of the callback functions used for activating
actions installed with gtk_widget_class_install_action().
The @parameter must match the @parameter_type of the action.- Parameters:
widget
- the widget to which the action belongsaction_name
- the action nameparameter
- parameter for activation
-