blob: 492d452c333784081189e406af14bdea6a79135d [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
*******************************************************************************/
package org.eclipse.jdt.debug.tests.console;
import java.io.PrintStream;
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Event;
import org.eclipse.ui.IActionDelegate2;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.console.ConsolePlugin;
import org.eclipse.ui.console.IConsole;
import org.eclipse.ui.console.IConsoleManager;
import org.eclipse.ui.console.IHyperlink;
import org.eclipse.ui.console.IOConsole;
import org.eclipse.ui.console.IOConsoleOutputStream;
import org.eclipse.ui.console.IPatternMatchListener;
import org.eclipse.ui.console.PatternMatchEvent;
import org.eclipse.ui.console.TextConsole;
public class IOConsoleHyperlinkActionDelegate implements IActionDelegate2, IWorkbenchWindowActionDelegate {
public void run(IAction action) {
final IOConsole console = new IOConsole("IO Test Console", DebugUITools.getImageDescriptor(IDebugUIConstants.IMG_ACT_RUN)); //$NON-NLS-1$
console.setConsoleWidth(17);
IConsoleManager manager = ConsolePlugin.getDefault().getConsoleManager();
manager.addConsoles(new IConsole[] { console });
IPatternMatchListener listener = new IPatternMatchListener() {
public String getPattern() {
return "1234567890"; //$NON-NLS-1$
}
public String getLineQualifier() {
return "1234567890"; //$NON-NLS-1$
}
public void matchFound(PatternMatchEvent event) {
try {
console.addHyperlink(new MyHyperlink(), event.getOffset(), event.getLength());
} catch (BadLocationException e) {
e.printStackTrace();
}
}
public int getCompilerFlags() {
return 0;
}
public void connect(TextConsole console) {
}
public void disconnect() {
}
};
console.addPatternMatchListener(listener);
IOConsoleOutputStream stream = console.newOutputStream();
stream.setFontStyle(SWT.ITALIC | SWT.BOLD);
final PrintStream out = new PrintStream(stream);
new Thread(new Runnable() {
public void run() {
out.println("Hyperlink -12345678901234567890-");
}
}).start();
}
private class MyHyperlink implements IHyperlink {
public void linkEntered() {
System.out.println("link entered");
}
public void linkExited() {
System.out.println("link exited");
}
public void linkActivated() {
System.out.println("link activated");
}
}
public void init(IAction action) {
}
public void dispose() {
}
public void runWithEvent(IAction action, Event event) {
run(action);
}
public void selectionChanged(IAction action, ISelection selection) {
}
public void init(IWorkbenchWindow window) {
}
}