Functions¶
|
|
|
|
|
|
|
|
Details¶
- Totem.get_plugin_paths()¶
-
Return a
None
-terminated array of paths to directories which can contain Totem plugins. This respects theGio.Settings
disable_user_plugins setting.New in version 2.90.0.
- Totem.get_resource()¶
- Return type:
- Totem.interface_create_header_button(header, button, icon_name, pack_type)¶
- Parameters:
header (
Gtk.Widget
) – The header widget to put the button inbutton (
Gtk.Widget
) – The button to use in the headericon_name (
str
) – The icon name for the button imagepack_type (
Gtk.PackType
) – AGtk.PackType
to tell us where to include the button
- Returns:
the button passed as input
- Return type:
Put the given icon_name into button, and pack button into header according to pack_type.
- Totem.interface_error(title, reason, parent)¶
- Parameters:
title (
str
) – the error titlereason (
str
) – the error reason (secondary text)parent (
Gtk.Window
) – the error dialogue’s parentGtk.Window
xlib.Display
a modal error dialogue with title as its primary error text, and reason as its secondary text.
- Totem.interface_error_blocking(title, reason, parent)¶
- Parameters:
title (
str
) – the error titlereason (
str
) – the error reason (secondary text)parent (
Gtk.Window
) – the error dialogue’s parentGtk.Window
xlib.Display
a modal error dialogue likeTotem.interface_error
() which blocks until the user has dismissed it.