File: seed-cairo-pattern.h

package info (click to toggle)
seed 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,900 kB
  • sloc: ansic: 24,336; sh: 11,196; makefile: 773; xml: 187; python: 173
file content (21 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _SEED_CAIRO_PATTERN_H
#define _SEED_CAIRO_PATTERN_H

#include <seed.h>
#include <cairo/cairo.h>

SeedClass
seed_get_cairo_pattern_class ();

cairo_pattern_t *
seed_object_to_cairo_pattern (SeedContext ctx, SeedObject obj, SeedException *exception);

SeedObject
seed_object_from_cairo_pattern (SeedContext ctx, cairo_pattern_t *pat);

void
seed_define_cairo_pattern (SeedContext ctx,
			   SeedObject namespace_ref);


#endif