Skip to content

API Reference / @gtkx/testing / queryAllControllers

Variable: queryAllControllers

const queryAllControllers: <T>(widget, controllerType) => T[]

Defined in: packages/testing/dist/user-event/controller.d.ts:11

Returns every controller of the given type attached to a widget, in the order GTK4 reports them.

Type Parameters

T

T extends Gtk.EventController

Parameters

widget

Gtk.Widget

The widget whose controllers are inspected.

controllerType

ControllerConstructor<T>

The controller class to match.

Returns

T[]

The matching controllers, or an empty array when the widget has none.

Released under the MPL-2.0 License.