コード例 #1
0
 public DisableZoomWindow(final IViewer viewer) {
   super("Disable zoom window");
   setToolTipText("Hold down the SHIFT key to zoom in on a region of the plot.");
   setImageDescriptor(
       ImageRegistryUtil.getSharedImages().getImageDescriptor(ISharedImages.IMG_ZOOM_OBJECT));
   _viewer = viewer;
 }
コード例 #2
0
 public LoadPolygonRegionsModel(final Control parent, final PolygonRegionsModel model) {
   setImageDescriptor(
       ImageRegistryUtil.getSharedImages().getImageDescriptor(ISharedImages.IMG_RELOAD));
   _parent = parent;
   _model = model;
 }
コード例 #3
0
 public DisableCommunication(final IABavoCrossplot crossplot) {
   setImageDescriptor(
       ImageRegistryUtil.getSharedImages().getImageDescriptor(ISharedImages.IMG_BROADCAST));
   setToolTipText("Communication is disabled");
   _crossplot = crossplot;
 }