Package org.eclipse.swt.widgets

Examples of org.eclipse.swt.widgets.Group


    shell.setLayout(gridLayout);
    shell.setSize(411, 200);

    shell.setText("Execute");
    {
      final Group jobGroup = new Group(shell, SWT.NONE);
      jobGroup.setText( "Job: " + Utils.getAttributeValue("name", job));
      final GridData gridData = new GridData(GridData.FILL, GridData.CENTER, true, true, 3, 1);
      jobGroup.setLayoutData(gridData);
      final GridLayout gridLayout_1 = new GridLayout();
      gridLayout_1.verticalSpacing = 10;
      gridLayout_1.horizontalSpacing = 10;
      gridLayout_1.marginWidth = 10;
      gridLayout_1.marginTop = 10;
      gridLayout_1.marginRight = 10;
      gridLayout_1.marginLeft = 10;
      gridLayout_1.marginHeight = 10;
      gridLayout_1.marginBottom = 10;
      gridLayout_1.numColumns = 5;
      jobGroup.setLayout(gridLayout_1);

      butProcess = new Button(jobGroup, SWT.RADIO);
      butProcess.setLayoutData(new GridData());
      butProcess.setText("Process");
      butProcess.setSelection(job.getChild("process")!=null);
View Full Code Here


  /**
   * This method initializes group
   */
  private void createGroup() {

    jobChainGroup = new Group(this, SWT.NONE);       
    final GridLayout gridLayout = new GridLayout();
    jobChainGroup.setLayout(gridLayout);   

    gNodes = new Group(jobChainGroup, SWT.NONE);
    final GridData gridData_2 = new GridData(GridData.FILL, GridData.FILL, true, true);
    gridData_2.heightHint = 170;
    gNodes.setLayoutData(gridData_2);
    gNodes.setText("Chain Jain Node");
    final GridLayout gridLayout_3 = new GridLayout();
View Full Code Here

    String step = "  ";   
    step = step + " [Step 9 of 9]";   
    shellSetBack.setText("Delay Order After Setback" + step);


    final Group jobGroup = new Group(shellSetBack, SWT.NONE);
    jobGroup.setText(" Job: " + Utils.getAttributeValue("name", job));
    final GridData gridData_2 = new GridData(GridData.FILL, GridData.CENTER, false, true, 2, 1);
    gridData_2.heightHint = 215;
    gridData_2.widthHint = 507;
    jobGroup.setLayoutData(gridData_2);
    final GridLayout gridLayout_1 = new GridLayout();
    gridLayout_1.marginWidth = 10;
    gridLayout_1.marginTop = 10;
    gridLayout_1.marginRight = 10;
    gridLayout_1.marginLeft = 10;
    gridLayout_1.marginHeight = 10;
    gridLayout_1.marginBottom = 10;
    gridLayout_1.numColumns = 5;
    jobGroup.setLayout(gridLayout_1);

    List l = optionlistener.getSetbacks();
    sizeOfSetbacks = l.size();
    int hour = 0;
    int min = 0;
View Full Code Here

      schedulerConfigurationShell.setLayout(gridLayout);
      schedulerConfigurationShell.setSize(625, 486);
      schedulerConfigurationShell.setText(type);

      {
        schedulerGroup = new Group(schedulerConfigurationShell, SWT.NONE);
        schedulerGroup.setText("Open");
        final GridData gridData = new GridData(GridData.FILL,
            GridData.FILL, true, true, 2, 1);
        gridData.widthHint = 581;
        gridData.heightHint = 329;
View Full Code Here

        GridData gridData1 = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.BEGINNING, false, false);
        GridLayout gridLayout = new GridLayout();
        gridLayout.numColumns = 3;
        gridLayout.verticalSpacing = 5;
        gridLayout.horizontalSpacing = 5;
        group = new Group(this, SWT.NONE);
        group.setText("Base Files");
        group.setLayout(gridLayout);
        label1 = new Label(group, SWT.NONE);
        label1.setText("Base File:");
        tFile = new Text(group, SWT.BORDER);
View Full Code Here

     * This method initializes group
     */
    private void createGroup() {
        GridLayout gridLayout = new GridLayout();
        gridLayout.numColumns = 1;
        group = new Group(this, SWT.NONE);
        group.setText("Run Options");
        createGroup1();
        group.setLayout(gridLayout);
        createGroup3();
        createGroup2();
View Full Code Here

        GridData gridData = new org.eclipse.swt.layout.GridData();
        gridData.horizontalAlignment = org.eclipse.swt.layout.GridData.FILL;
        gridData.grabExcessHorizontalSpace = true;
        gridData.grabExcessVerticalSpace = true;
        gridData.verticalAlignment = org.eclipse.swt.layout.GridData.FILL;
        group1 = new Group(group, SWT.NONE);
        group1.setText("Start When Directory Changed");
        group1.setLayout(gridLayout1);
        group1.setLayoutData(gridData);
        label = new Label(group1, SWT.NONE);
        label.setText("Watch Directory:");
View Full Code Here

        GridData gridData1 = new org.eclipse.swt.layout.GridData();
        gridData1.horizontalAlignment = org.eclipse.swt.layout.GridData.FILL;
        gridData1.grabExcessHorizontalSpace = true;
        gridData1.grabExcessVerticalSpace = true;
        gridData1.verticalAlignment = org.eclipse.swt.layout.GridData.FILL;
        group2 = new Group(group, SWT.NONE);
        group2.setText("Delay After Error");
        group2.setLayoutData(gridData1);
        group2.setLayout(gridLayout3);
        label4 = new Label(group2, SWT.NONE);
        label4.setText("Error count:");
View Full Code Here

        GridData gridData2 = new org.eclipse.swt.layout.GridData();
        gridData2.horizontalAlignment = org.eclipse.swt.layout.GridData.FILL;
        gridData2.grabExcessHorizontalSpace = true;
        gridData2.grabExcessVerticalSpace = true;
        gridData2.verticalAlignment = org.eclipse.swt.layout.GridData.FILL;
        group3 = new Group(group, SWT.NONE);
        group3.setText("Delay Order After Set Back");
        group3.setLayout(gridLayout2);
        group3.setLayoutData(gridData2);
        label2 = new Label(group3, SWT.NONE);
        label2.setText("Set Back Count:");
View Full Code Here

        GridData gridData = new org.eclipse.swt.layout.GridData();
        gridData.horizontalAlignment = org.eclipse.swt.layout.GridData.FILL;
        gridData.verticalAlignment = org.eclipse.swt.layout.GridData.BEGINNING;
        GridLayout gridLayout = new GridLayout();
        gridLayout.numColumns = 2;
        commandsGroup = new Group(this, SWT.NONE);
        commandsGroup.setText("Commands");
        commandsGroup.setLayout(gridLayout);
        createTable();
        bNewCommands = new Button(commandsGroup, SWT.NONE);
        bNewCommands.setText("&New Command");
View Full Code Here

TOP

Related Classes of org.eclipse.swt.widgets.Group

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.