Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/impress/r_back.c
blob: 29a30bbbb1c99cfb2c9c0da7c6fa85d9b71d48d7 (plain)
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
/* imposter (OO.org Impress viewer)
** Copyright (C) 2003-2005 Gurer Ozen
** This code is free software; you can redistribute it and/or
** modify it under the terms of GNU General Public License.
*/

#include "common.h"
#include "internal.h"

int
_imp_fill_back(ImpRenderCtx *ctx, void *drw_data, iks *node)
{
	ImpColor col;
	char *type;
	char *stil, *gfx;
	iks *x;

	type = r_get_style(ctx, node, "draw:fill");
	if (type == 0) return 0;

	if (strcmp(type, "solid") == 0) {
		if (r_get_color(ctx, node, "draw:fill-color", &col)) {
			ctx->drw->set_fg_color(drw_data, &col);
		}
		ctx->drw->draw_rect(drw_data, 1, 0, 0, ctx->pix_w, ctx->pix_h);
	} else if (strcmp (type, "bitmap") == 0) {
		stil = r_get_style(ctx, node, "draw:fill-image-name");
		x = iks_find_with_attrib(iks_find(ctx->styles, "office:styles"),
			"draw:fill-image", "draw:name", stil
		);
		gfx = iks_find_attrib(x, "xlink:href");
		if (gfx) {
			if (iks_strcmp(r_get_style(ctx, node, "style:repeat"), "stretch") == 0) {
				_imp_draw_image(ctx, drw_data, gfx, 0, 0, ctx->pix_w, ctx->pix_h);
			} else {
				_imp_tile_image(ctx, drw_data, gfx, 0, 0, ctx->pix_w, ctx->pix_h);
			}
		}
	} else if (strcmp(type, "gradient") == 0) {
		r_draw_gradient(ctx, drw_data, node);
	} else {
		return 0;
	}
	return 1;
}