blob: 4d96e11b9d1e708f49f121a4004040d8e3b71345 (
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
|
/*
* Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
*
* 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 <gtk/gtk.h>
G_BEGIN_DECLS
#define HDY_TYPE_SHADOW_HELPER (hdy_shadow_helper_get_type())
G_DECLARE_FINAL_TYPE (HdyShadowHelper, hdy_shadow_helper, HDY, SHADOW_HELPER, GObject)
HdyShadowHelper *hdy_shadow_helper_new (GtkWidget *widget);
void hdy_shadow_helper_clear_cache (HdyShadowHelper *self);
void hdy_shadow_helper_draw_shadow (HdyShadowHelper *self,
cairo_t *cr,
gint width,
gint height,
gdouble progress,
GtkPanDirection direction);
G_END_DECLS
|