blob: 254039609a5e28249b87acf834612391dfb7a2f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Copyright (C) 2019 Zander Brown <zbrown@gnome.org>
* Copyright (C) 2019 Purism SPC
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
#error "Only <handy.h> can be included directly."
#endif
#include "hdy-version.h"
#include <gtk/gtk.h>
#include "hdy-view-switcher.h"
G_BEGIN_DECLS
#define HDY_TYPE_VIEW_SWITCHER_TITLE (hdy_view_switcher_title_get_type())
HDY_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE (HdyViewSwitcherTitle, hdy_view_switcher_title, HDY, VIEW_SWITCHER_TITLE, GtkBin)
HDY_AVAILABLE_IN_ALL
HdyViewSwitcherTitle *hdy_view_switcher_title_new (void);
HDY_AVAILABLE_IN_ALL
HdyViewSwitcherPolicy hdy_view_switcher_title_get_policy (HdyViewSwitcherTitle *self);
HDY_AVAILABLE_IN_ALL
void hdy_view_switcher_title_set_policy (HdyViewSwitcherTitle *self,
HdyViewSwitcherPolicy policy);
HDY_AVAILABLE_IN_ALL
GtkStack *hdy_view_switcher_title_get_stack (HdyViewSwitcherTitle *self);
HDY_AVAILABLE_IN_ALL
void hdy_view_switcher_title_set_stack (HdyViewSwitcherTitle *self,
GtkStack *stack);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_view_switcher_title_get_title (HdyViewSwitcherTitle *self);
HDY_AVAILABLE_IN_ALL
void hdy_view_switcher_title_set_title (HdyViewSwitcherTitle *self,
const gchar *title);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_view_switcher_title_get_subtitle (HdyViewSwitcherTitle *self);
HDY_AVAILABLE_IN_ALL
void hdy_view_switcher_title_set_subtitle (HdyViewSwitcherTitle *self,
const gchar *subtitle);
HDY_AVAILABLE_IN_ALL
gboolean hdy_view_switcher_title_get_view_switcher_enabled (HdyViewSwitcherTitle *self);
HDY_AVAILABLE_IN_ALL
void hdy_view_switcher_title_set_view_switcher_enabled (HdyViewSwitcherTitle *self,
gboolean enabled);
HDY_AVAILABLE_IN_ALL
gboolean hdy_view_switcher_title_get_title_visible (HdyViewSwitcherTitle *self);
G_END_DECLS
|