Package fr.soleil.comete.swt

Examples of fr.soleil.comete.swt.TextArea


        componentPanel.setLayoutData(componentGridData);

        // set a background to let user see limits of the component
        componentPanel.setBackground(new Color(Display.getCurrent(), 255, 175, 175));// PINK as in awt

        TextArea theComponent = new TextArea(componentPanel, SWT.NONE);
        theComponent.setText("A textArea");
        theComponent.setLayoutData(new RowData(100, 30));
        // ----------

        Group testPanelIComponent = IComponentTestPanel.getTestPanel(mainComposite, theComponent);
        Group testPanelIEditableComponent = IEditableComponentTestPanel.getTestPanel(mainComposite, theComponent);
        Group testPanelITextTarget = ITextTargetTestPanel.getTestPanel(mainComposite, theComponent);
View Full Code Here


        componentPanel.setLayoutData(componentGridData);

        // set a background to let user see limits of the component
        componentPanel.setBackground(new Color(Display.getCurrent(), 255, 175, 175));// PINK as in awt

        final TextArea theComponent = new TextArea(componentPanel, SWT.NONE);
        theComponent.setText("A TextArea");
        theComponent.setLayoutData(new RowData(100, 30));
        // ----------
        Group testPanel = getTestPanel(mainComposite, theComponent);

        GridData testPanelGridData = new GridData();
        testPanelGridData.grabExcessHorizontalSpace = true;
View Full Code Here

TOP

Related Classes of fr.soleil.comete.swt.TextArea

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.