home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Graphics;
- import java.awt.event.MouseAdapter;
- import java.awt.event.MouseEvent;
- import java.net.MalformedURLException;
- import java.net.URL;
-
- final class Jload$2 extends MouseAdapter {
- // $FF: synthetic field
- private final Jload this$0;
-
- // $FF: synthetic method
- Jload$2(Jload var1) {
- this.this$0 = var1;
- }
-
- public void mousePressed(MouseEvent var1) {
- int var2 = var1.getX();
- int var3 = var1.getY();
- if (var2 >= this.this$0.xLeftBoxClick && var3 >= this.this$0.yTopBoxClick && var2 < this.this$0.xRightBoxClick && var3 < this.this$0.yBottomBoxClick) {
- try {
- URL var4 = new URL("http://www.teveo.com");
- this.this$0.getAppletContext().showDocument(var4);
- } catch (MalformedURLException var5) {
- }
-
- } else if (var2 >= this.this$0.xLeftStatusClick && var3 >= this.this$0.yTopStatusClick && var2 < this.this$0.xRightStatusClick && var3 < this.this$0.yBottomStatusClick) {
- this.this$0.fStatusEnabled = (this.this$0.fStatusEnabled + 1) % 2;
- } else {
- this.this$0.fMousePressed = 1;
- this.this$0.DisplayNetInfo();
- this.this$0.DisplayInfo("");
- }
- }
-
- public void mouseReleased(MouseEvent var1) {
- Graphics var2 = this.this$0.getGraphics();
- var2.clearRect(0, 0, this.this$0.app_width, this.this$0.app_height);
- this.this$0.fMousePressed = 0;
- }
- }
-