From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/ui/util.h | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/ui/util.h (limited to 'src/ui/util.h') diff --git a/src/ui/util.h b/src/ui/util.h new file mode 100644 index 0000000..67bf25b --- /dev/null +++ b/src/ui/util.h @@ -0,0 +1,59 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Utility functions for UI + * + * Authors: + * Tavmjong Bah + * John Smith + * + * Copyright (C) 2013, 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#ifndef UI_UTIL_SEEN +#define UI_UTIL_SEEN + +#include // size_t + +#include +#include + +namespace Glib { +class ustring; +} + +namespace Gtk { +class Revealer; +class Widget; +} + + +Glib::ustring ink_ellipsize_text (Glib::ustring const &src, size_t maxlen); +void reveal_widget(Gtk::Widget *widget, bool show); + +// check if widget in a container is actually visible +bool is_widget_effectively_visible(Gtk::Widget* widget); + +namespace Inkscape { +namespace UI { +// Utility function to ensure correct sizing after adding child widgets +void resize_widget_children(Gtk::Widget *widget); +} +} + +// Get the background-color style property for a given StyleContext +Gdk::RGBA get_background_color(const Glib::RefPtr &context, + Gtk::StateFlags state = static_cast(0)); + +#endif + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : -- cgit v1.2.3