/* * Copyright (C) 2020 Alexander Mikhaylenko * * SPDX-License-Identifier: LGPL-2.1+ */ #pragma once #if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION) #error "Only can be included directly." #endif #include "hdy-version.h" #include 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