Lines Matching full:widgets
72 This class provides method to create link that connects widgets.
74 widgets.
84 # Maps pair of widgets to widget link of different type.
147 """Creates a widget link for two audio widgets.
215 This class provides methods to create widgets and binder of widgets.
216 User can use binder to setup audio paths. User can use widgets to control
231 _link_factory: An AudioLinkFactory that creates link for widgets.
376 def create_binder(self, *widgets): argument
379 @param widgets: A list of widgets that should be linked in a chain.
381 @returns: A WidgetBinder for two widgets. A WidgetBinderChain object
382 for three or more widgets.
385 if len(widgets) == 2:
386 return self._create_widget_binder(widgets[0], widgets[1])
388 for index in range(len(widgets) - 1):
391 widgets[index], widgets[index + 1]))
400 Connects widgets in the beginning. Disconnects widgets and releases binder