Package org.emftrace.ui.controls

Examples of org.emftrace.ui.controls.TextEdit


    typeLabel = new Label(headComposite, SWT.NONE);
    typeLabel.setBackground(headComposite.getBackground());
    typeLabel.setText("Strategy");
    typeLabel.setLayoutData(new RowData(75,25));
   
    captionText = new TextEdit(headComposite, SWT.BORDER | SWT.SINGLE);
    captionText.setToolTipText("please enter here the name for the strategy");
    captionText.setLayoutData(new RowData(593,25));

    deleteButton = new Button(headComposite, SWT.FLAT);
    deleteButton.setToolTipText("delete the strategy");
View Full Code Here


    numberLabel.setToolTipText("the numbering of the factor");

    numberLabel.setLayoutData(new RowData(100, 25));
    typeLabel.setLayoutData(new RowData(100, 25));
   
    captionText = new TextEdit(captionComposite, SWT.BORDER | SWT.SINGLE);
    captionText.setToolTipText("please enter here the name of the factor");   
   
    Label descriptionLabel = new Label(editorComposite, SWT.None);
    descriptionLabel.setText("description");
    descriptionLabel.setBackground(descriptionLabel.getParent().getBackground());
View Full Code Here

   
    numberLabel = new Label(captionComposite, SWT.NONE);
    numberLabel.setBackground(numberLabel.getParent().getBackground());
    numberLabel.setToolTipText("the numbering of the factor category");
   
    captionText = new TextEdit(captionComposite, SWT.BORDER | SWT.SINGLE);
    captionText.setToolTipText("please enter here the name for the factor category");
   
    numberLabel.setLayoutData(new RowData(100, 25));
    typeLabel.setLayoutData(new RowData(100, 25));
   
View Full Code Here

    captionLabel.setBackground(getBaseComposite().getBackground());

    captionLabel.setLayoutData(new RowData(75, 25));

    if (withEditableText) {
      nameText = new TextEdit(getBaseComposite(), SWT.BORDER | SWT.SINGLE);
      nameText.setEditable(true);
      nameText.setLayoutData(new RowData(600, 25));
    } else {
      nameText = new TextEdit(getBaseComposite(), SWT.NONE  | SWT.SINGLE);
      nameText.setEditable(false);
      nameText.setBackground(nameText.getParent().getBackground());

      nameText.setLayoutData(new RowData(610, 25));
    }
View Full Code Here

TOP

Related Classes of org.emftrace.ui.controls.TextEdit

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.