gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] gzz ./TODO gzz/view/CellVobFactory.java


From: Benja Fallenstein
Subject: [Gzz-commits] gzz ./TODO gzz/view/CellVobFactory.java
Date: Thu, 03 Oct 2002 14:50:38 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Benja Fallenstein <address@hidden>      02/10/03 14:50:38

Modified files:
        .              : TODO 
        gzz/view       : CellVobFactory.java 

Log message:
        TODO

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/TODO.diff?tr1=1.236&tr2=1.237&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/CellVobFactory.java.diff?tr1=1.18&tr2=1.19&r1=text&r2=text

Patches:
Index: gzz/TODO
diff -c gzz/TODO:1.236 gzz/TODO:1.237
*** gzz/TODO:1.236      Thu Oct  3 14:46:40 2002
--- gzz/TODO    Thu Oct  3 14:50:37 2002
***************
*** 60,67 ****
--- 60,74 ----
                    - only when certain that texture memory
                      bandwidth is the problem.
                        - with CulledPQ, should not be.
+             - reload button  (key to reload jython code!)
+           - multiple instances of same cell visible as a buoy --> keys?
+               - special matcher? or pp/VobKeyer?
+               - really USE hierarchical keys
            + clean up the xupdf.py file
            + better distortion function
+         - show pagespans in client better
+       + ZZ vanishingview cell size for pagespans and linebroken
+         paragraphs, as well as libpaper backgrounds
        + script the demo, determine in detail all features
          required. [ almost done ]
            - making a connection
***************
*** 163,176 ****
      benja:
          - Fix AWT client.
      anybody:
-         - xupdf:
-             - reload button  (key to reload jython code!)
-           - multiple instances of same cell visible as a buoy --> keys?
-               - special matcher? or pp/VobKeyer?
-               - really USE hierarchical keys
-         - show pagespans in client better
-       + ZZ vanishingview cell size for pagespans and linebroken
-         paragraphs, as well as libpaper backgrounds
        - fix text quality on OpenGL: enabling __GL_FSAA_MODE=4 on
          NV17 (GeForce4Go) improves "make glinfo" appearance
          dramatically. This would happen by making the mipmaps
--- 170,175 ----
Index: gzz/gzz/view/CellVobFactory.java
diff -c gzz/gzz/view/CellVobFactory.java:1.18 
gzz/gzz/view/CellVobFactory.java:1.19
*** gzz/gzz/view/CellVobFactory.java:1.18       Tue Oct  1 09:06:10 2002
--- gzz/gzz/view/CellVobFactory.java    Thu Oct  3 14:50:37 2002
***************
*** 46,52 ****
   */
  
  public class CellVobFactory implements CellView {
! public static final String rcsid = "$Id: CellVobFactory.java,v 1.18 
2002/10/01 13:06:10 benja Exp $";
      public static boolean dbg = false;
      private static void p(String s) { if(dbg) pa(s); }
      private static void pa(String s) { System.err.println(s); }
--- 46,52 ----
   */
  
  public class CellVobFactory implements CellView {
! public static final String rcsid = "$Id: CellVobFactory.java,v 1.19 
2002/10/03 18:50:37 benja Exp $";
      public static boolean dbg = false;
      private static void p(String s) { if(dbg) pa(s); }
      private static void pa(String s) { System.err.println(s); }
***************
*** 60,65 ****
--- 60,71 ----
      //CellContentView ccv = new SpanCellContentView(style);
      //CellContentView ccv = new LinebrokenCellContentView(style);
      
+     /** The ccv to use, if any. XXX hack for demo, remove 
+      */
+     CellContentView cellContentView = null; // use viewcontext's by default
+     public CellVobFactory() {}
+     public CellVobFactory(CellContentView ccv) { cellContentView = ccv; }
+     
      Dim d_clone;
      /*
      Dim d_cursor;
***************
*** 132,138 ****
        if(d_clone == null)
            throw new NullPointerException("clone dim not set in 
CellVobFactory");
              
!         final CellContentView ccv = context.getCellContentView();
  
        final RectBgVob bg = new RectBgVob();
  
--- 138,145 ----
        if(d_clone == null)
            throw new NullPointerException("clone dim not set in 
CellVobFactory");
              
!         final CellContentView ccv = 
!             cellContentView != null ? cellContentView : 
context.getCellContentView();
  
        final RectBgVob bg = new RectBgVob();
  




reply via email to

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