gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz gzz/view/VobVanishingClient.java gzz/view/b...


From: Tuomas J. Lukka
Subject: [Gzz-commits] gzz gzz/view/VobVanishingClient.java gzz/view/b...
Date: Tue, 04 Feb 2003 06:35:45 -0500

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Tuomas J. Lukka <address@hidden>        03/02/04 06:35:44

Modified files:
        gzz/view       : VobVanishingClient.java 
        gzz/view/buoy  : BuoyAdaptor.java 
        test/gzz/gfx/gl: pagespanpaper.test 
        test/gzz/impl  : deltavstreamcontent.test 
Added files:
        gzz/view/buoy  : __init__.py 
        test/gzz/view/buoy: buoysys.test 

Log message:
        Ready to start iterating tests of buoys

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/VobVanishingClient.java.diff?tr1=1.27&tr2=1.28&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/buoy/__init__.py?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/buoy/BuoyAdaptor.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/test/gzz/gfx/gl/pagespanpaper.test.diff?tr1=1.6&tr2=1.7&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/test/gzz/impl/deltavstreamcontent.test.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/test/gzz/view/buoy/buoysys.test?rev=1.1

Patches:
Index: gzz/gzz/view/VobVanishingClient.java
diff -u gzz/gzz/view/VobVanishingClient.java:1.27 
gzz/gzz/view/VobVanishingClient.java:1.28
--- gzz/gzz/view/VobVanishingClient.java:1.27   Tue Feb  4 05:08:48 2003
+++ gzz/gzz/view/VobVanishingClient.java        Tue Feb  4 06:35:44 2003
@@ -71,7 +71,8 @@
             for(int j=0; j<2; j++) {
                float xloc = 0.5f + i/2.0f;
                float yloc = 0.5f + j/2.0f;
-                connections[i][j] = new 
SimpleConnection(xloc,yloc,1-xloc,1-yloc);
+                connections[i][j] = 
+                   new SimpleConnection(xloc,yloc,1-xloc,1-yloc);
        }
 
         pstubs[0] = new TDecor(false, 1);
@@ -100,7 +101,8 @@
     CellView cvf;
 
     float[] s = new float[2];
-    public Object getVobSize(Cell c, float fract, int flags, Dimension outDim) 
{
+    public Object getVobSize(Cell c, float fract, 
+                           int flags, Dimension outDim) {
        cvf.getSize(null, fract, context, s);
        outDim.width = (int)(s[0] * fract);
        outDim.height = (int)(s[1] * fract);
@@ -109,8 +111,9 @@
 
     Map cell2Box = new HashMap();
 
-    public void place(Cell c, Object o, float fract, int x0, int y0, int x1, 
int y1,
-               int depth, float rot) {
+    public void place(Cell c, Object o, float fract, 
+                   int x0, int y0, int x1, int y1,
+                   int depth, float rot) {
        Vob v = (Vob)o;
        if(fract > 1 && !enlargeScale) fract = 1;
        int box = into.orthoBoxCS(intoCS, c, depth, x0, y0, fract, fract,
Index: gzz/gzz/view/buoy/BuoyAdaptor.java
diff -u gzz/gzz/view/buoy/BuoyAdaptor.java:1.2 
gzz/gzz/view/buoy/BuoyAdaptor.java:1.3
--- gzz/gzz/view/buoy/BuoyAdaptor.java:1.2      Tue Feb  4 00:31:39 2003
+++ gzz/gzz/view/buoy/BuoyAdaptor.java  Tue Feb  4 06:35:44 2003
@@ -5,7 +5,9 @@
 import gzz.view.*;
 import gzz.*;
 
-/** A class that manages the types of nodes in a buoy view.
+/** A class that allows different cell-based views
+ * to be connected easily to a buoy view, separating
+ * the viewing and linking.
  */
 public class BuoyAdaptor implements BuoyViewNodeType {
 
Index: gzz/test/gzz/gfx/gl/pagespanpaper.test
diff -u gzz/test/gzz/gfx/gl/pagespanpaper.test:1.6 
gzz/test/gzz/gfx/gl/pagespanpaper.test:1.7
--- gzz/test/gzz/gfx/gl/pagespanpaper.test:1.6  Wed Jan 29 09:23:02 2003
+++ gzz/test/gzz/gfx/gl/pagespanpaper.test      Tue Feb  4 06:35:44 2003
@@ -11,7 +11,6 @@
 from test.tools.gfx import *
 
 id = "01ACE8A2E202A26072012715A94A270CD012F9B0F2"
-
 sc = gzz.media.impl.PageImageScroll(None, gzz.mediaserver.Mediaserver.Id(id))
 
 def testTestSpan():
Index: gzz/test/gzz/impl/deltavstreamcontent.test
diff -u gzz/test/gzz/impl/deltavstreamcontent.test:1.1 
gzz/test/gzz/impl/deltavstreamcontent.test:1.2
--- gzz/test/gzz/impl/deltavstreamcontent.test:1.1      Sat Oct 12 15:11:09 2002
+++ gzz/test/gzz/impl/deltavstreamcontent.test  Tue Feb  4 06:35:44 2003
@@ -6,3 +6,4 @@
 execfile("test/gzz/diff/rwspandeltacontent.py")
 
 
+# : vim: set syntax=python :




reply via email to

[Prev in Thread] Current Thread [Next in Thread]