comparison org.eclipse.jface.text/src/org/eclipse/jface/internal/text/html/BrowserInformationControlInput.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
comparison
equal deleted inserted replaced
11:43904fec5dca 12:bc29606a740c
1 /*******************************************************************************
2 * Copyright (c) 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module org.eclipse.jface.internal.text.html.BrowserInformationControlInput;
14
15 import org.eclipse.jface.internal.text.html.HTML2TextReader; // packageimport
16 import org.eclipse.jface.internal.text.html.HTMLPrinter; // packageimport
17 import org.eclipse.jface.internal.text.html.BrowserInformationControl; // packageimport
18 import org.eclipse.jface.internal.text.html.SubstitutionTextReader; // packageimport
19 import org.eclipse.jface.internal.text.html.HTMLTextPresenter; // packageimport
20 import org.eclipse.jface.internal.text.html.BrowserInput; // packageimport
21 import org.eclipse.jface.internal.text.html.SingleCharReader; // packageimport
22 import org.eclipse.jface.internal.text.html.HTMLMessages; // packageimport
23
24
25 import java.lang.all;
26
27 import org.eclipse.jface.text.DefaultInformationControl;
28
29
30 /**
31 * Provides input for a {@link BrowserInformationControl}.
32 *
33 * @since 3.4
34 */
35 public abstract class BrowserInformationControlInput : BrowserInput {
36
37 /**
38 * Returns the leading image width.
39 *
40 * @return the size of the leading image, by default <code>0</code> is returned
41 * @since 3.4
42 */
43 public int getLeadingImageWidth() {
44 return 0;
45 }
46
47 /**
48 * Creates the next browser input with the given input as previous one.
49 *
50 * @param previous the previous input or <code>null</code> if none
51 */
52 public this(BrowserInformationControlInput previous) {
53 super(previous);
54 }
55
56 /**
57 * @return the HTML contents
58 */
59 public abstract String getHtml();
60
61 /**
62 * Returns the HTML from {@link #getHtml()}.
63 * This is a fallback mode for platforms where the {@link BrowserInformationControl}
64 * is not available and this input is passed to a {@link DefaultInformationControl}.
65 *
66 * @return {@link #getHtml()}
67 */
68 public override String toString() {
69 return getHtml();
70 }
71 }