Thunarx.ProviderFactory¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
class |
|
|
Virtual Methods¶
- Inherited:
Properties¶
None
Signals¶
- Inherited:
Fields¶
- Inherited:
Class Details¶
- class Thunarx.ProviderFactory(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
- classmethod get_default()¶
- Returns:
a reference to the default
Thunarx.ProviderFactory
instance.- Return type:
Returns a reference to the default
Thunarx.ProviderFactory
instance.The caller is responsible to free the returned object using
GObject.Object.unref
() when no longer needed.
- list_providers(type)¶
- Parameters:
type (
GObject.GType
) – the providerGObject.GType
.- Returns:
the of providers for type.
- Return type:
Returns all providers of the given type.
The caller is responsible to release the returned list of providers using code like this:
g_list_free_full (list, g_object_unref);