Package org.gwt.mosaic.ui.client.layout

Examples of org.gwt.mosaic.ui.client.layout.BoxLayout


    prevButton.setEnabled(page > 0);
  }

 
  private MosaicPanel createEndTimeDateBox(BoxLayoutData bld1) {
    MosaicPanel box4 = new MosaicPanel(new BoxLayout());
    endTime = new DateBox();
    endTime.setWidth("550px");
    box4.add(new Label("End Time: "), bld1);
    box4.add(endTime);
    return box4;
View Full Code Here


    return box4;
  }


  private MosaicPanel createStartTimeDateBox(BoxLayoutData bld1) {
    MosaicPanel box3 = new MosaicPanel(new BoxLayout());
    startTime = new DateBox();
    startTime.setWidth("550px");
    box3.add(new Label("Start Time: "), bld1);
    box3.add(startTime);
    return box3;
View Full Code Here

    return box3;
  }


  private MosaicPanel createCorrelationKeyTextBox(BoxLayoutData bld1) {
    MosaicPanel box2 = new MosaicPanel(new BoxLayout());
    correlationKey = new TextBox();
    correlationKey.setWidth("550px");
    box2.add(new Label("Correlation Key: "), bld1);
    box2.add(correlationKey);
    box2.add(new Label(" format: correlation name = [correlation value], e.g Session=[1]"));
View Full Code Here

    return box2;
  }


  private MosaicPanel createProcessStatusListBox(BoxLayoutData bld1) {
    MosaicPanel box1 = new MosaicPanel(new BoxLayout());
    processStatusList = new ListBox();
    processStatusList.addItem("COMPLETED");
    processStatusList.addItem("FAILED");
    processStatusList.addItem("TERMINATED");   
    box1.add(new Label("Process Status: "), bld1);
View Full Code Here

  private String toolSetId = null;

  public WSToolSetLauncher(String id, final ToolSet toolSet)
  {
    super(new BoxLayout(BoxLayout.Orientation.VERTICAL));
    setPadding(3);


     // widget, if available
    Widget w = toolSet.getWidget();
View Full Code Here

    }
  };

  public Header(ApplicationContext appContext, String username, List<String> roles)
  {
    super(new BoxLayout(BoxLayout.Orientation.HORIZONTAL));
    this.setStyleName("bpm-header");

    this.appContext = appContext;

    createInfoPanel();
View Full Code Here

  private void createInfoPanel()
  {

    // ----------- logo panel
    LayoutPanel logoPanel = new LayoutPanel(new BoxLayout());
    logoPanel.setStyleName("bpm-header-left");

    Image logo = new Image(appContext.getConfig().getLogo());
    logo.setHeight("50");   
    logoPanel.add(logo);
View Full Code Here

  private SearchWindow parent;

  public SearchDefinitionView(ApplicationContext appContext, SearchDelegate delegate)
  {
    super(new BoxLayout(BoxLayout.Orientation.VERTICAL));
   
    this.appContext = appContext;
    this.delegate = delegate;
    this.setPadding(5);
View Full Code Here

  {
    if(!isInitialized)
    {

      // layout
      layout = new LayoutPanel( new BoxLayout(BoxLayout.Orientation.VERTICAL));
      layout.setPadding(0);
      layout.setWidgetSpacing(0);

      // search capabilities
      search = new SearchDefinitionView(
View Full Code Here

  {
    super("Instance details");
    this.appContext = appContext;

    super.setStyleName("bpm-detail-panel");
    super.setLayout(new BoxLayout(BoxLayout.Orientation.HORIZONTAL));

    grid = new PropertyGrid(
        new String[] {"ID:", "Key:", "State", "Start Date:", "Activity:"}
    );

    this.add(grid, new BoxLayoutData(BoxLayoutData.FillStyle.BOTH));

    LayoutPanel buttonPanel = new LayoutPanel(new BoxLayout(BoxLayout.Orientation.VERTICAL) );
    diagramBtn = new Button("Diagram",
        new ClickListener()
        {
          public void onClick(Widget widget)
          {
View Full Code Here

TOP

Related Classes of org.gwt.mosaic.ui.client.layout.BoxLayout

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.