Package timeflow.vis

Examples of timeflow.vis.Mouseover


      // now... if not in graph mode, just draw items
      if (visuals.getLayoutStyle()!=TimelineVisuals.Layout.GRAPH)//max<(t.y1-t.y0)/20)
      {
        for (VisualAct v: t.visualActs)
        {
          Mouseover o=v.draw(g, null, bounds, display, true, true);
          if (o!=null)
          {
            o.y-=dy;
            objectLocations.add(o)
          }
View Full Code Here


      g.fillRect(x0, y, x1-x0-1, h);
      g.setColor(Color.white);
      g.drawLine(x1-1, y, x1-1, y+h);
      g.drawLine(x0,y+h,x1,y+h);
      objectLocations.add(new Mouseover(new Interval(start,end), x0, y, x1-x0-1, h));
     
      g.setFont(model.getDisplay().timeLabel());
      String label=full? t.unit.formatFull(start) : t.unit.format(new Date(start));
      int tx=x0+3;
      int ty=y+h-5;
View Full Code Here

TOP

Related Classes of timeflow.vis.Mouseover

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.