Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a51051ff007504f8f2416dfb568a1814c3f7bdb (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.results.table.xresults;

import java.util.ArrayList;
import java.util.List;
import org.eclipse.nebula.widgets.xviewer.XViewer;
import org.eclipse.nebula.widgets.xviewer.XViewerColumn;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.ui.skynet.render.PresentationType;
import org.eclipse.osee.framework.ui.skynet.render.RendererManager;
import org.eclipse.osee.framework.ui.skynet.results.table.ResultsXViewerRow;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TreeItem;

/**
 * @author Donald G. Dunne
 */
public class ResultsXViewer extends XViewer {

   /**
    * @param parent
    * @param style
    * @param namespace
    * @param viewerFactory
    */
   public ResultsXViewer(Composite parent, int style, List<XViewerColumn> xColumns) {
      super(parent, style, new ResultsXViewerFactory(xColumns));
   }

   @Override
   public void handleDoubleClick() {
      if (getSelectedRows().size() > 0) {
         Artifact art = getSelectedRows().iterator().next().getDoubleClickOpenArtifact();
         if (art != null) {
            RendererManager.openInJob(art, PresentationType.DEFAULT_OPEN);
         }
      }
   }

   public ArrayList<ResultsXViewerRow> getSelectedRows() {
      ArrayList<ResultsXViewerRow> arts = new ArrayList<ResultsXViewerRow>();
      TreeItem items[] = getTree().getSelection();
      for (TreeItem item : items) {
         arts.add((ResultsXViewerRow) item.getData());
      }
      return arts;
   }
}

Back to the top