/* PIKA - Photo and Image Kooker Application * a rebranding of The GNU Image Manipulation Program (created with heckimp) * A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio * * Original copyright, applying to most contents (license remains unchanged): * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * pikaoverlayframe.c * Copyright (C) 2010 Michael Natterer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "config.h" #include #include "libpikamath/pikamath.h" #include "widgets-types.h" #include "core/pika-cairo.h" #include "pikaoverlayframe.h" #include "pikawidgets-utils.h" static gboolean pika_overlay_frame_draw (GtkWidget *widget, cairo_t *cr); G_DEFINE_TYPE (PikaOverlayFrame, pika_overlay_frame, GTK_TYPE_BIN) #define parent_class pika_overlay_frame_parent_class static void pika_overlay_frame_class_init (PikaOverlayFrameClass *klass) { GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); widget_class->draw = pika_overlay_frame_draw; gtk_widget_class_set_css_name (widget_class, "popover"); } static void pika_overlay_frame_init (PikaOverlayFrame *frame) { gtk_widget_set_app_paintable (GTK_WIDGET (frame), TRUE); gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (frame)), "background"); } static gboolean pika_overlay_frame_draw (GtkWidget *widget, cairo_t *cr) { GtkStyleContext *style = gtk_widget_get_style_context (widget); GtkAllocation allocation; gboolean rgba; gint border_radius; rgba = gdk_screen_get_rgba_visual (gtk_widget_get_screen (widget)) != NULL; if (rgba) { cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR); cairo_paint (cr); cairo_set_operator (cr, CAIRO_OPERATOR_OVER); } gtk_widget_get_allocation (widget, &allocation); gtk_style_context_get (style, gtk_style_context_get_state (style), "border-radius", &border_radius, NULL); if (rgba) { pika_cairo_rounded_rectangle (cr, 0.0, 0.0, allocation.width, allocation.height, border_radius); } else { cairo_rectangle (cr, 0, 0, allocation.width, allocation.height); } cairo_clip (cr); gtk_render_background (style, cr, 0, 0, allocation.width, allocation.height); gtk_render_frame (style, cr, 0, 0, allocation.width, allocation.height); return GTK_WIDGET_CLASS (parent_class)->draw (widget, cr); } GtkWidget * pika_overlay_frame_new (void) { return g_object_new (PIKA_TYPE_OVERLAY_FRAME, NULL); }