Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8f0987c33f8b87ff77ccbc1a3ead9a3775c67654 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*******************************************************************************
 * Copyright (c) 2002, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.tests.cheatsheets.parameters;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.*;
import org.eclipse.ui.cheatsheets.ICheatSheetManager;


public class GatherDataDialog extends Dialog {
	private Text t1;
	private Text t2;
	private Text t3;

	private ICheatSheetManager csmanager;
	
	
	public GatherDataDialog(Shell parentShell, ICheatSheetManager csm) {
		super(parentShell);
		csmanager = csm;	
	}

	protected void configureShell(Shell newShell) {
		super.configureShell(newShell);
		newShell.setText("Data Entry"); //$NON-NLS-1$

	}

	protected Control createDialogArea(Composite parent) {
		Composite composite = (Composite) super.createDialogArea(parent);
		GridLayout g = new GridLayout();
		g.numColumns = 1;
		composite.setLayout(g);

		Composite descComposite = new Composite(composite, SWT.NULL);
		GridLayout dg = new GridLayout();
		dg.numColumns = 1;
		descComposite.setLayout(dg);

		Label dl = new Label(descComposite, SWT.NULL);
		dl.setText("Enter some data to be analysed."); //$NON-NLS-1$

		String data = null;
		if (csmanager != null)
			data = csmanager.getData("pattern"); //$NON-NLS-1$

		Composite bComposite = new Composite(composite, SWT.NULL);
		GridLayout bg = new GridLayout(2, false);
		bComposite.setLayout(bg);

		Label l = new Label(bComposite, SWT.NULL);
		l.setText("Please enter you name:"); //$NON-NLS-1$
		t1 = new Text(bComposite, SWT.BORDER);

		l = new Label(bComposite, SWT.NULL);
		l.setText("What is your favorite color:"); //$NON-NLS-1$
		t2 = new Text(bComposite, SWT.BORDER);

		l = new Label(bComposite, SWT.NULL);
		l.setText("Which animal would you most like to own:"); //$NON-NLS-1$
		t3 = new Text(bComposite, SWT.BORDER);
		return composite;
	}

	protected void okPressed() {

		csmanager.setData("name", t1.getText()); //$NON-NLS-1$
		csmanager.setData("color", t2.getText()); //$NON-NLS-1$
		csmanager.setData("animal", t3.getText()); //$NON-NLS-1$
		super.okPressed();
	}
	
}

Back to the top