aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/util/scaling_image.vala
blob: 477432c5f0ef51f2561fbffc58d7f6745e882fd2 (plain) (blame)
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
using Gdk;
using Gtk;

namespace Dino.Ui {
class ScalingImage : Misc {
    public int min_width { get; set; default = -1; }
    public int target_width { get; set; default = -1; }
    public int max_width { get; set; default = -1; }
    public int min_height { get; set; default = -1; }
    public int max_height { get; set; default = -1; }

    private Pixbuf image;
    private double image_ratio;
    private int image_height = 0;
    private int image_width = 0;
    private int last_allocation_height = -1;
    private int last_allocation_width = -1;
    private int last_scale_factor = -1;
    private Cairo.ImageSurface? cached_surface;
    private static int8 use_image_surface = -1;

    public void load(Pixbuf image) {
        this.image = image;
        this.image_ratio = ((double)image.height) / ((double)image.width);
        this.image_height = image.height;
        this.image_width = image.width;
        queue_resize();
    }

    public override void dispose() {
        base.dispose();
        image = null;
        cached_surface = null;
    }

    private void calculate_size(ref double exact_width, ref double exact_height) {
        if (exact_width == -1 && exact_height == -1) {
            if (target_width == -1) {
                exact_width = ((double)image_width) / ((double)scale_factor);
                exact_height = ((double)image_height) / ((double)scale_factor);
            } else {
                exact_width = target_width;
                exact_height = exact_width * image_ratio;
            }
        } else if (exact_width != -1) {
            exact_height = exact_width * image_ratio;
        } else if (exact_height != -1) {
            exact_width = exact_height / image_ratio;
        } else {
            if (exact_width * image_ratio > exact_height + scale_factor) {
                exact_width = exact_height / image_ratio;
            } else if (exact_height / image_ratio > exact_width + scale_factor) {
                exact_height = exact_width * image_ratio;
            }
        }
        if (max_width != -1 && exact_width > max_width) {
            exact_width = max_width;
            exact_height = exact_width * image_ratio;
        }
        if (max_height != -1 && exact_height > max_height) {
            exact_height = max_height;
            exact_width = exact_height / image_ratio;
        }
        if (exact_width < min_width) exact_width = min_width;
        if (exact_height < min_height) exact_height = min_height;
    }

    public override void size_allocate(Allocation allocation) {
        if (max_width != -1) allocation.width = int.min(allocation.width, max_width);
        if (max_height != -1) allocation.height = int.min(allocation.height, max_height);
        allocation.height = int.max(allocation.height, min_height);
        allocation.width = int.max(allocation.width, min_width);
        double exact_width = allocation.width, exact_height = allocation.height;
        calculate_size(ref exact_width, ref exact_height);
        base.size_allocate(allocation);
        if (last_allocation_height != allocation.height || last_allocation_width != allocation.width || last_scale_factor != scale_factor) {
            last_allocation_height = allocation.height;
            last_allocation_width = allocation.width;
            last_scale_factor = scale_factor;
            cached_surface = null;
        }
    }

    public override bool draw(Cairo.Context ctx_in) {
        if (image == null) return false;
        Cairo.Context ctx = ctx_in;
        int width = this.get_allocated_width(), height = this.get_allocated_height(), base_factor = 1;
        if (use_image_surface == -1) {
            // TODO: detect if we have to buffer in image surface
            use_image_surface = 1;
        }
        if (use_image_surface == 1) {
            ctx_in.scale(1f / scale_factor, 1f / scale_factor);
            if (cached_surface != null) {
                ctx_in.set_source_surface(cached_surface, 0, 0);
                ctx_in.paint();
                ctx_in.set_source_rgb(0, 0, 0);
                return true;
            }
            width *= scale_factor;
            height *= scale_factor;
            base_factor *= scale_factor;
            cached_surface = new Cairo.ImageSurface(Cairo.Format.ARGB32, width, height);
            ctx = new Cairo.Context(cached_surface);
        }

        double radius = 3 * base_factor;
        double degrees = Math.PI / 180.0;
        ctx.new_sub_path();
        ctx.arc(width - radius, radius, radius, -90 * degrees, 0 * degrees);
        ctx.arc(width - radius, height - radius, radius, 0 * degrees, 90 * degrees);
        ctx.arc(radius, height - radius, radius, 90 * degrees, 180 * degrees);
        ctx.arc(radius, radius, radius, 180 * degrees, 270 * degrees);
        ctx.close_path();
        ctx.clip();

        Cairo.Surface buffer = sub_surface(ctx, width, height);
        ctx.set_source_surface(buffer, 0, 0);
        ctx.paint();

        if (use_image_surface == 1) {
            ctx_in.set_source_surface(ctx.get_target(), 0, 0);
            ctx_in.paint();
            ctx_in.set_source_rgb(0, 0, 0);
        }

        return true;
    }

    private Cairo.Surface sub_surface(Cairo.Context ctx, int width, int height) {
        Cairo.Surface buffer = new Cairo.Surface.similar(ctx.get_target(), Cairo.Content.COLOR_ALPHA, width, height);
        Cairo.Context bufctx = new Cairo.Context(buffer);
        double w_scale = (double) width / image_width;
        double h_scale = (double) height / image_height;
        double scale = double.max(w_scale, h_scale);
        bufctx.scale(scale, scale);

        double x_off = 0, y_off = 0;
        if (scale == h_scale) {
            x_off = (width / scale - image_width) / 2.0;
        } else {
            y_off = (height / scale - image_height) / 2.0;
        }
        Gdk.cairo_set_source_pixbuf(bufctx, image, 0, 0);
        bufctx.get_source().set_filter(Cairo.Filter.BILINEAR);
        bufctx.paint();
        bufctx.set_source_rgb(0, 0, 0);
        return buffer;
    }

    public override void get_preferred_width(out int minimum_width, out int natural_width) {
        minimum_width = int.max(0, min_width);
        double exact_width = -1, exact_height = -1;
        calculate_size(ref exact_width, ref exact_height);
        natural_width = (int) Math.ceil(exact_width);
    }

    public override void get_preferred_height(out int minimum_height, out int natural_height) {
        minimum_height = int.max(0, min_height);
        double exact_width = -1, exact_height = -1;
        calculate_size(ref exact_width, ref exact_height);
        natural_height = (int) Math.ceil(exact_height);
    }

    public override void get_preferred_height_for_width(int width, out int minimum_height, out int natural_height) {
        double exact_width = width, exact_height = -1;
        calculate_size(ref exact_width, ref exact_height);
        natural_height = (int) Math.ceil(exact_height);
        minimum_height = natural_height;
    }

    public override void get_preferred_width_for_height(int height, out int minimum_width, out int natural_width) {
        double exact_width = -1, exact_height = height;
        calculate_size(ref exact_width, ref exact_height);
        natural_width = (int) Math.ceil(exact_width);
        minimum_width = natural_width;
    }

    public override SizeRequestMode get_request_mode() {
        return SizeRequestMode.HEIGHT_FOR_WIDTH;
    }
}
}