SCViewer/com.minres.scviewer.databas.../src/com/minres/scviewer/database/ui/IWaveformViewer.java

86 lines
2.3 KiB
Java
Raw Normal View History

/*******************************************************************************
* Copyright (c) 2015 MINRES Technologies GmbH 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:
* MINRES Technologies GmbH - initial API and implementation
*******************************************************************************/
2015-11-03 22:29:42 +01:00
package com.minres.scviewer.database.ui;
import java.beans.PropertyChangeListener;
import java.util.List;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.swt.widgets.Control;
import com.minres.scviewer.database.IWaveform;
public interface IWaveformViewer extends PropertyChangeListener, ISelectionProvider{
2015-11-03 22:29:42 +01:00
String CURSOR_PROPERTY = "cursor_time";
String MARKER_PROPERTY = "marker_time";
void addSelectionChangedListener(ISelectionChangedListener listener);
void removeSelectionChangedListener(ISelectionChangedListener listener);
Control getControl();
Control getNameControl();
Control getValueControl();
Control getWaveformControl();
ISelection getSelection();
void setSelection(ISelection selection);
void setSelection(ISelection selection, boolean addIfNeeded);
void moveSelection(GotoDirection direction);
void moveCursor(GotoDirection direction);
List<TrackEntry> getStreamList();
2015-11-03 22:29:42 +01:00
public TrackEntry getEntryForStream(IWaveform<?> source);
2015-11-03 22:29:42 +01:00
void moveSelected(int i);
long getMaxTime();
void setMaxTime(long maxTime);
void setZoomLevel(int scale);
int getZoomLevel();
void setCursorTime(long time);
void setMarkerTime(long time, int index);
long getCursorTime();
long getActMarkerTime();
long getMarkerTime(int index);
void addPropertyChangeListener(PropertyChangeListener listener);
void addPropertyChangeListener(String propertyName, PropertyChangeListener listener);
void removePropertyChangeListener(PropertyChangeListener listener);
void removePropertyChangeListener(String propertyName, PropertyChangeListener listener);
String getScaledTime(long time);
String[] getZoomLevels();
}