blob: ed01eb16e7c6568342fa29a07a1c1984afed8c30 (
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
|
/*
* Copyright (C) 2020 Alexander Mikhaylenko <alexm@gnome.org>
*
* 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_APPLICATION_WINDOW (hdy_application_window_get_type())
HDY_AVAILABLE_IN_ALL
G_DECLARE_DERIVABLE_TYPE (HdyApplicationWindow, hdy_application_window, HDY, APPLICATION_WINDOW, GtkApplicationWindow)
struct _HdyApplicationWindowClass
{
GtkApplicationWindowClass parent_class;
/*< private >*/
gpointer padding[4];
};
HDY_AVAILABLE_IN_ALL
GtkWidget *hdy_application_window_new (void);
G_END_DECLS
|