Top | ![]() |
![]() |
![]() |
![]() |
GtkWidget * | e_shell_switcher_new () |
void | e_shell_switcher_add_action () |
GtkToolbarStyle | e_shell_switcher_get_style () |
void | e_shell_switcher_set_style () |
void | e_shell_switcher_unset_style () |
gboolean | e_shell_switcher_get_visible () |
void | e_shell_switcher_set_visible () |
GtkToolbarStyle | toolbar-style | Read / Write / Construct |
gboolean | toolbar-visible | Read / Write / Construct |
GObject ╰── GInitiallyUnowned ╰── GtkWidget ╰── GtkContainer ╰── GtkBin ╰── EShellSwitcher
EShellSwitcher implements AtkImplementorIface, GtkBuildable, EExtensible and GtkToolShell.
GtkWidget *
e_shell_switcher_new (void
);
Creates a new EShellSwitcher instance.
void e_shell_switcher_add_action (EShellSwitcher *switcher
,EUIAction *switch_action
,EUIAction *new_window_action
);
Adds a button to switcher
that proxies for switcher_action
.
Switcher buttons appear in the order they were added. A middle
click opens a new window of this type.
EShellWindow adds switcher actions in the order given by the
sort_order
field in EShellBackendClass.
GtkToolbarStyle
e_shell_switcher_get_style (EShellSwitcher *switcher
);
Returns whether switcher
has text, icons or both.
void e_shell_switcher_set_style (EShellSwitcher *switcher
,GtkToolbarStyle style
);
Alters the view of switcher
to display either icons only, text only,
or both.
void
e_shell_switcher_unset_style (EShellSwitcher *switcher
);
Unsets a switcher style set with e_shell_switcher_set_style()
, so
that user preferences will be used to determine the switcher style.
gboolean
e_shell_switcher_get_visible (EShellSwitcher *switcher
);
Returns TRUE
if the switcher buttons are visible.
Note that switcher button visibility is different than
switcher
's GTK_VISIBLE flag, since EShellSwitcher
is actually a container widget for EShellSidebar.
void e_shell_switcher_set_visible (EShellSwitcher *switcher
,gboolean visible
);
Sets the switcher button visiblity to visible
.
Note that switcher button visibility is different than
switcher
's GTK_VISIBLE flag, since EShellSwitcher
is actually a container widget for EShellSidebar.
#define E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE GTK_TOOLBAR_BOTH_HORIZ
“toolbar-style”
property “toolbar-style” GtkToolbarStyle
The switcher's toolbar style.
Owner: EShellSwitcher
Flags: Read / Write / Construct
Default value: GTK_TOOLBAR_BOTH_HORIZ
“style-changed”
signalvoid user_function (EShellSwitcher *switcher, GtkToolbarStyle style, gpointer user_data)
Emitted when the style of the switcher changes.
switcher |
the EShellSwitcher which emitted the signal |
|
style |
the new GtkToolbarStyle of the switcher |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First