File: SharedUiPlugin.java

package info (click to toggle)
eclipse-pydev 3.9.2-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,908 kB
  • ctags: 37,809
  • sloc: java: 291,272; python: 31,558; xml: 6,240; ansic: 569; sh: 155; makefile: 86
file content (144 lines) | stat: -rw-r--r-- 4,638 bytes parent folder | download
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
 * Copyright (c) 2013-2015 by Brainwy Software Ltda, Inc. All Rights Reserved.
 * Licensed under the terms of the Eclipse Public License (EPL).
 * Please see the license.txt included with this distribution for details.
 * Any modifications to this file must keep this entire header intact.
 */
package org.python.pydev.shared_ui;

import java.lang.reflect.Field;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
import org.python.pydev.shared_core.log.Log;
import org.python.pydev.shared_ui.bundle.BundleInfo;
import org.python.pydev.shared_ui.bundle.IBundleInfo;
import org.python.pydev.shared_ui.utils.UIUtils;

/**
 * The main plugin class to be used in the desktop.
 */
public class SharedUiPlugin extends AbstractUIPlugin {
    public static final String PLUGIN_ID = "org.python.pydev.shared_ui";

    //The shared instance.
    private static SharedUiPlugin plugin;

    // ----------------- SINGLETON THINGS -----------------------------
    public static IBundleInfo info;

    public static IBundleInfo getBundleInfo() {
        if (SharedUiPlugin.info == null) {
            SharedUiPlugin bundle = SharedUiPlugin.getDefault();
            if (bundle == null) {
                return null;
            }
            SharedUiPlugin.info = new BundleInfo(bundle.getBundle());
        }
        return SharedUiPlugin.info;
    }

    public static void setBundleInfo(IBundleInfo b) {
        SharedUiPlugin.info = b;
    }

    // ----------------- END BUNDLE INFO THINGS --------------------------

    /**
     * The constructor.
     */
    public SharedUiPlugin() {
        super();
        plugin = this;
    }

    /**
     * This method is called upon plug-in activation
     */
    @Override
    public void start(BundleContext context) throws Exception {
        super.start(context);
    }

    /**
     * This method is called when the plug-in is stopped
     */
    @Override
    public void stop(BundleContext context) throws Exception {
        super.stop(context);
    }

    /**
     * Returns the shared instance.
     */
    public static SharedUiPlugin getDefault() {
        return plugin;
    }

    private static ImageCache imageCache = null;

    /**
     * @return the cache that should be used to access images within the pydev plugin.
     */
    public static ImageCache getImageCache() {
        if (imageCache == null) {
            IBundleInfo bundleInfo = SharedUiPlugin.getBundleInfo();
            if (bundleInfo == null) {
                return null;
            }
            imageCache = bundleInfo.getImageCache();
        }
        return imageCache;
    }

    public ImageDescriptor getImageDescriptor(String key) {
        return getImageRegistry().getDescriptor(key);
    }

    @SuppressWarnings("restriction")
    public static void setCssId(Object control, String id, boolean applyToChildren) {
/*        try {
            IStylingEngine engine = (IStylingEngine) UIUtils.getActiveWorkbenchWindow().
                    getService(IStylingEngine.class);
            if (engine != null) {
                engine.setId(control, id);
                IThemeEngine themeEngine = (IThemeEngine) Display.getDefault().getData(
                        "org.eclipse.e4.ui.css.swt.theme");
                themeEngine.applyStyles(control, applyToChildren);
            }
        } catch (Throwable e) {
            //Ignore: older versions of Eclipse won't have it!
            // e.printStackTrace();
        }
*/  }

    public static void fixSelectionStatusDialogStatusLineColor(Object dialog, Color color) {
        //TODO: Hack: remove when MessageLine is styleable.
        try {
            Field field = org.eclipse.ui.dialogs.SelectionStatusDialog.class
                    .getDeclaredField("fStatusLine");
            field.setAccessible(true);
            Control messageLine = (Control) field.get(dialog);
            messageLine.setBackground(color);
        } catch (Exception e) {
            Log.log(e);
        }
    }

    public static IStatus makeErrorStatus(Exception e, boolean useErrorMessage) {
        String message = "";
        if (useErrorMessage) {
            message = e.getMessage();
            if (message == null) {
                message = "null";
            }
        }
        return new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, message, e);
    }
}