Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3dba348a4f0c6f082c4af7f2410bbc652485e897 (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
/*******************************************************************************
 * Copyright (c) 2009 Red Hat, Inc.
 * 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:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.callgraph.tests;

import junit.framework.TestCase;

import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.linuxtools.callgraph.CallgraphView;
import org.eclipse.linuxtools.callgraph.GraphUIJob;
import org.eclipse.linuxtools.callgraph.StapGraph;
import org.eclipse.linuxtools.callgraph.StapGraphParser;
import org.eclipse.linuxtools.callgraph.graphlisteners.StapGraphMouseListener;
import org.eclipse.zest.core.widgets.GraphItem;


public class MouseListenerTest extends TestCase{

	public void test() {
		StapGraphParser parse = new StapGraphParser();
		parse.setFile(Activator.PLUGIN_LOCATION + "eag.graph");
		parse.testRun(new NullProgressMonitor());

		CallgraphView.forceDisplay();

		GraphUIJob j = new GraphUIJob("Test Graph UI Job", parse);
		j.runInUIThread(new NullProgressMonitor());
		
		
		StapGraphMouseListener mListener = CallgraphView.getGraph().getMouseListener();
//		StapGraphKeyListener kListener = CallgraphView.getGraph().getKeyListener();
//		StapGraphMouseWheelListener mwListener = CallgraphView.getGraph().getMouseWheelListener();
		
		StapGraph g = (StapGraph) CallgraphView.getGraph();
		g.setProject(parse.project);
		
		
		GraphItem[] nodes = {g.getNode(g.getFirstUsefulNode())}; 
		g.setSelection(nodes);
		
		
		System.out.println(mListener.controlDoubleClick());
		mListener.mouseDownEvent(0, 0);
		g.draw(StapGraph.CONSTANT_DRAWMODE_TREE, StapGraph.CONSTANT_ANIMATION_FASTEST,
				g.getFirstUsefulNode());
		mListener.mouseUpEvent();
		
		System.out.println("TEST");
		
	}
}

Back to the top