blob: 57d11a9c287bc440e16d4374dd1b278f05c0350f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Chriss Gross (schtoo@schtoo.com) - fix for 61670
*******************************************************************************/
package org.eclipse.ui.internal.forms.widgets;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.graphics.GC;
public interface IHyperlinkSegment extends IFocusSelectable {
String getHref();
String getText();
void paintFocus(GC gc, Color bg, Color fg, boolean selected, Rectangle repaintRegion);
boolean contains(int x, int y);
boolean intersects(Rectangle rect);
}