Skip to main content
summaryrefslogtreecommitdiffstats
blob: bab8cd1da381b018658c05b4004063f7e0d354a3 (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
/*******************************************************************************
 * 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;

import java.util.ArrayList;
import java.util.logging.Level;
import org.eclipse.jface.viewers.DoubleClickEvent;
import org.eclipse.jface.viewers.IDoubleClickListener;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.osee.framework.access.AccessControlManager;
import org.eclipse.osee.framework.core.enums.PermissionEnum;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.logging.OseeLevel;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.UserManager;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.ui.skynet.preferences.EditorsPreferencePage;
import org.eclipse.osee.framework.ui.skynet.render.PresentationType;
import org.eclipse.osee.framework.ui.skynet.render.RendererManager;
import org.eclipse.search.ui.text.Match;

/**
 * @author Ryan D. Brooks
 */
public class ArtifactDoubleClick implements IDoubleClickListener {
   public void doubleClick(DoubleClickEvent event) {
      openArtifact(event.getSelection());
   }

   public static void openArtifact(ISelection selection) {
      IStructuredSelection structSel = (IStructuredSelection) selection;
      Object object = structSel.getFirstElement();
      Artifact artifact = null;
      if (object instanceof Artifact) {
         artifact = (Artifact) structSel.getFirstElement();
      } else if (object instanceof Match) {
         Match match = (Match) object;

         if (match.getElement() instanceof Artifact) {
            artifact = (Artifact) match.getElement();
         }
      }

      if (artifact == null) {
         OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, "The artifact associated with the double-click was null");
      } else {
         try {
            if (AccessControlManager.hasPermission(artifact, PermissionEnum.READ)) {
               ArrayList<Artifact> artifacts = new ArrayList<Artifact>(1);
               artifacts.add(artifact);

               if (EditorsPreferencePage.isPreviewOnDoubleClickForWordArtifacts()) {
                  RendererManager.previewInJob(artifact);
               } else {
                  RendererManager.openInJob(artifact, PresentationType.GENERALIZED_EDIT);
               }

            } else {
               OseeLog.log(SkynetGuiPlugin.class, OseeLevel.SEVERE_POPUP,
                     "The user " + UserManager.getUser() + " does not have read access to " + artifact);
            }
         } catch (OseeCoreException ex) {
            OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
         }
      }
   }
}

Back to the top