summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpjain <pjain@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-07 20:40:57 +0000
committerpjain <pjain@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-07 20:40:57 +0000
commite519ba1759867e82d312cc94569b3a6ba928e9bd (patch)
tree1eefa15ae32d4004df757378f267164ffd31aaa7
parent3b431bba99ee1dc19be0bb78dd3d00fa05b2fa7e (diff)
downloadATCD-e519ba1759867e82d312cc94569b3a6ba928e9bd.tar.gz
*** empty log message ***
-rw-r--r--java/ImageProcessing/framework/FileBrowser.java8
-rw-r--r--java/ImageProcessing/framework/ListFiles.java10
-rw-r--r--java/ImageProcessing/framework/doc01.gifbin0 -> 223 bytes
-rw-r--r--java/ImageProcessing/framework/file03.gifbin0 -> 267 bytes
-rw-r--r--java/ImageProcessing/framework/filter.conf5
-rw-r--r--java/ImageProcessing/framework/test.html15
6 files changed, 34 insertions, 4 deletions
diff --git a/java/ImageProcessing/framework/FileBrowser.java b/java/ImageProcessing/framework/FileBrowser.java
index 81379c8575a..7bdd35eb7f4 100644
--- a/java/ImageProcessing/framework/FileBrowser.java
+++ b/java/ImageProcessing/framework/FileBrowser.java
@@ -83,8 +83,12 @@ class BrowserPanel extends Panel
try
{
- Icon dirIcon = new Icon (this.parent_.getCodeBase () + "file03.gif", (Applet) this.parent_);
- System.out.println (this.parent_.getCodeBase () + "file03.gif");
+ Icon dirIcon = new Icon (this.parent_.getCodeBase () +
+ "../ImageProcessing/framework/" +
+ "file03.gif", (Applet) this.parent_);
+ System.out.println (this.parent_.getCodeBase () +
+ "../ImageProcessing/framework/" +
+ "file03.gif");
this.root_ = new FileNode (pString,
dirIcon, true, this.parent_);
}
diff --git a/java/ImageProcessing/framework/ListFiles.java b/java/ImageProcessing/framework/ListFiles.java
index fb409ab148d..7abe067341c 100644
--- a/java/ImageProcessing/framework/ListFiles.java
+++ b/java/ImageProcessing/framework/ListFiles.java
@@ -15,8 +15,14 @@ public class ListFiles
this.browser_ = browser;
try
{
- this.fileIcon_ = new Icon (parent.getCodeBase () + "doc01.gif", parent);
- this.dirIcon_ = new Icon (parent.getCodeBase () + "file03.gif", parent);
+ this.fileIcon_ = new Icon (parent.getCodeBase () +
+ "../ImageProcessing/framework/" +
+ "doc01.gif",
+ parent);
+ this.dirIcon_ = new Icon (parent.getCodeBase () +
+ "../ImageProcessing/framework/" +
+ "file03.gif",
+ parent);
}
catch (MalformedURLException e)
{
diff --git a/java/ImageProcessing/framework/doc01.gif b/java/ImageProcessing/framework/doc01.gif
new file mode 100644
index 00000000000..51262529f6d
--- /dev/null
+++ b/java/ImageProcessing/framework/doc01.gif
Binary files differ
diff --git a/java/ImageProcessing/framework/file03.gif b/java/ImageProcessing/framework/file03.gif
new file mode 100644
index 00000000000..c98654c604b
--- /dev/null
+++ b/java/ImageProcessing/framework/file03.gif
Binary files differ
diff --git a/java/ImageProcessing/framework/filter.conf b/java/ImageProcessing/framework/filter.conf
new file mode 100644
index 00000000000..6b08bb69725
--- /dev/null
+++ b/java/ImageProcessing/framework/filter.conf
@@ -0,0 +1,5 @@
+imaging.filters.UnsharpFilter
+imaging.filters.MeanFilter
+imaging.filters.SobelFilter
+imaging.filters.SharpenFilter
+imaging.filters.EmbossFilter
diff --git a/java/ImageProcessing/framework/test.html b/java/ImageProcessing/framework/test.html
new file mode 100644
index 00000000000..eedc08fb924
--- /dev/null
+++ b/java/ImageProcessing/framework/test.html
@@ -0,0 +1,15 @@
+<HTML>
+
+<BODY text = "#000000"
+link="#000fff"
+vlink="#ff0f0f"
+bgcolor="#888888">
+
+<HR>
+<APPLET CODEBASE="../../classes" CODE="imaging.framework.ImageApp.class" width=700 height=700>
+<!param name=filename value="cow.gif">
+<param name=filename value="myphoto.gif">
+</APPLET>
+<HR>
+
+</HTML> \ No newline at end of file