Examples of VerticalLayout


Examples of com.gwtext.client.widgets.layout.VerticalLayout

      w.setModal(true);
      w.setShadow(true);
      w.setClosable(true);
      w.setPlain(true);

      w.setLayout(new VerticalLayout());
        body = new VerticalPanel();


        addMessage(message, longMessage);
View Full Code Here

Examples of com.softuni.raxus.layouts.VerticalLayout

    buttonsList.add(createPlayButton());
    buttonsList.add(createOptionsButton());
    buttonsList.add(createAboutButton());
    buttonsList.add(createExitButton());

    VerticalLayout verticalLayout = new VerticalLayout(buttonsList);
    return verticalLayout;
  }
View Full Code Here

Examples of com.vaadin.ui.VerticalLayout

        table.addItem(new Object[] { "Larry", "the Bird", "@twitter" }, "larry");
        return table;
    }

    private void forms(CssLayout container) {
        VerticalLayout form = new VerticalLayout();
        form.addStyleName(Bootstrap.Forms.FORM.styleName());
        form.setSpacing(true);
        form.setCaption("Legend");

        TextField email = new TextField("Email address");
        email.setInputPrompt("Enter email");
        form.addComponent(email);

        PasswordField password = new PasswordField("Password");
        password.setInputPrompt("Password");
        form.addComponent(password);

        Upload upload = new Upload("File input", null);
        form.addComponent(upload);

        Label help = new Label("Example block-level help text here.");
        help.addStyleName("help-block");
        form.addComponent(help);

        CheckBox check = new CheckBox("Check me out");
        form.addComponent(check);

        Button submit = new Button("Submit");
        submit.addStyleName(Bootstrap.Buttons.DEFAULT.styleName());
        form.addComponent(submit);

        container.addComponent(form);
    }
View Full Code Here

Examples of csa.gui.VerticalLayout

       
        jLabel14.setIcon(new javax.swing.ImageIcon(t.getImage("JPortalBooster.png")));
       

        jPanel3.removeAll();
        jPanel3.setLayout(new VerticalLayout());

        String klasse = "MagicSets";
        Collection<CardSetData> colC = CardSet.getPool().getMapForKlasse(klasse).values();
        Iterator<CardSetData> iterC = colC.iterator();
View Full Code Here

Examples of de.lessvoid.nifty.layout.manager.VerticalLayout

    if (type == null) {
      return null;
    }
    String typeCompare = type.toLowerCase();
    if (typeCompare.equals("vertical")) {
      return new VerticalLayout();
    } else if (typeCompare.equals("center")) {
      return new CenterLayout();
    } else if (typeCompare.equals("horizontal")) {
      return new HorizontalLayout();
    } else if (typeCompare.equals("overlay")) {
View Full Code Here

Examples of org.apache.jmeter.gui.VerticalLayout

    super.updateGui();
  }

  protected void init()
  {
    this.setLayout(new VerticalLayout(5, VerticalLayout.LEFT, VerticalLayout.TOP));

    // WEB SERVER PANEL
    JPanel webServerPanel = new JPanel();
    webServerPanel.setLayout(new VerticalLayout(5, VerticalLayout.LEFT, VerticalLayout.TOP));
    webServerPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), JMeterUtils.getResString("web_server")));
    webServerPanel.add(getDomainPanel());
    webServerPanel.add(getPortPanel());

    // WEB REQUEST PANEL
    JPanel webRequestPanel = new JPanel();
    webRequestPanel.setLayout(new VerticalLayout(5, VerticalLayout.LEFT, VerticalLayout.TOP));
    webRequestPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), JMeterUtils.getResString("web_request")));
    webRequestPanel.add(getProtocolAndMethodPanel());
    webRequestPanel.add(getPathPanel());
    webRequestPanel.add(getParameterPanel());
    webRequestPanel.add(getFilePanel());

    // If displayName is TRUE, then this GUI is not embedded in another GUI.
    if (displayName)
    {
      // MAIN PANEL
      JPanel mainPanel = new JPanel();
      Border margin = new EmptyBorder(10, 10, 5, 10);
      mainPanel.setBorder(margin);
      mainPanel.setLayout(new VerticalLayout(5, VerticalLayout.LEFT));

      // TITLE
      JLabel panelTitleLabel = new JLabel(JMeterUtils.getResString("url_full_config_title"));
      Font curFont = panelTitleLabel.getFont();
      int curFontSize = curFont.getSize();
View Full Code Here

Examples of org.apache.jmeter.gui.util.VerticalLayout

      }
    });
    //rootHome = new DefaultMutableTreeNode("Root");
    //treeModelHome = new DefaultTreeModel(rootHome);
    this.setLayout(
      new VerticalLayout(5, VerticalLayout.LEFT, VerticalLayout.TOP));
    JPanel mainPanel = new JPanel();
    Border margin = new EmptyBorder(10, 10, 5, 10);
    mainPanel.setBorder(margin);
    mainPanel.setLayout(new VerticalLayout(5, VerticalLayout.LEFT));
    // title
    JLabel panelTitleLabel =
      new JLabel(JMeterUtils.getResString("jndi_method_title"));
    Font curFont = panelTitleLabel.getFont();
    int curFontSize = curFont.getSize();
    curFontSize += 4;
    panelTitleLabel.setFont(
      new Font(curFont.getFontName(), curFont.getStyle(), curFontSize));
    mainPanel.add(panelTitleLabel);
    // name
    namePanel = new NamePanel(model);
    mainPanel.add(namePanel);
    // method properties
    JPanel jndiPanel = new JPanel();
    jndiPanel.setLayout(new VerticalLayout(5, VerticalLayout.LEFT));
    jndiPanel.setBorder(
      BorderFactory.createTitledBorder(
        JMeterUtils.getResString("jndi_method_name")));
    methodHomeNamePanel = getMethodHomeNamePanel();
    methodHomeParmsPanel = getMethodHomeParmsPanel();
View Full Code Here

Examples of org.apache.jorphan.gui.layout.VerticalLayout

        // MAIN PANEL
        JPanel mainPanel = new JPanel();
        Border margin = new EmptyBorder(10, 10, 5, 10);

        mainPanel.setBorder(margin);
        mainPanel.setLayout(new VerticalLayout(5, VerticalLayout.BOTH));

        // NAME
        mainPanel.add(makeTitlePanel());

        // Set up the table itself
View Full Code Here

Examples of org.apache.jorphan.gui.layout.VerticalLayout

        // MAIN PANEL
        JPanel mainPanel = new JPanel();
        Border margin = new EmptyBorder(10, 10, 5, 10);

        mainPanel.setBorder(margin);
        mainPanel.setLayout(new VerticalLayout(5, VerticalLayout.BOTH));

        // NAME
        mainPanel.add(makeTitlePanel());

        maximumLabel = new JLabel(JMeterUtils.getResString("spline_visualizer_maximum")); //$NON-NLS-1$
View Full Code Here

Examples of org.apache.jorphan.gui.layout.VerticalLayout

    public int getState() {
        return execState;
    }

    private void init() {
        setLayout(new VerticalLayout(5, VerticalLayout.BOTH, VerticalLayout.TOP));
        setBorder(makeBorder());

        add(makeTitlePanel());

        add(createScopePanel(true));
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.