~ubuntu-branches/ubuntu/natty/java-gnome/natty

« back to all changes in this revision

Viewing changes to src/bindings/org/freedesktop/cairo/CairoPatternOverride.c

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume Mazoyer
  • Date: 2011-02-18 17:46:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110218174652-mk7ajkt790es0jwr
Tags: 4.0.19-0ubuntu1
* New upstream release. (LP: #596252) (Forwarded: Debian: 588943)
* debian/control
  - Update dependencies version according to the upstream configure file.
  - Update Standards-Version to 3.9.1.
  - Sync JNI and JAR packages.
* debian/copyright
  - Update copyright to 2011.
* debian/patches/01_take_screenshots.diff
  - Fix patch to make doc screenshots works.
* debian/patches/02_javadoc_workaround.patch
  - Fix javadoc generation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * java-gnome, a UI library for writing GTK and GNOME programs from Java!
 
3
 *
 
4
 * Copyright © 2010 Operational Dynamics Consulting, Pty Ltd
 
5
 *
 
6
 * The code in this file, and the program it is a part of, is made available
 
7
 * to you by its authors as open source software: you can redistribute it
 
8
 * and/or modify it under the terms of the GNU General Public License version
 
9
 * 2 ("GPL") as published by the Free Software Foundation.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
 * FITNESS FOR A PARTICULAR PURPOSE. See the GPL for more details.
 
14
 *
 
15
 * You should have received a copy of the GPL along with this program. If not,
 
16
 * see http://www.gnu.org/licenses/. The authors of this program may be
 
17
 * contacted through http://java-gnome.sourceforge.net/.
 
18
 *
 
19
 * Linking this library statically or dynamically with other modules is making
 
20
 * a combined work based on this library. Thus, the terms and conditions of
 
21
 * the GPL cover the whole combination. As a special exception (the
 
22
 * "Claspath Exception"), the copyright holders of this library give you
 
23
 * permission to link this library with independent modules to produce an
 
24
 * executable, regardless of the license terms of these independent modules,
 
25
 * and to copy and distribute the resulting executable under terms of your
 
26
 * choice, provided that you also meet, for each linked independent module,
 
27
 * the terms and conditions of the license of that module. An independent
 
28
 * module is a module which is not derived from or based on this library. If
 
29
 * you modify this library, you may extend the Classpath Exception to your
 
30
 * version of the library, but you are not obligated to do so. If you do not
 
31
 * wish to do so, delete this exception statement from your version.
 
32
 */
 
33
 
 
34
#include <jni.h>
 
35
#include <gtk/gtk.h>
 
36
#include "bindings_java.h"
 
37
#include "org_freedesktop_cairo_CairoPatternOverride.h"
 
38
 
 
39
JNIEXPORT jlong JNICALL
 
40
Java_org_freedesktop_cairo_CairoPatternOverride_cairo_1pattern_1get_1surface
 
41
(
 
42
        JNIEnv* env,
 
43
        jclass cls,
 
44
        jlong _self
 
45
)
 
46
{
 
47
        cairo_status_t result;
 
48
        cairo_pattern_t* self;
 
49
        cairo_surface_t* surface;
 
50
 
 
51
        // convert parameter self
 
52
        self = (cairo_pattern_t*) _self;
 
53
 
 
54
        // call function
 
55
        result = cairo_pattern_get_surface(self, &surface);
 
56
 
 
57
        // cleanup parameter self
 
58
 
 
59
        /*
 
60
         * Check return value
 
61
         */
 
62
        if (result != CAIRO_STATUS_SUCCESS) {
 
63
                bindings_java_throwByName(env, "org/freedesktop/cairo/FatalError", "Not a SurfacePatten!");
 
64
                return 0L;
 
65
        }
 
66
 
 
67
        return (jlong) surface;
 
68
}