tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / dialogs / SelectSupplementaryResourcesDialog.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 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 * Francois Chouinard - Copied and adapted from NewFolderDialog
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.tmf.ui.project.dialogs;
14
15 import java.io.File;
16 import java.util.Arrays;
17
18 import org.eclipse.core.resources.IResource;
19 import org.eclipse.jface.dialogs.Dialog;
20 import org.eclipse.jface.dialogs.IDialogConstants;
21 import org.eclipse.jface.viewers.CheckboxTreeViewer;
22 import org.eclipse.jface.viewers.ITreeContentProvider;
23 import org.eclipse.jface.viewers.LabelProvider;
24 import org.eclipse.jface.viewers.Viewer;
25 import org.eclipse.swt.SWT;
26 import org.eclipse.swt.graphics.Point;
27 import org.eclipse.swt.layout.GridData;
28 import org.eclipse.swt.layout.GridLayout;
29 import org.eclipse.swt.widgets.Composite;
30 import org.eclipse.swt.widgets.Control;
31 import org.eclipse.swt.widgets.Group;
32 import org.eclipse.swt.widgets.Shell;
33 import org.eclipse.swt.widgets.Tree;
34 import org.eclipse.ui.ISharedImages;
35 import org.eclipse.ui.PlatformUI;
36
37 /**
38 * SelectSupplementaryResourcesDialog
39 */
40 public class SelectSupplementaryResourcesDialog extends Dialog {
41
42 // ------------------------------------------------------------------------
43 // Members
44 // ------------------------------------------------------------------------
45 private CheckboxTreeViewer fTreeViewer;
46 private final IResource[] fAvailableResources;
47 private IResource[] fReturndResources;
48
49 // ------------------------------------------------------------------------
50 // Constructor
51 // ------------------------------------------------------------------------
52
53 /**
54 * Constructor.
55 *
56 * @param shell
57 * Parent shell of this dialog
58 * @param resources
59 * Available resources
60 */
61 public SelectSupplementaryResourcesDialog(Shell shell, IResource[] resources) {
62 super(shell);
63 fAvailableResources = Arrays.copyOf(resources, resources.length);
64 setShellStyle(SWT.RESIZE);
65 }
66
67 // ------------------------------------------------------------------------
68 // Getters/Setters
69 // ------------------------------------------------------------------------
70
71 /**
72 * @return A copy of the resources
73 */
74 public IResource[] getResources() {
75 return Arrays.copyOf(fReturndResources, fReturndResources.length);
76 }
77
78 // ------------------------------------------------------------------------
79 // Dialog
80 // ------------------------------------------------------------------------
81
82 @Override
83 protected void configureShell(Shell newShell) {
84 super.configureShell(newShell);
85 newShell.setText(Messages.SelectSpplementaryResources_DialogTitle);
86 newShell.setImage(PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_ETOOL_DELETE));
87 }
88
89 @Override
90 protected Control createDialogArea(Composite parent) {
91 Composite composite = (Composite) super.createDialogArea(parent);
92 composite.setLayout(new GridLayout());
93 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
94
95 Group contextGroup = new Group(composite, SWT.SHADOW_NONE);
96 contextGroup.setText(Messages.SelectSpplementaryResources_ResourcesGroupTitle);
97 contextGroup.setLayout(new GridLayout());
98 contextGroup.setLayoutData(new GridData(GridData.FILL_BOTH));
99
100 fTreeViewer = new CheckboxTreeViewer(contextGroup, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
101 GridData data = new GridData(GridData.FILL_BOTH);
102 Tree tree = fTreeViewer.getTree();
103 tree.setLayoutData(data);
104 fTreeViewer.setContentProvider(new ITreeContentProvider() {
105
106 @Override
107 public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
108 }
109
110 @Override
111 public void dispose() {
112 }
113
114 @Override
115 public boolean hasChildren(Object element) {
116 if (element instanceof IResource[]) {
117 return true;
118 }
119 return false;
120 }
121
122 @Override
123 public Object getParent(Object element) {
124 return null;
125 }
126
127 @Override
128 public Object[] getElements(Object inputElement) {
129 return getChildren(inputElement);
130 }
131
132 @Override
133 public Object[] getChildren(Object parentElement) {
134 if (parentElement instanceof IResource[]) {
135 return (Object[]) parentElement;
136 }
137 return null;
138 }
139 });
140
141 // fTreeViewer.setLabelProvider(new WorkbenchLabelProvider());
142
143 fTreeViewer.setLabelProvider(new LabelProvider() {
144 @Override
145 public String getText(Object element) {
146 if (element instanceof IResource) {
147 IResource resource = (IResource) element;
148 // show also trace name
149 return resource.getParent().getName() + File.separator + resource.getName();
150 }
151 return super.getText(element);
152 }
153 });
154 fTreeViewer.setInput(fAvailableResources);
155
156 getShell().setMinimumSize(new Point(300, 150));
157
158 return composite;
159 }
160
161 @Override
162 protected void createButtonsForButtonBar(Composite parent) {
163 createButton(parent, IDialogConstants.CANCEL_ID, "&Cancel", true); //$NON-NLS-1$
164 createButton(parent, IDialogConstants.OK_ID, "&Ok", true); //$NON-NLS-1$
165 }
166
167 @Override
168 protected void okPressed() {
169 Object[] checked = fTreeViewer.getCheckedElements();
170
171 fReturndResources = new IResource[checked.length];
172 for (int i = 0; i < checked.length; i++) {
173 fReturndResources[i] = (IResource) checked[i];
174 }
175 super.okPressed();
176 }
177
178 }
This page took 0.038205 seconds and 6 git commands to generate.