javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/ImageData.java
branchcanvas
changeset 521 5e9d7f92d5d2
child 1787 ea12a3bb4b33
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/ImageData.java	Tue Jan 22 17:28:01 2013 +0100
     1.3 @@ -0,0 +1,89 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +/*
    1.22 + * To change this template, choose Tools | Templates
    1.23 + * and open the template in the editor.
    1.24 + */
    1.25 +package org.apidesign.bck2brwsr.htmlpage.api;
    1.26 +
    1.27 +import org.apidesign.bck2brwsr.core.JavaScriptBody;
    1.28 +
    1.29 +/**
    1.30 + *
    1.31 + * @author Anton Epple <toni.epple@eppleton.de>
    1.32 + */
    1.33 +public class ImageData {
    1.34 +
    1.35 +    private Object imageData;
    1.36 +    private Data data;
    1.37 +
    1.38 +    public ImageData(Object imageData) {
    1.39 +        this.imageData = imageData;
    1.40 +    }
    1.41 +    
    1.42 +    public Data getData(){
    1.43 +        if (data == null){
    1.44 +            data = new Data(getDataImpl(imageData));
    1.45 +        }
    1.46 +        return data;
    1.47 +    }
    1.48 +    
    1.49 +    @JavaScriptBody(args = {"imageData"}, body = "return imageData.data")
    1.50 +    public native Object getDataImpl(Object imageData);
    1.51 +
    1.52 +    public double getWidth() {
    1.53 +        return getWidthImpl(imageData);
    1.54 +    }
    1.55 +
    1.56 +    @JavaScriptBody(args = {"imageData"}, body = "return imagedata.width;")
    1.57 +    private static native double getWidthImpl(Object imageData);
    1.58 +
    1.59 +    public double getHeight() {
    1.60 +        return getHeightImpl(imageData);
    1.61 +    }
    1.62 +
    1.63 +    @JavaScriptBody(args = {"imageData"}, body = "return imagedata.height;")
    1.64 +    private static native double getHeightImpl(Object imageData);
    1.65 +
    1.66 +    Object object() {
    1.67 +        return imageData;
    1.68 +    }
    1.69 +
    1.70 +    public static class Data {
    1.71 +
    1.72 +        Object data;
    1.73 +
    1.74 +        public Data(Object data) {
    1.75 +            this.data = data;
    1.76 +        }
    1.77 +
    1.78 +        public int get(int index) {
    1.79 +            return getImpl(data, index);
    1.80 +        }
    1.81 +
    1.82 +        public void set(int index, int value) {
    1.83 +            setImpl(data, index, value);
    1.84 +        }
    1.85 +
    1.86 +        @JavaScriptBody(args = {"data", "index", "value"}, body = "data[index]=value;")
    1.87 +        private static native void setImpl(Object data, int index, int value);
    1.88 +
    1.89 +        @JavaScriptBody(args = {"imagedata", "index"}, body = "return data[index];")
    1.90 +        private static native int getImpl(Object data, int index);
    1.91 +    }
    1.92 +}