2021-07-14 07:09:19 +02:00
|
|
|
//
|
|
|
|
// fastiv-view.c: fast image viewer - view widget
|
|
|
|
//
|
|
|
|
// Copyright (c) 2021, Přemysl Eric Janouch <p@janouch.name>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
|
2021-09-20 00:30:20 +02:00
|
|
|
#include <math.h>
|
2021-11-13 12:45:08 +01:00
|
|
|
#include <stdbool.h>
|
2021-07-14 07:09:19 +02:00
|
|
|
|
2021-11-16 07:38:42 +01:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#endif // GDK_WINDOWING_X11
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
|
|
#include <gdk/gdkquartz.h>
|
|
|
|
#endif // GDK_WINDOWING_QUARTZ
|
|
|
|
|
2021-11-01 04:40:58 +01:00
|
|
|
#include "fastiv-io.h"
|
2021-07-14 07:09:19 +02:00
|
|
|
#include "fastiv-view.h"
|
|
|
|
|
|
|
|
struct _FastivView {
|
|
|
|
GtkWidget parent_instance;
|
|
|
|
cairo_surface_t *surface;
|
2021-11-13 12:45:08 +01:00
|
|
|
bool scale_to_fit;
|
2021-09-17 20:40:11 +02:00
|
|
|
double scale;
|
2021-07-14 07:09:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE(FastivView, fastiv_view, GTK_TYPE_WIDGET)
|
|
|
|
|
2021-11-14 02:47:42 +01:00
|
|
|
enum {
|
|
|
|
PROP_SCALE = 1,
|
|
|
|
PROP_SCALE_TO_FIT,
|
|
|
|
N_PROPERTIES
|
|
|
|
};
|
|
|
|
|
|
|
|
static GParamSpec *view_properties[N_PROPERTIES];
|
|
|
|
|
|
|
|
static void
|
|
|
|
fastiv_view_finalize(GObject *gobject)
|
|
|
|
{
|
|
|
|
FastivView *self = FASTIV_VIEW(gobject);
|
|
|
|
cairo_surface_destroy(self->surface);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS(fastiv_view_parent_class)->finalize(gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fastiv_view_get_property(
|
|
|
|
GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
FastivView *self = FASTIV_VIEW(object);
|
|
|
|
switch (property_id) {
|
|
|
|
case PROP_SCALE:
|
|
|
|
g_value_set_double(value, self->scale);
|
|
|
|
break;
|
|
|
|
case PROP_SCALE_TO_FIT:
|
|
|
|
g_value_set_boolean(value, self->scale_to_fit);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 19:42:43 +01:00
|
|
|
static void
|
2021-11-13 12:45:08 +01:00
|
|
|
get_surface_dimensions(FastivView *self, double *width, double *height)
|
2021-09-17 20:40:11 +02:00
|
|
|
{
|
2021-11-09 19:42:43 +01:00
|
|
|
*width = *height = 0;
|
2021-09-17 20:40:11 +02:00
|
|
|
if (!self->surface)
|
2021-11-09 19:42:43 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
cairo_rectangle_t extents = {};
|
|
|
|
switch (cairo_surface_get_type(self->surface)) {
|
|
|
|
case CAIRO_SURFACE_TYPE_IMAGE:
|
2021-11-13 12:45:08 +01:00
|
|
|
*width = cairo_image_surface_get_width(self->surface);
|
|
|
|
*height = cairo_image_surface_get_height(self->surface);
|
|
|
|
return;
|
2021-11-09 19:42:43 +01:00
|
|
|
case CAIRO_SURFACE_TYPE_RECORDING:
|
2021-11-17 13:45:42 +01:00
|
|
|
if (!cairo_recording_surface_get_extents(self->surface, &extents))
|
|
|
|
cairo_recording_surface_ink_extents(self->surface,
|
|
|
|
&extents.x, &extents.y, &extents.width, &extents.height);
|
|
|
|
|
2021-11-13 12:45:08 +01:00
|
|
|
*width = extents.width;
|
|
|
|
*height = extents.height;
|
|
|
|
return;
|
2021-11-09 19:42:43 +01:00
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
2021-11-13 12:45:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_display_dimensions(FastivView *self, int *width, int *height)
|
|
|
|
{
|
|
|
|
double w, h;
|
|
|
|
get_surface_dimensions(self, &w, &h);
|
2021-11-09 19:42:43 +01:00
|
|
|
|
2021-11-13 12:45:08 +01:00
|
|
|
*width = ceil(w * self->scale);
|
|
|
|
*height = ceil(h * self->scale);
|
2021-09-17 20:40:11 +02:00
|
|
|
}
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
static void
|
2021-11-01 04:59:38 +01:00
|
|
|
fastiv_view_get_preferred_height(
|
|
|
|
GtkWidget *widget, gint *minimum, gint *natural)
|
2021-07-14 07:09:19 +02:00
|
|
|
{
|
2021-11-13 12:45:08 +01:00
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
|
|
|
if (self->scale_to_fit) {
|
|
|
|
double sw, sh;
|
|
|
|
get_surface_dimensions(self, &sw, &sh);
|
|
|
|
*natural = ceil(sh);
|
|
|
|
*minimum = 1;
|
|
|
|
} else {
|
|
|
|
int dw, dh;
|
|
|
|
get_display_dimensions(self, &dw, &dh);
|
|
|
|
*minimum = *natural = dh;
|
|
|
|
}
|
2021-07-14 07:09:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-01 04:59:38 +01:00
|
|
|
fastiv_view_get_preferred_width(GtkWidget *widget, gint *minimum, gint *natural)
|
2021-07-14 07:09:19 +02:00
|
|
|
{
|
2021-11-13 12:45:08 +01:00
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
|
|
|
if (self->scale_to_fit) {
|
|
|
|
double sw, sh;
|
|
|
|
get_surface_dimensions(self, &sw, &sh);
|
|
|
|
*natural = ceil(sw);
|
|
|
|
*minimum = 1;
|
|
|
|
} else {
|
|
|
|
int dw, dh;
|
|
|
|
get_display_dimensions(self, &dw, &dh);
|
|
|
|
*minimum = *natural = dw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fastiv_view_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GTK_WIDGET_CLASS(fastiv_view_parent_class)
|
|
|
|
->size_allocate(widget, allocation);
|
|
|
|
|
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
|
|
|
if (!self->surface || !self->scale_to_fit)
|
|
|
|
return;
|
|
|
|
|
|
|
|
double w, h;
|
|
|
|
get_surface_dimensions(self, &w, &h);
|
|
|
|
|
|
|
|
self->scale = 1;
|
|
|
|
if (ceil(w * self->scale) > allocation->width)
|
|
|
|
self->scale = allocation->width / w;
|
|
|
|
if (ceil(h * self->scale) > allocation->height)
|
|
|
|
self->scale = allocation->height / h;
|
2021-11-14 02:47:42 +01:00
|
|
|
g_object_notify_by_pspec(G_OBJECT(widget), view_properties[PROP_SCALE]);
|
2021-07-14 07:09:19 +02:00
|
|
|
}
|
|
|
|
|
2021-09-17 20:42:12 +02:00
|
|
|
static void
|
|
|
|
fastiv_view_realize(GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkAllocation allocation;
|
|
|
|
gtk_widget_get_allocation(widget, &allocation);
|
|
|
|
|
|
|
|
GdkWindowAttr attributes = {
|
|
|
|
.window_type = GDK_WINDOW_CHILD,
|
2021-11-01 04:59:38 +01:00
|
|
|
.x = allocation.x,
|
|
|
|
.y = allocation.y,
|
|
|
|
.width = allocation.width,
|
|
|
|
.height = allocation.height,
|
2021-09-17 20:42:12 +02:00
|
|
|
|
|
|
|
// Input-only would presumably also work (as in GtkPathBar, e.g.),
|
|
|
|
// but it merely seems to involve more work.
|
2021-11-01 04:59:38 +01:00
|
|
|
.wclass = GDK_INPUT_OUTPUT,
|
2021-09-17 20:42:12 +02:00
|
|
|
|
|
|
|
// Assuming here that we can't ask for a higher-precision Visual
|
|
|
|
// than what we get automatically.
|
2021-11-01 04:59:38 +01:00
|
|
|
.visual = gtk_widget_get_visual(widget),
|
2021-11-11 22:51:20 +01:00
|
|
|
.event_mask = gtk_widget_get_events(widget) | GDK_SCROLL_MASK |
|
2021-11-13 10:04:40 +01:00
|
|
|
GDK_KEY_PRESS_MASK | GDK_BUTTON_PRESS_MASK,
|
2021-09-17 20:42:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// We need this window to receive input events at all.
|
|
|
|
GdkWindow *window = gdk_window_new(gtk_widget_get_parent_window(widget),
|
|
|
|
&attributes, GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL);
|
2021-11-16 07:38:42 +01:00
|
|
|
|
|
|
|
// Without the following call, or the rendering mode set to "recording",
|
2021-11-16 13:38:42 +01:00
|
|
|
// RGB30 degrades to RGB24, because gdk_window_begin_paint_internal()
|
|
|
|
// creates backing stores using cairo_content_t constants.
|
|
|
|
//
|
|
|
|
// It completely breaks the Quartz backend, so limit it to X11.
|
2021-11-16 07:38:42 +01:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
2021-11-16 13:38:42 +01:00
|
|
|
// FIXME: This causes some flicker while scrolling, because it disables
|
|
|
|
// double buffering, see: https://gitlab.gnome.org/GNOME/gtk/-/issues/2560
|
|
|
|
//
|
|
|
|
// If GTK+'s OpenGL integration fails to deliver, we need to use the window
|
|
|
|
// directly, sidestepping the toolkit entirely.
|
2021-11-16 07:38:42 +01:00
|
|
|
if (GDK_IS_X11_WINDOW(window))
|
|
|
|
gdk_window_ensure_native(window);
|
|
|
|
#endif // GDK_WINDOWING_X11
|
|
|
|
|
2021-09-17 20:42:12 +02:00
|
|
|
gtk_widget_register_window(widget, window);
|
|
|
|
gtk_widget_set_window(widget, window);
|
|
|
|
gtk_widget_set_realized(widget, TRUE);
|
|
|
|
}
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
static gboolean
|
|
|
|
fastiv_view_draw(GtkWidget *widget, cairo_t *cr)
|
|
|
|
{
|
2021-11-20 13:03:30 +01:00
|
|
|
// Placed here due to our using a native GdkWindow on X11,
|
|
|
|
// which makes the widget have no double buffering or default background.
|
2021-09-16 19:58:34 +02:00
|
|
|
GtkAllocation allocation;
|
|
|
|
gtk_widget_get_allocation(widget, &allocation);
|
2021-11-01 04:59:38 +01:00
|
|
|
gtk_render_background(gtk_widget_get_style_context(widget), cr, 0, 0,
|
|
|
|
allocation.width, allocation.height);
|
2021-09-16 19:58:34 +02:00
|
|
|
|
2021-11-20 13:03:30 +01:00
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
|
|
|
if (!self->surface ||
|
|
|
|
!gtk_cairo_should_draw_window(cr, gtk_widget_get_window(widget)))
|
|
|
|
return TRUE;
|
|
|
|
|
2021-11-09 19:42:43 +01:00
|
|
|
int w, h;
|
|
|
|
get_display_dimensions(self, &w, &h);
|
2021-09-16 19:58:34 +02:00
|
|
|
|
|
|
|
double x = 0;
|
|
|
|
double y = 0;
|
|
|
|
if (w < allocation.width)
|
2021-10-16 10:04:00 +02:00
|
|
|
x = round((allocation.width - w) / 2.);
|
2021-09-16 19:58:34 +02:00
|
|
|
if (h < allocation.height)
|
2021-10-16 10:04:00 +02:00
|
|
|
y = round((allocation.height - h) / 2.);
|
2021-09-16 19:58:34 +02:00
|
|
|
|
2021-11-09 19:42:43 +01:00
|
|
|
// FIXME: Recording surfaces do not work well with CAIRO_SURFACE_TYPE_XLIB,
|
|
|
|
// we always get a shitty pixmap, where transparency contains junk.
|
|
|
|
if (cairo_surface_get_type(self->surface) == CAIRO_SURFACE_TYPE_RECORDING) {
|
|
|
|
cairo_surface_t *image =
|
|
|
|
cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w, h);
|
|
|
|
cairo_t *tcr = cairo_create(image);
|
|
|
|
cairo_scale(tcr, self->scale, self->scale);
|
|
|
|
cairo_set_source_surface(tcr, self->surface, 0, 0);
|
|
|
|
cairo_paint(tcr);
|
|
|
|
cairo_destroy(tcr);
|
|
|
|
|
|
|
|
cairo_set_source_surface(cr, image, x, y);
|
|
|
|
cairo_paint(cr);
|
|
|
|
cairo_surface_destroy(image);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-11-08 08:00:18 +01:00
|
|
|
// XXX: The rounding together with padding may result in up to
|
|
|
|
// a pixel's worth of made-up picture data.
|
|
|
|
cairo_rectangle(cr, x, y, w, h);
|
|
|
|
cairo_clip(cr);
|
|
|
|
|
2021-09-17 20:40:11 +02:00
|
|
|
cairo_scale(cr, self->scale, self->scale);
|
2021-11-01 04:59:38 +01:00
|
|
|
cairo_set_source_surface(
|
|
|
|
cr, self->surface, x / self->scale, y / self->scale);
|
2021-09-17 20:40:11 +02:00
|
|
|
|
2021-11-04 19:33:29 +01:00
|
|
|
cairo_pattern_t *pattern = cairo_get_source(cr);
|
|
|
|
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_PAD);
|
2021-09-22 14:21:27 +02:00
|
|
|
// TODO(p): Prescale it ourselves to an off-screen bitmap, gamma-correctly.
|
2021-11-04 19:33:29 +01:00
|
|
|
cairo_pattern_set_filter(pattern, CAIRO_FILTER_GOOD);
|
2021-09-22 14:21:27 +02:00
|
|
|
|
2021-11-16 07:38:42 +01:00
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
|
|
// Not supported there. Acts a bit like repeating, but weirdly offset.
|
|
|
|
if (GDK_IS_QUARTZ_WINDOW(gtk_widget_get_window(widget)))
|
|
|
|
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_NONE);
|
|
|
|
#endif // GDK_WINDOWING_QUARTZ
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
cairo_paint(cr);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-11-13 09:50:04 +01:00
|
|
|
#define SCALE_STEP 1.4
|
|
|
|
|
2021-11-13 12:45:08 +01:00
|
|
|
static gboolean
|
2021-11-14 02:47:42 +01:00
|
|
|
set_scale_to_fit(FastivView *self, bool scale_to_fit)
|
2021-11-13 12:45:08 +01:00
|
|
|
{
|
2021-11-14 02:47:42 +01:00
|
|
|
self->scale_to_fit = scale_to_fit;
|
|
|
|
|
2021-11-13 12:45:08 +01:00
|
|
|
gtk_widget_queue_resize(GTK_WIDGET(self));
|
2021-11-14 02:47:42 +01:00
|
|
|
g_object_notify_by_pspec(
|
|
|
|
G_OBJECT(self), view_properties[PROP_SCALE_TO_FIT]);
|
2021-11-13 12:45:08 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2021-11-14 02:47:42 +01:00
|
|
|
static gboolean
|
|
|
|
set_scale(FastivView *self, double scale)
|
|
|
|
{
|
|
|
|
self->scale = scale;
|
|
|
|
g_object_notify_by_pspec(
|
|
|
|
G_OBJECT(self), view_properties[PROP_SCALE]);
|
|
|
|
return set_scale_to_fit(self, false);
|
|
|
|
}
|
|
|
|
|
2021-09-17 20:42:12 +02:00
|
|
|
static gboolean
|
|
|
|
fastiv_view_scroll_event(GtkWidget *widget, GdkEventScroll *event)
|
|
|
|
{
|
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
|
|
|
if (!self->surface)
|
|
|
|
return FALSE;
|
2021-11-14 03:36:36 +01:00
|
|
|
if (event->state & gtk_accelerator_get_default_mod_mask())
|
|
|
|
return FALSE;
|
2021-09-17 20:42:12 +02:00
|
|
|
|
|
|
|
switch (event->direction) {
|
|
|
|
case GDK_SCROLL_UP:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale(self, self->scale * SCALE_STEP);
|
2021-09-17 20:42:12 +02:00
|
|
|
case GDK_SCROLL_DOWN:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale(self, self->scale / SCALE_STEP);
|
2021-09-17 20:42:12 +02:00
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-11 22:51:20 +01:00
|
|
|
static gboolean
|
|
|
|
fastiv_view_key_press_event(GtkWidget *widget, GdkEventKey *event)
|
|
|
|
{
|
|
|
|
FastivView *self = FASTIV_VIEW(widget);
|
2021-11-17 08:38:11 +01:00
|
|
|
if (event->state & ~GDK_SHIFT_MASK & gtk_accelerator_get_default_mod_mask())
|
2021-11-11 22:51:20 +01:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (event->keyval) {
|
|
|
|
case GDK_KEY_1:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale(self, 1.0);
|
2021-11-13 09:50:04 +01:00
|
|
|
case GDK_KEY_plus:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale(self, self->scale * SCALE_STEP);
|
2021-11-13 09:50:04 +01:00
|
|
|
case GDK_KEY_minus:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale(self, self->scale / SCALE_STEP);
|
2021-11-13 12:45:08 +01:00
|
|
|
case GDK_KEY_f:
|
2021-11-14 02:47:42 +01:00
|
|
|
return set_scale_to_fit(self, !self->scale_to_fit);
|
2021-11-11 22:51:20 +01:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2021-07-14 07:09:19 +02:00
|
|
|
static void
|
|
|
|
fastiv_view_class_init(FastivViewClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS(klass);
|
|
|
|
object_class->finalize = fastiv_view_finalize;
|
2021-11-14 02:47:42 +01:00
|
|
|
object_class->get_property = fastiv_view_get_property;
|
|
|
|
|
|
|
|
view_properties[PROP_SCALE] = g_param_spec_double(
|
|
|
|
"scale", "Scale", "Zoom level",
|
|
|
|
0, G_MAXDOUBLE, 1.0, G_PARAM_READABLE);
|
|
|
|
view_properties[PROP_SCALE_TO_FIT] = g_param_spec_boolean(
|
2021-11-14 02:50:14 +01:00
|
|
|
"scale-to-fit", "Scale to fit", "Scale images down to fit the window",
|
2021-11-14 02:47:42 +01:00
|
|
|
TRUE, G_PARAM_READABLE);
|
|
|
|
g_object_class_install_properties(
|
|
|
|
object_class, N_PROPERTIES, view_properties);
|
2021-07-14 07:09:19 +02:00
|
|
|
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
|
|
|
|
widget_class->get_preferred_height = fastiv_view_get_preferred_height;
|
|
|
|
widget_class->get_preferred_width = fastiv_view_get_preferred_width;
|
2021-11-13 12:45:08 +01:00
|
|
|
widget_class->size_allocate = fastiv_view_size_allocate;
|
2021-09-17 20:42:12 +02:00
|
|
|
widget_class->realize = fastiv_view_realize;
|
2021-07-14 07:09:19 +02:00
|
|
|
widget_class->draw = fastiv_view_draw;
|
2021-09-17 20:42:12 +02:00
|
|
|
widget_class->scroll_event = fastiv_view_scroll_event;
|
2021-11-11 22:51:20 +01:00
|
|
|
widget_class->key_press_event = fastiv_view_key_press_event;
|
2021-09-17 20:42:12 +02:00
|
|
|
|
|
|
|
// TODO(p): Later override "screen_changed", recreate Pango layouts there,
|
|
|
|
// if we get to have any, or otherwise reflect DPI changes.
|
2021-10-17 12:44:23 +02:00
|
|
|
gtk_widget_class_set_css_name(widget_class, "fastiv-view");
|
2021-07-14 07:09:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fastiv_view_init(FastivView *self)
|
|
|
|
{
|
2021-11-11 22:51:20 +01:00
|
|
|
gtk_widget_set_can_focus(GTK_WIDGET(self), TRUE);
|
|
|
|
|
2021-09-17 20:40:11 +02:00
|
|
|
self->scale = 1.0;
|
2021-07-14 07:09:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- Picture loading ---------------------------------------------------------
|
|
|
|
|
|
|
|
// TODO(p): Progressive picture loading, or at least async/cancellable.
|
|
|
|
gboolean
|
|
|
|
fastiv_view_open(FastivView *self, const gchar *path, GError **error)
|
|
|
|
{
|
2021-09-20 00:30:20 +02:00
|
|
|
cairo_surface_t *surface = fastiv_io_open(path, error);
|
2021-07-14 07:09:19 +02:00
|
|
|
if (!surface)
|
|
|
|
return FALSE;
|
|
|
|
if (self->surface)
|
|
|
|
cairo_surface_destroy(self->surface);
|
|
|
|
|
|
|
|
self->surface = surface;
|
2021-11-14 02:47:42 +01:00
|
|
|
set_scale_to_fit(self, true);
|
2021-07-14 07:09:19 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|