Package de.fu_berlin.inf.dpp.util

Examples of de.fu_berlin.inf.dpp.util.LinkListener


                .align(SWT.FILL, SWT.BEGINNING)
                .grab(true, false)
                .hint(
                    convertHorizontalDLUsToPixels(IDialogConstants.MINIMUM_MESSAGE_AREA_WIDTH),
                    SWT.DEFAULT).applyTo(messageLabel);
            messageLabel.addListener(SWT.Selection, new LinkListener());
        }
        return composite;
    }
View Full Code Here


        Link message = new Link(statisticSubmissionComposite, SWT.WRAP);
        message.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
        message
            .setText(de.fu_berlin.inf.dpp.ui.Messages.ConfigurationSettingsWizardPage_feedback_descr);
        message.addListener(SWT.Selection, new LinkListener());

        statisticSubmissionButton = new Button(statisticSubmissionComposite,
            SWT.CHECK | SWT.WRAP);
        statisticSubmissionButton.setLayoutData(new GridData(SWT.FILL,
            SWT.CENTER, true, false));
View Full Code Here

        Link link = new Link(group, SWT.WRAP);
        link.setText(Messages.getString("feedback.page.participate.now")); //$NON-NLS-1$
        GridData gd = new GridData(SWT.FILL, SWT.CENTER, false, false);
        gd.widthHint = convertWidthInCharsToPixels(60);
        link.setLayoutData(gd);
        link.addListener(SWT.Selection, new LinkListener());

        Button startSurveyButton = new Button(group, SWT.PUSH);
        startSurveyButton.setText(Messages
            .getString("feedback.page.survey.start")); //$NON-NLS-1$
        startSurveyButton.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER,
View Full Code Here

            true, false));

        Link label = new Link(pseudonymityIDGroup, SWT.NONE);
        label.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false));
        label.setText(Messages.getString("feedback.page.userid")); //$NON-NLS-1$
        label.addListener(SWT.Selection, new LinkListener());

        statisticsPseudonymText = new Text(pseudonymityIDGroup, SWT.SINGLE
            | SWT.BORDER);
        statisticsPseudonymText.setLayoutData(new GridData(SWT.FILL,
            SWT.CENTER, true, false));
View Full Code Here

        /*
         * TODO maybe use desktop api (java 1.6) here instead to open a new mail
         * directly. right now the browser is first opened and he then opens a
         * mail window.
         */
        linkMail.addListener(SWT.Selection, new LinkListener());

        Link linkBug = new Link(group, SWT.NONE);
        linkBug.setText(Messages.getString("feedback.page.bug.tracker")); //$NON-NLS-1$
        gd = new GridData(SWT.FILL, SWT.CENTER, false, false);
        gd.widthHint = convertWidthInCharsToPixels(70);
        linkBug.setLayoutData(gd);
        linkBug.addListener(SWT.Selection, new LinkListener());
    }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.util.LinkListener

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.