tmf: Switch tmf.ui to Java 7 + fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / importtrace / ImportTraceWizardPageOptions.java
CommitLineData
a2d29ca1
MK
1/*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
d600c18f 11 * Marc-Andre Laperle - Use common method to get opened tmf projects
a2d29ca1
MK
12 *******************************************************************************/
13
14package org.eclipse.linuxtools.tmf.ui.project.wizards.importtrace;
15
16import java.util.LinkedHashMap;
17import java.util.Map;
18
19import org.eclipse.core.resources.IFolder;
20import org.eclipse.core.resources.IProject;
a2d29ca1 21import org.eclipse.jface.viewers.IStructuredSelection;
d600c18f 22import org.eclipse.linuxtools.tmf.ui.project.model.TraceUtils;
a2d29ca1
MK
23import org.eclipse.swt.SWT;
24import org.eclipse.swt.events.SelectionEvent;
25import org.eclipse.swt.events.SelectionListener;
26import org.eclipse.swt.layout.GridData;
27import org.eclipse.swt.layout.GridLayout;
28import org.eclipse.swt.widgets.Composite;
29import org.eclipse.swt.widgets.List;
30import org.eclipse.ui.IWorkbench;
31
32/**
33 * This page selects the project to import to.
34 *
35 * @author Matthew Khouzam
36 * @since 2.0
37 */
38public class ImportTraceWizardPageOptions extends AbstractImportTraceWizardPage {
39
40 private List fProjects;
507b1336 41 private final Map<String, IProject> fProjectsMap = new LinkedHashMap<>();
a2d29ca1
MK
42
43 /**
44 * Import page that tells where the trace will go
45 *
46 * @param workbench
47 * The workbench reference.
48 * @param selection
49 * The current selection
50 */
51 public ImportTraceWizardPageOptions(IWorkbench workbench, IStructuredSelection selection) {
52 super(workbench, selection);
53 }
54
55 @Override
56 public void createControl(Composite parent) {
57 super.createControl(parent);
58 IFolder originalFolder = getBatchWizard().getTargetFolder();
59 IProject proj = null;
60 if (originalFolder != null) {
61 proj = originalFolder.getProject();
62 }
63
64 Composite optionPane = (Composite) this.getControl();
65 optionPane.setLayout(new GridLayout());
66 optionPane.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, true));
67
de2501f8 68 fProjects = new List(optionPane, SWT.V_SCROLL);
a2d29ca1
MK
69 fProjects.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
70
d600c18f
MAL
71 for (IProject project : TraceUtils.getOpenedTmfProjects()) {
72 final String name = project.getName();
73 fProjectsMap.put(name, project);
74 fProjects.add(name);
a2d29ca1
MK
75 }
76
77 fProjects.getSelection();
78 fProjects.addSelectionListener(new SelectionListener() {
79
a2d29ca1
MK
80 @Override
81 public void widgetSelected(SelectionEvent e) {
014d3bab 82 updateWithSelection();
a2d29ca1
MK
83 }
84
85 @Override
86 public void widgetDefaultSelected(SelectionEvent e) {
014d3bab 87 updateWithSelection();
a2d29ca1
MK
88 }
89 });
90 if (proj != null) {
91 fProjects.setSelection(fProjects.indexOf(proj.getName()));
ae2b897a
MAL
92 } else if (fProjects.getItemCount() > 0) {
93 fProjects.setSelection(0);
a2d29ca1 94 }
014d3bab 95 updateWithSelection();
ae2b897a 96 setMessage(Messages.SharedSelectProject);
32a0863e 97 this.setTitle(Messages.ImportTraceWizardPageOptionsTitle);
a2d29ca1 98 }
014d3bab
MAL
99
100 private void updateWithSelection() {
101 final String TRACE = "Traces"; //$NON-NLS-1$
102 String[] selection = fProjects.getSelection();
103 if (selection.length > 0) {
104 final String listItem = selection[0];
105 IFolder folder = fProjectsMap.get(listItem).getFolder(TRACE);
106 getBatchWizard().setTraceFolder(folder);
107 ImportTraceWizardPageOptions.this.setErrorMessage(null);
108 } else {
109 ImportTraceWizardPageOptions.this.setErrorMessage(Messages.SharedSelectProject);
110 }
111 }
a2d29ca1 112}
This page took 0.040427 seconds and 5 git commands to generate.