WoAB (Widgets on Actors Bridge) is a library for combining the widgets toolkit GTK with the actors framework Actix. It helps with:
Refer to the docs for more explanation on how to use WoAB, and to the examples for a short demonstration.
true
to "inhibit" and
not let the signal pass up the inheritance to other handlers, and false
to
let it. WoAB cannot automatically detect which signals need it and which not,
and will return None
by default. To set the value, use #[signal(inhibit =
...)]
on the signal variant in the BuilderSignal
derive macro or use the
inhibit()
method of BuilderConnector
.StreamHandler::finished
should be
overridden to avoid stopping the actor when one instance of the widgets is
removed!!!gtk::main()
in the same
scope) use the finish()
method of the builder connector.Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT))