SCViewer/plugins/com.minres.scviewer.e4.appl.../src/com/minres/scviewer/e4/application/handlers/NavigateEvent.java

59 lines
2.3 KiB
Java
Raw Normal View History

2015-10-22 00:25:12 +02:00
/*******************************************************************************
2021-01-09 14:26:49 +01:00
* Copyright (c) 2015-2021 MINRES Technologies GmbH and others.
2015-10-22 00:25:12 +02:00
* 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:
* MINRES Technologies GmbH - initial API and implementation
*******************************************************************************/
package com.minres.scviewer.e4.application.handlers;
import javax.inject.Named;
import org.eclipse.e4.core.di.annotations.CanExecute;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
import org.eclipse.e4.ui.workbench.modeling.EPartService;
import org.eclipse.jface.viewers.IStructuredSelection;
import com.minres.scviewer.database.IWaveform;
2020-11-28 14:47:43 +01:00
import com.minres.scviewer.database.tx.ITx;
2015-11-03 22:29:42 +01:00
import com.minres.scviewer.database.ui.GotoDirection;
import com.minres.scviewer.database.ui.TrackEntry;
import com.minres.scviewer.e4.application.parts.WaveformViewer;
public class NavigateEvent {
2017-01-23 22:53:14 +01:00
final static String PARAMTER_ID="com.minres.scviewer.e4.application.command.navigateEventCommand.parameter.dir"; //$NON-NLS-1$
2021-11-27 14:31:39 +01:00
@CanExecute
2021-11-27 14:31:39 +01:00
public Boolean canExecute(EPartService partService){
MPart part = partService.getActivePart();
2023-02-21 09:10:35 +01:00
if(part!=null && part.getObject() instanceof WaveformViewer){
2021-11-27 14:31:39 +01:00
Object sel = ((WaveformViewer)part.getObject()).getSelection();
if( sel instanceof IStructuredSelection) {
if(((IStructuredSelection)sel).isEmpty()) return false;
Object o= ((IStructuredSelection)sel).getFirstElement();
return o instanceof IWaveform || o instanceof ITx || o instanceof TrackEntry;
}
}
return false;
}
2021-11-27 14:31:39 +01:00
@Execute
public void execute(@Named(PARAMTER_ID) String param, EPartService partService) {
2021-11-27 14:31:39 +01:00
// public void execute(EPartService partService) {
// String param="next";
MPart part = partService.getActivePart();
Object obj = part.getObject();
if(obj instanceof WaveformViewer){
2017-01-23 22:53:14 +01:00
if("next".equalsIgnoreCase(param)) //$NON-NLS-1$
((WaveformViewer)obj).moveCursor(GotoDirection.NEXT);
2017-01-23 22:53:14 +01:00
else if("prev".equalsIgnoreCase(param)) //$NON-NLS-1$
((WaveformViewer)obj).moveCursor(GotoDirection.PREV);
}
}
}