gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] libvob doc/pegboard/buoydesign--tjl/peg.rst org...


From: Tuomas J. Lukka
Subject: [Gzz-commits] libvob doc/pegboard/buoydesign--tjl/peg.rst org...
Date: Fri, 08 Aug 2003 12:30:08 -0400

CVSROOT:        /cvsroot/libvob
Module name:    libvob
Branch:         
Changes by:     Tuomas J. Lukka <address@hidden>        03/08/08 12:30:08

Modified files:
        doc/pegboard/buoydesign--tjl: peg.rst 
        org/nongnu/libvob/buoy: BuoyMainViewGeometer.java 
Added files:
        org/nongnu/libvob/buoy/impl: RatioMainGeometer.java 

Log message:
        Implement a simple maingeometer

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/doc/pegboard/buoydesign--tjl/peg.rst.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/buoy/impl/RatioMainGeometer.java?rev=1.1

Patches:
Index: libvob/doc/pegboard/buoydesign--tjl/peg.rst
diff -u libvob/doc/pegboard/buoydesign--tjl/peg.rst:1.3 
libvob/doc/pegboard/buoydesign--tjl/peg.rst:1.4
--- libvob/doc/pegboard/buoydesign--tjl/peg.rst:1.3     Fri Aug  8 10:17:56 2003
+++ libvob/doc/pegboard/buoydesign--tjl/peg.rst Fri Aug  8 12:30:08 2003
@@ -3,8 +3,8 @@
 =============================================================
 
 :Author:   Tuomas J. Lukka
-:Last-Modified: $Date: 2003/08/08 14:17:56 $
-:Revision: $Revision: 1.3 $
+:Last-Modified: $Date: 2003/08/08 16:30:08 $
+:Revision: $Revision: 1.4 $
 :Status:   Incomplete
 
 This PEG attempts to define a flexible framework for FenPDF
@@ -300,7 +300,7 @@
         *              in existing ones.
         * @return The coordinate system into which to place the main view.
         */
-       int mainCS(int into, Object key, boolean create);
+       int mainCS(VobScene vs, int into, Object key, boolean create);
     }
 
 And here's the geometer for the buoys::
@@ -325,7 +325,7 @@
         *             in into. There may be others in between.
         * @param w,h The size requested for the buoy.
         */
-       int buoyCS(int into, int anchor, Object key, float w, float h);
+       int buoyCS(VobScene vs, int into, int anchor, Object key, float w, 
float h);
 
     }
 
Index: libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java
diff -u libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java:1.1 
libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java:1.2
--- libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java:1.1 Fri Aug  8 
10:51:47 2003
+++ libvob/org/nongnu/libvob/buoy/BuoyMainViewGeometer.java     Fri Aug  8 
12:30:08 2003
@@ -1,6 +1,7 @@
 // (c) Tuomas J. Lukka
 
 package org.nongnu.libvob.buoy;
+import org.nongnu.libvob.VobScene;
 
 /** An interface for objects that determine the size and placement
  * of a main view
@@ -16,6 +17,6 @@
      *         in existing ones.
      * @return The coordinate system into which to place the main view.
      */
-    int mainCS(int into, Object key, boolean create);
+    int mainCS(VobScene vs, int into, Object key, boolean create);
 }
 




reply via email to

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