97 lines
2.4 KiB
Java
97 lines
2.4 KiB
Java
//
|
|
// ImageShape.java
|
|
// guiserver
|
|
//
|
|
// Created by Lutz Mueller on 6/24/07.
|
|
//
|
|
//
|
|
// Copyright (C) 2015 Lutz Mueller
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program 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 for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
|
|
import java.lang.*;
|
|
import java.awt.*;
|
|
import java.awt.color.*;
|
|
import java.awt.geom.*;
|
|
import java.util.*;
|
|
|
|
@SuppressWarnings("unchecked")
|
|
public class ImageShape extends Shape {
|
|
|
|
Image image;
|
|
int width;
|
|
int height;
|
|
|
|
boolean hasDimensions = false;
|
|
|
|
|
|
public ImageShape(StringTokenizer tokens)
|
|
{
|
|
tag = tokens.nextToken();
|
|
String path = Base64Coder.decodeString(tokens.nextToken());
|
|
X = Integer.parseInt(tokens.nextToken());
|
|
Y = Integer.parseInt(tokens.nextToken());
|
|
|
|
if(tokens.hasMoreTokens())
|
|
{
|
|
width = Integer.parseInt(tokens.nextToken());
|
|
height = Integer.parseInt(tokens.nextToken());
|
|
hasDimensions = true;
|
|
}
|
|
|
|
image = guiserver.getImageFromPath(path, this.getClass());
|
|
|
|
CanvasWidget.currentCanvas.drawobjects.add(this);
|
|
|
|
/*
|
|
MediaTracker mt = new MediaTracker(imageObserver);
|
|
Image splashImage = Toolkit.getDefaultToolkit().getImage(
|
|
frame.getClass().getResource("/quids/unilever.jpg"));
|
|
mt.addImage(splashImage, 0);
|
|
|
|
try { mt.waitForID(0); }
|
|
catch(InterruptedException ie) {}
|
|
|
|
SplashWindow sw = new SplashWindow(frame, splashImage);
|
|
try { Thread.sleep(1500); }
|
|
catch(InterruptedException ie) {}
|
|
*/
|
|
|
|
}
|
|
|
|
public void drawShape(Graphics2D g2)
|
|
{
|
|
//g2.setStroke(stroke);
|
|
//g2.setPaint(paintColor);
|
|
//g2.setComposite(currentComposite);
|
|
//int realW = image.getWidth(imageObserver);
|
|
//int realH = image.getWidth(imageObserver);
|
|
if(hasDimensions)
|
|
g2.drawImage(image, X, Y, width, height, CanvasWidget.currentCanvas.component);
|
|
else
|
|
g2.drawImage(image, X, Y, CanvasWidget.currentCanvas.component);
|
|
}
|
|
|
|
|
|
public boolean hasPoint(int x, int y)
|
|
{
|
|
return(new Rectangle(X, Y, width, height).contains(x, y));
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// eof //
|