1 package net.sf.mmapps.applications.developer.modules.appview;
2
3 import com.touchgraph.graphlayout.*;
4 import com.touchgraph.graphlayout.interaction.*;
5
6 public class TGMMBasePanel extends TGPanel {
7
8 private TGPanel tgPanel;
9 public HVScroll hvScroll;
10
11 public ZoomScroll zoomScroll;
12
13 public LocalityScroll localityScroll;
14
15 protected TGUIManager tgUIManager;
16
17 public TGMMBasePanel() {
18 super();
19
20 TGLensSet tgLensSet = new TGLensSet();
21 hvScroll = new HVScroll(this, tgLensSet);
22 zoomScroll = new ZoomScroll(this);
23 localityScroll = new LocalityScroll(this);
24
25 tgLensSet.addLens(hvScroll.getLens());
26 tgLensSet.addLens(zoomScroll.getLens());
27 tgLensSet.addLens(getAdjustOriginLens());
28 setLensSet(tgLensSet);
29 }
30 }