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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Utility functions for UI
*
* Authors:
* Tavmjong Bah
* John Smith
*
* Copyright (C) 2004, 2013, 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "util.h"
#include "inkscape.h"
#include <cairomm/pattern.h>
#include <cstdint>
#include <gdkmm/rgba.h>
#include <gtkmm.h>
#include <gtkmm/cellrenderer.h>
#include <gtkmm/enums.h>
#include <stdexcept>
#include <tuple>
#if (defined (_WIN32) || defined (_WIN64))
#include <gdk/gdkwin32.h>
#include <dwmapi.h>
/* For Windows 10 version 1809, 1903, 1909. */
#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE_OLD
#define DWMWA_USE_IMMERSIVE_DARK_MODE_OLD 19
#endif
/* For Windows 10 version 2004 and higher, and Windows 11. */
#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE
#define DWMWA_USE_IMMERSIVE_DARK_MODE 20
#endif
#endif
// TODO due to internal breakage in glibmm headers, this must be last:
#include <glibmm/i18n.h>
#include "widgets/spw-utilities.h" // sp_traverse_widget_tree()
/**
* Recursively look through pre-constructed widget parents for a specific named widget.
*/
Gtk::Widget *get_widget_by_name(Gtk::Container *parent, const std::string &name)
{
for (auto child : parent->get_children()) {
if (name == child->get_name())
return child;
if (auto recurse = dynamic_cast<Gtk::Container *>(child)) {
if (auto decendant = get_widget_by_name(recurse, name))
return decendant;
}
}
return nullptr;
}
/*
* Ellipse text if longer than maxlen, "50% start text + ... + ~50% end text"
* Text should be > length 8 or just return the original text
*/
Glib::ustring ink_ellipsize_text(Glib::ustring const &src, size_t maxlen)
{
if (src.length() > maxlen && maxlen > 8) {
size_t p1 = (size_t) maxlen / 2;
size_t p2 = (size_t) src.length() - (maxlen - p1 - 1);
return src.substr(0, p1) + "…" + src.substr(p2);
}
return src;
}
/**
* Show widget, if the widget has a Gtk::Reveal parent, reveal instead.
*
* @param widget - The child widget to show.
*/
void reveal_widget(Gtk::Widget *widget, bool show)
{
auto revealer = dynamic_cast<Gtk::Revealer *>(widget->get_parent());
if (revealer) {
revealer->set_reveal_child(show);
}
if (show) {
widget->show();
} else if (!revealer) {
widget->hide();
}
}
bool is_widget_effectively_visible(Gtk::Widget const *widget) {
if (!widget) return false;
// TODO: what's the right way to determine if widget is visible on the screen?
return widget->get_child_visible();
}
namespace Inkscape::UI {
/**
* Recursively set all the icon sizes inside this parent widget. Any GtkImage will be changed
* so only call this on widget stacks where all children have the same expected sizes.
*
* @param parent - The parent widget to traverse
* @param pixel_size - The new pixel size of the images it contains
*/
void set_icon_sizes(Gtk::Widget* parent, int pixel_size) {
sp_traverse_widget_tree(parent, [=](Gtk::Widget* widget) {
if (auto ico = dynamic_cast<Gtk::Image*>(widget)) {
ico->set_from_icon_name(ico->get_icon_name(), static_cast<Gtk::IconSize>(Gtk::ICON_SIZE_BUTTON));
ico->set_pixel_size(pixel_size);
}
return false;
});
}
void set_icon_sizes(GtkWidget* parent, int pixel_size) {
set_icon_sizes(Glib::wrap(parent), pixel_size);
}
void gui_warning(const std::string &msg, Gtk::Window *parent_window) {
g_warning("%s", msg.c_str());
if (INKSCAPE.active_desktop()) {
Gtk::MessageDialog warning(_(msg.c_str()), false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_OK, true);
warning.set_transient_for( parent_window ? *parent_window : *(INKSCAPE.active_desktop()->getToplevel()) );
warning.run();
}
}
void resize_widget_children(Gtk::Widget *widget) {
if(widget) {
Gtk::Allocation allocation;
int baseline;
widget->get_allocated_size(allocation, baseline);
widget->size_allocate(allocation, baseline);
}
}
Gtk::StateFlags cell_flags_to_state_flags(Gtk::CellRendererState state)
{
auto flags = Gtk::STATE_FLAG_NORMAL;
for (auto [s, f]: (std::tuple<Gtk::CellRendererState, Gtk::StateFlags>[]) {
{Gtk::CELL_RENDERER_SELECTED, Gtk::STATE_FLAG_SELECTED},
{Gtk::CELL_RENDERER_PRELIT, Gtk::STATE_FLAG_PRELIGHT},
{Gtk::CELL_RENDERER_INSENSITIVE, Gtk::STATE_FLAG_INSENSITIVE},
{Gtk::CELL_RENDERER_FOCUSED, Gtk::STATE_FLAG_FOCUSED},
})
{
if (state & s) {
flags |= f;
}
}
return flags;
}
} // namespace Inkscape::UI
Gdk::RGBA mix_colors(const Gdk::RGBA& a, const Gdk::RGBA& b, float ratio) {
auto lerp = [](double v0, double v1, double t){ return (1.0 - t) * v0 + t * v1; };
Gdk::RGBA result;
result.set_rgba(
lerp(a.get_red(), b.get_red(), ratio),
lerp(a.get_green(), b.get_green(), ratio),
lerp(a.get_blue(), b.get_blue(), ratio),
lerp(a.get_alpha(), b.get_alpha(), ratio)
);
return result;
}
Gdk::RGBA get_background_color(const Glib::RefPtr<Gtk::StyleContext> &context,
Gtk::StateFlags state) {
return get_context_color(context, GTK_STYLE_PROPERTY_BACKGROUND_COLOR, state);
}
Gdk::RGBA get_context_color(const Glib::RefPtr<Gtk::StyleContext> &context,
const gchar *property,
Gtk::StateFlags state) {
GdkRGBA *c;
gtk_style_context_get(context->gobj(),
static_cast<GtkStateFlags>(state),
property, &c, nullptr);
return Glib::wrap(c);
}
// 2Geom <-> Cairo
Cairo::RectangleInt geom_to_cairo(const Geom::IntRect &rect)
{
return Cairo::RectangleInt{rect.left(), rect.top(), rect.width(), rect.height()};
}
Geom::IntRect cairo_to_geom(const Cairo::RectangleInt &rect)
{
return Geom::IntRect::from_xywh(rect.x, rect.y, rect.width, rect.height);
}
Cairo::Matrix geom_to_cairo(const Geom::Affine &affine)
{
return Cairo::Matrix(affine[0], affine[1], affine[2], affine[3], affine[4], affine[5]);
}
Geom::IntPoint dimensions(const Cairo::RefPtr<Cairo::ImageSurface> &surface)
{
return Geom::IntPoint(surface->get_width(), surface->get_height());
}
Geom::IntPoint dimensions(const Gdk::Rectangle &allocation)
{
return Geom::IntPoint(allocation.get_width(), allocation.get_height());
}
Cairo::RefPtr<Cairo::LinearGradient> create_cubic_gradient(
Geom::Rect rect,
const Gdk::RGBA& from,
const Gdk::RGBA& to,
Geom::Point ctrl1,
Geom::Point ctrl2,
Geom::Point p0,
Geom::Point p1,
int steps
) {
// validate input points
for (auto&& pt : {p0, ctrl1, ctrl2, p1}) {
if (pt.x() < 0 || pt.x() > 1 ||
pt.y() < 0 || pt.y() > 1) {
throw std::invalid_argument("Invalid points for cubic gradient; 0..1 coordinates expected.");
}
}
if (steps < 2 || steps > 999) {
throw std::invalid_argument("Invalid number of steps for cubic gradient; 2 to 999 steps expected.");
}
auto g = Cairo::LinearGradient::create(rect.min().x(), rect.min().y(), rect.max().x(), rect.max().y());
--steps;
for (int step = 0; step <= steps; ++step) {
auto t = 1.0 * step / steps;
auto s = 1.0 - t;
auto p = (t * t * t) * p0 + (3 * t * t * s) * ctrl1 + (3 * t * s * s) * ctrl2 + (s * s * s) * p1;
auto offset = p.x();
auto ratio = p.y();
auto color = mix_colors(from, to, ratio);
g->add_color_stop_rgba(offset, color.get_red(), color.get_green(), color.get_blue(), color.get_alpha());
}
return g;
}
Gdk::RGBA change_alpha(const Gdk::RGBA& color, double new_alpha) {
auto copy(color);
copy.set_alpha(new_alpha);
return copy;
}
uint32_t conv_gdk_color_to_rgba(const Gdk::RGBA& color, double replace_alpha) {
auto alpha = replace_alpha >= 0 ? replace_alpha : color.get_alpha();
auto rgba =
uint32_t(0xff * color.get_red()) << 24 |
uint32_t(0xff * color.get_green()) << 16 |
uint32_t(0xff * color.get_blue()) << 8 |
uint32_t(0xff * alpha);
return rgba;
}
void set_dark_tittlebar(Glib::RefPtr<Gdk::Window> win, bool is_dark){
#if (defined (_WIN32) || defined (_WIN64))
if (win->gobj()) {
BOOL w32_darkmode = is_dark;
HWND hwnd = (HWND)gdk_win32_window_get_handle((GdkWindow*)win->gobj());
if (DwmSetWindowAttribute) {
DWORD attr = DWMWA_USE_IMMERSIVE_DARK_MODE;
if (FAILED(DwmSetWindowAttribute(hwnd, attr, &w32_darkmode, sizeof(w32_darkmode)))) {
attr = DWMWA_USE_IMMERSIVE_DARK_MODE_OLD;
DwmSetWindowAttribute(hwnd, attr, &w32_darkmode, sizeof(w32_darkmode));
}
}
}
#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 :
|