| Top |
| GtkWidget * | adw_window_title_new () |
| void | adw_window_title_set_title () |
| const char * | adw_window_title_get_title () |
| void | adw_window_title_set_subtitle () |
| const char * | adw_window_title_get_subtitle () |
AdwWindowTitle implements GtkAccessible, GtkBuildable and GtkConstraintTarget.
A helper widget for setting a window's title and subtitle. Made to simplify having a different title from the window in the headerbar.
GtkWidget * adw_window_title_new (const char *title,const char *subtitle);
Creates a new AdwWindowTitle widget.
Since: 1.0
void adw_window_title_set_title (AdwWindowTitle *self,const char *title);
Sets the title of self
.
The title typically identifies the current view or content item, and generally does not use the application name.
Since: 1.0
const char *
adw_window_title_get_title (AdwWindowTitle *self);
Gets the title of self
. See adw_window_title_set_title().
Since: 1.0
void adw_window_title_set_subtitle (AdwWindowTitle *self,const char *subtitle);
Sets the subtitle of self
.
The subtitle should give a user additional details.
Since: 1.0
const char *
adw_window_title_get_subtitle (AdwWindowTitle *self);
Gets the subtitle of self
. See adw_window_title_set_subtitle().
Since: 1.0
“subtitle” property “subtitle” char *
The subtitle to display.
The subtitle should give a user additional details.
Owner: AdwWindowTitle
Flags: Read / Write
Default value: NULL
Since: 1.0
“title” property “title” char *
The title to display.
The title typically identifies the current view or content item, and generally does not use the application name.
Owner: AdwWindowTitle
Flags: Read / Write
Default value: NULL
Since: 1.0