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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
/*
* Copyright (C) 2011, 2013 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "GtkUtilities.h"
#include "GtkVersioning.h"
#include <WebCore/Color.h>
#include <WebCore/Image.h>
#include <WebCore/IntPoint.h>
#include <WebCore/NativeImage.h>
#include <WebCore/SelectionData.h>
#include <gtk/gtk.h>
#include <wtf/glib/GUniquePtr.h>
#if USE(GTK4) && PLATFORM(X11)
#include <gdk/x11/gdkx.h>
#endif
#if USE(SKIA)
#if !USE(GTK4)
#include <WebCore/RefPtrCairo.h>
#endif
WTF_IGNORE_WARNINGS_IN_THIRD_PARTY_CODE_BEGIN
#include <skia/core/SkPixmap.h>
WTF_IGNORE_WARNINGS_IN_THIRD_PARTY_CODE_END
#endif
namespace WebKit {
using namespace WebCore;
static IntPoint gtkWindowGetOrigin(GtkWidget* window)
{
int x = 0, y = 0;
#if USE(GTK4)
UNUSED_PARAM(window);
#else
if (auto* gdkWindow = gtk_widget_get_window(window))
gdk_window_get_origin(gdkWindow, &x, &y);
#endif // !USE(GTK4)
return IntPoint(x, y);
}
IntPoint convertWidgetPointToScreenPoint(GtkWidget* widget, const IntPoint& point)
{
// FIXME: This is actually a very tricky operation and the results of this function should
// only be thought of as a guess. For instance, sometimes it may not correctly take into
// account window decorations.
GtkWidget* toplevelWidget = gtk_widget_get_toplevel(widget);
if (!toplevelWidget || !gtk_widget_is_toplevel(toplevelWidget) || !GTK_IS_WINDOW(toplevelWidget))
return point;
#if USE(GTK4)
double xInWindow, yInWindow;
#else
int xInWindow, yInWindow;
#endif
gtk_widget_translate_coordinates(widget, toplevelWidget, point.x(), point.y(), &xInWindow, &yInWindow);
const auto origin = gtkWindowGetOrigin(toplevelWidget);
return IntPoint(origin.x() + xInWindow, origin.y() + yInWindow);
}
bool widgetIsOnscreenToplevelWindow(GtkWidget* widget)
{
const bool isToplevelWidget = widget && gtk_widget_is_toplevel(widget);
#if USE(GTK4)
// A toplevel widget in GTK4 is always a window, there is no need for further checks.
return isToplevelWidget;
#else
return isToplevelWidget && GTK_IS_WINDOW(widget) && !GTK_IS_OFFSCREEN_WINDOW(widget);
#endif // USE(GTK4)
}
IntPoint widgetRootCoords(GtkWidget* widget, int x, int y)
{
#if USE(GTK4)
UNUSED_PARAM(widget);
return { x, y };
#else
int xRoot, yRoot;
gdk_window_get_root_coords(gtk_widget_get_window(widget), x, y, &xRoot, &yRoot);
return { xRoot, yRoot };
#endif
}
void widgetDevicePosition(GtkWidget* widget, GdkDevice* device, double* x, double* y, GdkModifierType* state)
{
#if USE(GTK4)
gdk_surface_get_device_position(gtk_native_get_surface(gtk_widget_get_native(widget)), device, x, y, state);
#else
int xInt, yInt;
gdk_window_get_device_position(gtk_widget_get_window(widget), device, &xInt, &yInt, state);
*x = xInt;
*y = yInt;
#endif
}
unsigned widgetKeyvalToKeycode(GtkWidget* widget, unsigned keyval)
{
unsigned keycode = 0;
GUniqueOutPtr<GdkKeymapKey> keys;
int keysCount;
auto* display = gtk_widget_get_display(widget);
#if USE(GTK4)
if (gdk_display_map_keyval(display, keyval, &keys.outPtr(), &keysCount) && keysCount)
keycode = keys.get()[0].keycode;
#else
GdkKeymap* keymap = gdk_keymap_get_for_display(display);
if (gdk_keymap_get_entries_for_keyval(keymap, keyval, &keys.outPtr(), &keysCount) && keysCount)
keycode = keys.get()[0].keycode;
#endif
return keycode;
}
unsigned stateModifierForGdkButton(unsigned button)
{
return 1 << (8 + button - 1);
}
#if USE(CAIRO) && USE(GTK4)
GRefPtr<GdkTexture> cairoSurfaceToGdkTexture(cairo_surface_t* surface)
{
ASSERT(cairo_image_surface_get_format(surface) == CAIRO_FORMAT_ARGB32);
auto width = cairo_image_surface_get_width(surface);
auto height = cairo_image_surface_get_height(surface);
if (width <= 0 || height <= 0)
return nullptr;
auto stride = cairo_image_surface_get_stride(surface);
auto* data = cairo_image_surface_get_data(surface);
GRefPtr<GBytes> bytes = adoptGRef(g_bytes_new_with_free_func(data, height * stride, [](gpointer data) {
cairo_surface_destroy(static_cast<cairo_surface_t*>(data));
}, cairo_surface_reference(surface)));
return adoptGRef(gdk_memory_texture_new(width, height, GDK_MEMORY_DEFAULT, bytes.get(), stride));
}
#endif
#if USE(SKIA)
GRefPtr<GdkPixbuf> skiaImageToGdkPixbuf(SkImage& image)
{
#if USE(GTK4)
auto texture = skiaImageToGdkTexture(image);
if (!texture)
return { };
return adoptGRef(gdk_pixbuf_get_from_texture(texture.get()));
#else
RefPtr surface = skiaImageToCairoSurface(image);
if (!surface)
return { };
return adoptGRef(gdk_pixbuf_get_from_surface(surface.get(), 0, 0, cairo_image_surface_get_width(surface.get()), cairo_image_surface_get_height(surface.get())));
#endif
}
#if USE(GTK4)
GRefPtr<GdkTexture> skiaImageToGdkTexture(SkImage& image)
{
SkPixmap pixmap;
if (!image.peekPixels(&pixmap))
return { };
GRefPtr<GBytes> bytes = adoptGRef(g_bytes_new_with_free_func(pixmap.addr(), pixmap.computeByteSize(), [](gpointer data) {
static_cast<SkImage*>(data)->unref();
}, SkRef(&image)));
return adoptGRef(gdk_memory_texture_new(pixmap.width(), pixmap.height(), GDK_MEMORY_DEFAULT, bytes.get(), pixmap.rowBytes()));
}
#else
RefPtr<cairo_surface_t> skiaImageToCairoSurface(SkImage& image)
{
SkPixmap pixmap;
if (!image.peekPixels(&pixmap))
return { };
RefPtr<cairo_surface_t> surface = adoptRef(cairo_image_surface_create_for_data(pixmap.writable_addr8(0, 0), CAIRO_FORMAT_ARGB32, pixmap.width(), pixmap.height(), pixmap.rowBytes()));
if (cairo_surface_status(surface.get()) != CAIRO_STATUS_SUCCESS)
return { };
static cairo_user_data_key_t surfaceDataKey;
cairo_surface_set_user_data(surface.get(), &surfaceDataKey, SkRef(&image), [](void* data) {
static_cast<SkImage*>(data)->unref();
});
return surface;
}
#endif
#endif // USE(SKIA)
#if USE(CAIRO)
GRefPtr<GdkPixbuf> cairoSurfaceToGdkPixbuf(cairo_surface_t* surface)
{
return adoptGRef(gdk_pixbuf_get_from_surface(surface, 0, 0, cairo_image_surface_get_width(surface), cairo_image_surface_get_height(surface)));
}
#endif
OptionSet<DragOperation> gdkDragActionToDragOperation(GdkDragAction gdkAction)
{
OptionSet<DragOperation> action;
if (gdkAction & GDK_ACTION_COPY)
action.add(DragOperation::Copy);
if (gdkAction & GDK_ACTION_MOVE)
action.add(DragOperation::Move);
if (gdkAction & GDK_ACTION_LINK)
action.add(DragOperation::Link);
return action;
}
GdkDragAction dragOperationToGdkDragActions(OptionSet<DragOperation> coreAction)
{
unsigned gdkAction = 0;
if (coreAction.contains(DragOperation::Copy))
gdkAction |= GDK_ACTION_COPY;
if (coreAction.contains(DragOperation::Move))
gdkAction |= GDK_ACTION_MOVE;
if (coreAction.contains(DragOperation::Link))
gdkAction |= GDK_ACTION_LINK;
return static_cast<GdkDragAction>(gdkAction);
}
GdkDragAction dragOperationToSingleGdkDragAction(OptionSet<DragOperation> coreAction)
{
if (coreAction.contains(DragOperation::Copy))
return GDK_ACTION_COPY;
if (coreAction.contains(DragOperation::Move))
return GDK_ACTION_MOVE;
if (coreAction.contains(DragOperation::Link))
return GDK_ACTION_LINK;
return static_cast<GdkDragAction>(0);
}
GRefPtr<GdkPixbuf> selectionDataImageAsGdkPixbuf(const SelectionData& selectionData)
{
auto image = selectionData.image();
if (!image)
return nullptr;
RefPtr nativeImage = image->currentNativeImage();
if (!nativeImage)
return nullptr;
auto& platformImage = nativeImage->platformImage();
#if USE(CAIRO)
return cairoSurfaceToGdkPixbuf(platformImage.get());
#elif USE(SKIA)
return skiaImageToGdkPixbuf(*platformImage.get());
#endif
}
void monitorWorkArea(GdkMonitor* monitor, GdkRectangle* area)
{
#if USE(GTK4)
#if PLATFORM(X11)
if (GDK_IS_X11_MONITOR(monitor)) {
gdk_x11_monitor_get_workarea(monitor, area);
return;
}
#endif
gdk_monitor_get_geometry(monitor, area);
#else
gdk_monitor_get_workarea(monitor, area);
#endif
}
bool eventModifiersContainCapsLock(GdkEvent* event)
{
#if USE(GTK4)
auto* device = gdk_event_get_source_device(event);
if (!device || gdk_device_get_source(device) != GDK_SOURCE_KEYBOARD)
device = gdk_seat_get_keyboard(gdk_display_get_default_seat(gdk_event_get_display(event)));
return gdk_device_get_caps_lock_state(device);
#else
return gdk_keymap_get_caps_lock_state(gdk_keymap_get_for_display(gdk_event_get_display(event)));
#endif
}
WebCore::Color gdkRGBAToColor(const GdkRGBA& color)
{
return convertColor<SRGBA<uint8_t>>(SRGBA<float> { static_cast<float>(color.red), static_cast<float>(color.green), static_cast<float>(color.blue), static_cast<float>(color.alpha) });
}
GdkRGBA colorToGdkRGBA(const WebCore::Color& color)
{
auto [r, g, b, a] = color.toColorTypeLossy<SRGBA<float>>().resolved();
return { r, g, b, a };
}
} // namespace WebCore
|