blob: 14b45de6069a903fd40f07619eadb93544eabdef (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_INKSCAPE_UI_WIDGET_SCROLL_UTILS_H
#define SEEN_INKSCAPE_UI_WIDGET_SCROLL_UTILS_H
/* Authors:
* Thomas Holder
*
* Copyright (C) 2020 authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <gdk/gdk.h>
namespace Gtk {
class Widget;
}
namespace Inkscape {
namespace UI {
namespace Widget {
Gtk::Widget *get_scrollable_ancestor(Gtk::Widget *widget);
bool scrolling_allowed(Gtk::Widget *widget, GdkEventScroll *event = nullptr);
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif
// vim: filetype=cpp:expandtab:shiftwidth=4:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|