SCViewer/plugins/com.minres.scviewer.databas.../src/com/minres/scviewer/database/ui/IWaveformStyleProvider.java

18 lines
318 B
Java
Raw Normal View History

2020-11-28 19:41:00 +01:00
package com.minres.scviewer.database.ui;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
public interface IWaveformStyleProvider {
Font getNameFont();
Font getNameFontHighlite();
int getTrackHeight();
Color getColor(WaveformColors type);
Color[] computeColor(String name);
2020-11-28 19:41:00 +01:00
}