Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e84d252611fc5587a85f85896fa1f835e00b2bcf (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
78
79
80
81
82
83
84
85
/*******************************************************************************
 * Copyright (c) 2009, 2014 Wind River Systems and others.
 * 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.debug.test;

import org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerInputRequestor;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IViewerInputUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.PresentationContext;
import org.eclipse.debug.internal.ui.viewers.model.provisional.ViewerInputService;
import org.eclipse.debug.internal.ui.viewers.model.provisional.VirtualTreeModelViewer;
import org.eclipse.debug.ui.contexts.DebugContextEvent;
import org.eclipse.debug.ui.contexts.IDebugContextListener;
import org.eclipse.debug.ui.contexts.IDebugContextProvider;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;

/**
 * 
 */
@SuppressWarnings("restriction")
public class VariablesVirtualTreeModelViewer extends VirtualTreeModelViewer implements IDebugContextListener {

    private IDebugContextProvider fDebugContextProvider;
    private ViewerInputService fInputService;
    private boolean fActive = false;

    public VariablesVirtualTreeModelViewer(String contextId, IDebugContextProvider debugContextProvider) {
        this(new PresentationContext(contextId), debugContextProvider);
    }

    public VariablesVirtualTreeModelViewer(IPresentationContext context, IDebugContextProvider debugContextProvider) {
        super(Display.getDefault(), SWT.NONE, context);
        fInputService = new ViewerInputService(this, new IViewerInputRequestor() {
            
            public void viewerInputComplete(IViewerInputUpdate update) {
                if (!update.isCanceled()) {
                    setInput(update.getInputElement());
                }
            }
        });
        fDebugContextProvider = debugContextProvider;
        debugContextProvider.addDebugContextListener(this);
    }

    public void setActive(boolean active) {
        if (fActive == active) {
            return;
        }
        fActive = active;
        if (fActive) {
            setActiveContext(fDebugContextProvider.getActiveContext());
        } else {
            fInputService.resolveViewerInput(ViewerInputService.NULL_INPUT);
        }
    }
    
    @Override
    public void dispose() {
        fDebugContextProvider.removeDebugContextListener(this);
        fInputService.dispose();
        super.dispose();
    }
    
    public void debugContextChanged(DebugContextEvent event) {
        if (fActive && (event.getFlags() & DebugContextEvent.ACTIVATED) != 0) {
            setActiveContext(event.getContext());
        }
    }    
    
    private void setActiveContext(ISelection selection) {
        if (selection instanceof IStructuredSelection) {
            fInputService.resolveViewerInput(((IStructuredSelection)selection).getFirstElement());
        }
    }
}

Back to the top