Package de.fu_berlin.inf.dpp.ui.widgets.explanation.note

Examples of de.fu_berlin.inf.dpp.ui.widgets.explanation.note.SimpleNoteComposite


        /*
         * 2nd row
         */

        SimpleNoteComposite x = new SimpleNoteComposite(composite, SWT.BORDER,
            SWT.ICON_INFORMATION,
            Messages.EnterXMPPAccountWizardPage_info_already_created_account);
        x.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false, 3, 1));
        x.setSpacing(8);

        hookListeners();
        updatePageCompletion();
    }
View Full Code Here


        PublicXMPPServerComposite publicServers = new PublicXMPPServerComposite(
            leftColumn, SWT.BORDER);
        publicServers.setLayoutData(LayoutUtils.createFillHGrabGridData());

        new Label(leftColumn, SWT.NONE);
        SimpleNoteComposite sarosRestriction = new SimpleNoteComposite(
            leftColumn, SWT.BORDER, SWT.ICON_WARNING,
            Messages.xmpp_saros_restriction);
        sarosRestriction.setLayoutData(LayoutUtils.createFillHGrabGridData());

        /*
         * Row 2
         */
        Label usernameLabel = new Label(leftColumn, SWT.NONE);
View Full Code Here

            false));
        successLabel
            .setText(de.fu_berlin.inf.dpp.ui.Messages.ConfigurationSummaryWizardPage_label_success);
        FontUtils.makeBold(successLabel);

        SimpleNoteComposite check = new SimpleNoteComposite(
            autoConnectComposite, SWT.BORDER,
            ImageManager.ELCL_PREFERENCES_OPEN,
            de.fu_berlin.inf.dpp.ui.Messages.ConfigurationSummaryWizardPage_check_settings);
        check.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
        check.setSpacing(5);

        SimpleNoteComposite addBuddies = new SimpleNoteComposite(
            autoConnectComposite, SWT.BORDER, ImageManager.ELCL_BUDDY_ADD,
            de.fu_berlin.inf.dpp.ui.Messages.ConfigurationSummaryWizardPage_addBuddies);
        addBuddies
            .setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
        addBuddies.setSpacing(5);

        SimpleNoteComposite shareProjects = new SimpleNoteComposite(
            autoConnectComposite,
            SWT.BORDER,
            ImageManager.ELCL_PROJECT_SHARE,
            de.fu_berlin.inf.dpp.ui.Messages.ConfigurationSummaryWizardPage_share_project);
        shareProjects.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true,
            false));
        shareProjects.setSpacing(5);

        return leftColumn;
    }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.ui.widgets.explanation.note.SimpleNoteComposite

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.