[sysprof/wip/gtk4-port: 52/131] scrollmap: port to GTK 4
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [sysprof/wip/gtk4-port: 52/131] scrollmap: port to GTK 4
- Date: Fri, 1 Apr 2022 20:19:22 +0000 (UTC)
commit 52e6727beb1ac039623e9080644b7477540bb9d9
Author: Christian Hergert <chergert redhat com>
Date: Thu Sep 30 16:14:04 2021 -0700
scrollmap: port to GTK 4
And use snapshots to paint color blocks
src/libsysprof-ui/sysprof-scrollmap.c | 84 ++++++++++++++++++++---------------
src/libsysprof-ui/sysprof-scrollmap.h | 4 +-
2 files changed, 52 insertions(+), 36 deletions(-)
---
diff --git a/src/libsysprof-ui/sysprof-scrollmap.c b/src/libsysprof-ui/sysprof-scrollmap.c
index 95dc71cf..bf1ec841 100644
--- a/src/libsysprof-ui/sysprof-scrollmap.c
+++ b/src/libsysprof-ui/sysprof-scrollmap.c
@@ -28,7 +28,9 @@
struct _SysprofScrollmap
{
- GtkScrollbar parent_instance;
+ GtkWidget parent_instance;
+
+ GtkWidget *scrollbar;
gint64 begin_time;
gint64 end_time;
@@ -49,7 +51,7 @@ typedef struct
gint height;
} Recalculate;
-G_DEFINE_TYPE (SysprofScrollmap, sysprof_scrollmap, GTK_TYPE_SCROLLBAR)
+G_DEFINE_TYPE (SysprofScrollmap, sysprof_scrollmap, GTK_TYPE_WIDGET)
static void
recalculate_free (gpointer data)
@@ -152,39 +154,34 @@ sysprof_scrollmap_recalculate_finish (SysprofScrollmap *self,
return g_task_propagate_pointer (G_TASK (result), error);
}
-static void
+static inline void
draw_boxes (const GtkAllocation *alloc,
- cairo_t *cr,
- gint x,
- gint n_boxes)
+ GtkSnapshot *snapshot,
+ int x,
+ int n_boxes,
+ const GdkRGBA *color)
{
- gint y;
-
- g_assert (cr != NULL);
-
- y = alloc->height - BOX_SIZE;
+ int y = alloc->height - BOX_SIZE;
- for (gint i = 0; i < n_boxes; i++)
+ for (int i = 0; i < n_boxes; i++)
{
- cairo_rectangle (cr, x, y, BOX_SIZE, -BOX_SIZE);
+ gtk_snapshot_append_color (snapshot, color, &GRAPHENE_RECT_INIT (x, y, BOX_SIZE, -BOX_SIZE));
y -= (BOX_SIZE + 1);
}
-
- cairo_fill (cr);
}
-static gboolean
-sysprof_scrollmap_draw (GtkWidget *widget,
- cairo_t *cr)
+static void
+sysprof_scrollmap_snapshot (GtkWidget *widget,
+ GtkSnapshot *snapshot)
{
SysprofScrollmap *self = (SysprofScrollmap *)widget;
GtkStyleContext *style_context;
GtkAllocation alloc;
GdkRGBA color;
- gint max_boxes;
+ int max_boxes;
g_assert (SYSPROF_IS_SCROLLMAP (self));
- g_assert (cr != NULL);
+ g_assert (GTK_IS_SNAPSHOT (snapshot));
if (self->buckets == NULL)
goto chainup;
@@ -193,27 +190,22 @@ sysprof_scrollmap_draw (GtkWidget *widget,
max_boxes = alloc.height / (BOX_SIZE + 1) - 1;
style_context = gtk_widget_get_style_context (widget);
- gtk_style_context_get_color (style_context,
- gtk_style_context_get_state (style_context),
- &color);
- gdk_cairo_set_source_rgba (cr, &color);
+ gtk_style_context_get_color (style_context, &color);
for (guint i = 0; i < self->buckets->len; i++)
{
- gint n = g_array_index (self->buckets, gint, i);
- gint x = 1 + i * (BOX_SIZE + 1);
- gint b = max_boxes * (n / (gdouble)self->most);
+ int n = g_array_index (self->buckets, gint, i);
+ int x = 1 + i * (BOX_SIZE + 1);
+ int b = max_boxes * (n / (gdouble)self->most);
-#if 1
if (n > 0)
b = MAX (b, 1);
-#endif
- draw_boxes (&alloc, cr, x, b);
+ draw_boxes (&alloc, snapshot, x, b, &color);
}
chainup:
- return GTK_WIDGET_CLASS (sysprof_scrollmap_parent_class)->draw (widget, cr);
+ GTK_WIDGET_CLASS (sysprof_scrollmap_parent_class)->snapshot (widget, snapshot);
}
static void
@@ -246,14 +238,20 @@ sysprof_scrollmap_recalculate_cb (GObject *object,
}
static void
-sysprof_scrollmap_finalize (GObject *object)
+sysprof_scrollmap_dispose (GObject *object)
{
SysprofScrollmap *self = (SysprofScrollmap *)object;
+ if (self->scrollbar)
+ {
+ gtk_widget_unparent (GTK_WIDGET (self->scrollbar));
+ self->scrollbar = NULL;
+ }
+
g_clear_pointer (&self->buckets, g_array_unref);
g_clear_pointer (&self->timings, g_array_unref);
- G_OBJECT_CLASS (sysprof_scrollmap_parent_class)->finalize (object);
+ G_OBJECT_CLASS (sysprof_scrollmap_parent_class)->dispose (object);
}
static void
@@ -262,14 +260,20 @@ sysprof_scrollmap_class_init (SysprofScrollmapClass *klass)
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
- object_class->finalize = sysprof_scrollmap_finalize;
+ object_class->dispose = sysprof_scrollmap_dispose;
+
+ widget_class->snapshot = sysprof_scrollmap_snapshot;
- widget_class->draw = sysprof_scrollmap_draw;
+ gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
}
static void
sysprof_scrollmap_init (SysprofScrollmap *self)
{
+ self->scrollbar = g_object_new (GTK_TYPE_SCROLLBAR,
+ "orientation", GTK_ORIENTATION_HORIZONTAL,
+ NULL);
+ gtk_widget_set_parent (GTK_WIDGET (self->scrollbar), GTK_WIDGET (self));
}
void
@@ -304,3 +308,13 @@ sysprof_scrollmap_set_time_range (SysprofScrollmap *self,
sysprof_scrollmap_recalculate_cb,
NULL);
}
+
+void
+sysprof_scrollmap_set_adjustment (SysprofScrollmap *self,
+ GtkAdjustment *adjustment)
+{
+ g_return_if_fail (SYSPROF_IS_SCROLLMAP (self));
+ g_return_if_fail (!adjustment || GTK_IS_ADJUSTMENT (adjustment));
+
+ gtk_range_set_adjustment (GTK_RANGE (self->scrollbar), adjustment);
+}
diff --git a/src/libsysprof-ui/sysprof-scrollmap.h b/src/libsysprof-ui/sysprof-scrollmap.h
index e7884aa8..14371d9d 100644
--- a/src/libsysprof-ui/sysprof-scrollmap.h
+++ b/src/libsysprof-ui/sysprof-scrollmap.h
@@ -26,8 +26,10 @@ G_BEGIN_DECLS
#define SYSPROF_TYPE_SCROLLMAP (sysprof_scrollmap_get_type())
-G_DECLARE_FINAL_TYPE (SysprofScrollmap, sysprof_scrollmap, SYSPROF, SCROLLMAP, GtkScrollbar)
+G_DECLARE_FINAL_TYPE (SysprofScrollmap, sysprof_scrollmap, SYSPROF, SCROLLMAP, GtkWidget)
+void sysprof_scrollmap_set_adjustment (SysprofScrollmap *self,
+ GtkAdjustment *adjustment);
void sysprof_scrollmap_set_timings (SysprofScrollmap *self,
GArray *timings);
void sysprof_scrollmap_set_time_range (SysprofScrollmap *self,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]