blob: 158c18c6d0ca34bdf384cec470d97e23b1df6569 (
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
|
/*
* 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>
G_BEGIN_DECLS
#define HDY_TYPE_PREFERENCES_PAGE (hdy_preferences_page_get_type())
HDY_AVAILABLE_IN_ALL
G_DECLARE_DERIVABLE_TYPE (HdyPreferencesPage, hdy_preferences_page, HDY, PREFERENCES_PAGE, GtkBin)
/**
* HdyPreferencesPageClass
* @parent_class: The parent class
*/
struct _HdyPreferencesPageClass
{
GtkBinClass parent_class;
/*< private >*/
gpointer padding[4];
};
HDY_AVAILABLE_IN_ALL
GtkWidget *hdy_preferences_page_new (void);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_preferences_page_get_icon_name (HdyPreferencesPage *self);
HDY_AVAILABLE_IN_ALL
void hdy_preferences_page_set_icon_name (HdyPreferencesPage *self,
const gchar *icon_name);
HDY_AVAILABLE_IN_ALL
const gchar *hdy_preferences_page_get_title (HdyPreferencesPage *self);
HDY_AVAILABLE_IN_ALL
void hdy_preferences_page_set_title (HdyPreferencesPage *self,
const gchar *title);
G_END_DECLS
|