Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2012, Codename One. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores
* CA 94065 USA or visit www.oracle.com if you need additional information or
* have any questions.
*/
package com.codename1.impl.javase;
import static com.codename1.impl.javase.SVGSupport.scaleSVG;
import java.io.IOException;
/**
* Subclass of the AWT port which adds SVG support to the resource editor
*
* @author Shai Almog
*/
public class JavaSEPortWithSVGSupport extends JavaJMFSEPort {
@Override
public boolean isSVGSupported() {
return true;
}
@Override
public Object createSVGImage(String baseURL, byte[] data) throws IOException {
return SVGSupport.createSVGImage(baseURL, data);
}
/**
* @inheritDoc
*/
@Override
public Object getSVGDocument(Object svgImage) {
return svgImage;
}
/**
* @inheritDoc
*/
@Override
public void getRGB(Object nativeImage, int[] arr, int offset, int x, int y, int width, int height) {
if(nativeImage instanceof SVG) {
super.getRGB(((SVG) nativeImage).getImg(), arr, offset, x, y, width, height);
return;
}
super.getRGB(nativeImage, arr, offset, x, y, width, height);
}
/**
* @inheritDoc
*/
public int getImageWidth(Object i) {
if(i instanceof SVG) {
return ((SVG) i).getImg().getWidth();
}
return super.getImageWidth(i);
}
/**
* @inheritDoc
*/
@Override
public int getImageHeight(Object i) {
if(i instanceof SVG) {
return ((SVG) i).getImg().getHeight();
}
return super.getImageHeight(i);
}
/**
* @inheritDoc
*/
@Override
public Object scale(Object nativeImage, int width, int height) {
if(nativeImage instanceof SVG) {
return scaleSVG(((SVG)nativeImage), width, height);
}
return super.scale(nativeImage, width, height);
}
/**
* @inheritDoc
*/
@Override
public void drawImage(Object graphics, Object img, int x, int y) {
if(img instanceof SVG) {
drawSVGImage(graphics, (SVG)img, x, y);
} else {
super.drawImage(graphics, img, x, y);
}
}
private void drawSVGImage(Object graphics, SVG img, int x, int y) {
super.drawImage(graphics,img.getImg(), x, y);
}
/**
* @inheritDoc
*/
@Override
public void exitApplication() {
java.awt.Component c = getCanvas();
while(c != null) {
if(c instanceof java.awt.Frame) {
java.awt.Frame frm = (java.awt.Frame)c;
if(frm.getMenuBar() != null) {
// this is a simulator window an not the Codename One designer
System.exit(0);
}
return;
}
c = c.getParent();
}
}
}