Examples of Grid


Examples of de.agilecoders.wicket.samples.components.scaffolding.Grid

     */
    public Scaffolding(PageParameters parameters) {
        super(parameters);

        add(new Global("global"));
        add(new Grid("grid"));
        add(new FluidGrid("fluidGridSystem"));
        add(new Layouts("layouts"));
        add(new Responsive("responsive"));
    }
View Full Code Here

Examples of de.creepsmash.client.grid.Grid

      }
    }

    if (gm instanceof BuildTowerRoundMessage) {
      BuildTowerRoundMessage btrm = (BuildTowerRoundMessage) gm;
      Grid grid = this.gameBoard.getGrid((int) btrm.getTowerPosition()
          .getX(), (int) btrm.getTowerPosition().getY());
     
      if (grid.isFree()) {
      Tower t = TowerFactory.createTower(this, IConstants.Towers
          .valueOf(IConstants.Towers.class, btrm.getTowerType()),
          grid);
      t.setBuilding(true);
      t.setBuildTime((int) (btrm.getRoundId() - roundId));
View Full Code Here

Examples of gridool.Grid

        return this;
    }

    public Sequence<? extends Item> eval(Sequence<? extends Item> contextSeq, DynamicContext dynEnv)
            throws XQueryException {
        final Grid grid = connectToGrid(true);
        final Sequence<? extends Item> result;
        try {
            result = grid.execute(MapQueryJob.class, this);
        } catch (RemoteException e) {
            throw new XQueryException(e.getMessage(), e);
        }
        return result;
    }
View Full Code Here

Examples of jfix.zk.Grid

    tree.addSelectListener(new ActionListener() {
      public void actionPerformed(Event event) {
        updateContent();
      }
    });
    grid = new Grid();
    grid.setMold("paging");
    appendChild(new Panel(I18N.get("Browser"), new Row(tree, grid)));
    updateContent();
  }
View Full Code Here

Examples of maelstrom.funge.interpreter.Grid

    viewport.add(this);
    return viewport;
  }

  public Dimension getPreferredSize() {
    Grid grid = editor.getGrid();
    Dimension size = grid.getSize();
    Dimension cell = editor.getCell();
    if (vertical) {
      return new Dimension(cell.width, (size.height + 1) * cell.height);
    } else {
      return new Dimension((size.width + 1) * cell.width + 1, cell.height);
View Full Code Here

Examples of net.miginfocom.layout.Grid

    ContainerWrapper par = checkParent(parent);

    setDebug(par, getDebugMillis() > 0);

    if (grid == null)
      grid = new Grid(par, lc, rowSpecs, colSpecs, ccMap, callbackList);

    dirty = false;
  }
View Full Code Here

Examples of net.wigis.graph.dnv.layout.helpers.Grid

      // + level + " Number of Nodes: " + graph.getGraphSize( level ) );

      Vector2D difference = new Vector2D();
      float length;

      Grid grid = new Grid( k * 2, graph, level );
      List<DNVNode> potentialNodes;

      // float maxYAtDistance1 = Float.NEGATIVE_INFINITY;
      // float minYAtDistance1 = Float.POSITIVE_INFINITY;
      // float tempY;
      // float distance;
      // repulsive forces
      for( DNVNode v : graph.getNodes( level ) )
      {
        v.setForce( 0, 0 );
        potentialNodes = grid.getPotentialNodes( v );
        for( DNVNode u : potentialNodes )
        {
          if( u != v )
          {
            difference.set( v.getPosition() );
View Full Code Here

Examples of nextapp.echo2.app.Grid

    protected JbsLangEntryHelper createTextField(JbsLanguage language) {
        return new JbsLangEntryTextField(language);
    }

    protected void initPanel() {
        Grid grdMain = new Grid(2);
        grdMain.setInsets(new nextapp.echo2.app.Insets(5, 5));
        grdMain.setColumnWidth(0, new JbsExtent(300));

        Iterator<JbsLangEntryHelper> it = this.getTextFields().iterator();
        while (it.hasNext()) {
            JbsLangEntryTextField txtField = (JbsLangEntryTextField) it.next();
            grdMain.add(new Label(txtField.getLanguage().getName()));
            grdMain.add(txtField);
        }

        this.getPnMain().add(grdMain);
    }
View Full Code Here

Examples of org.apache.myfaces.tobago.internal.layout.Grid

    if (!getLayoutContainer().isLayoutChildren()) {
      return;
    }

    grid = new Grid(LayoutTokens.parse(getColumns()), LayoutTokens.parse(getRows()));

    List<LayoutComponent> components = getLayoutContainer().getComponents();
    for (LayoutComponent component : components) {
      component.setCurrentHeight(null);
      component.setCurrentWidth(null);
View Full Code Here

Examples of org.apache.struts2.jquery.components.Grid

    super();
  }

  @Override
  public Component getBean(ValueStack stack, HttpServletRequest req, HttpServletResponse res) {
    Component bean = new Grid(stack, req, res);
    return bean;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.