blob: 711c84302da4e8ed979aa967beb81a3b2fa378d2 [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
/**
* This event is sent when a line is about to be drawn.
*/
public class LineBackgroundEvent extends TypedEvent {
public int lineOffset; // line start offset
public String lineText; // line text
public Color lineBackground; // line background color
public LineBackgroundEvent(StyledTextEvent e) {
super(e);
lineOffset = e.detail;
lineText = e.text;
}
}