-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected TextLayout to produce right number of lines when '\r\n'
sequence comes. Updated review comments. Fixes #184
- Loading branch information
Showing
3 changed files
with
148 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
...se.swt.tests/ManualTests/org/eclipse/swt/tests/manual/Issue184_CarriageReturnHandled.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package org.eclipse.swt.tests.manual; | ||
|
||
/* | ||
* TextLayout example snippet: text with underline and strike through | ||
* | ||
* For a list of all SWT example snippets see | ||
* http://www.eclipse.org/swt/snippets/ | ||
* | ||
* @since 3.1 | ||
*/ | ||
import org.eclipse.swt.*; | ||
import org.eclipse.swt.graphics.*; | ||
import org.eclipse.swt.widgets.*; | ||
|
||
public class Issue184_CarriageReturnHandled { | ||
|
||
private static FontData[] getFontData(Font font, int style) { | ||
FontData[] fontDatas = font.getFontData(); | ||
for (FontData fontData : fontDatas) { | ||
fontData.setStyle(style); | ||
} | ||
return fontDatas; | ||
} | ||
|
||
public static void main(String[] args) { | ||
Display display = new Display(); | ||
final Shell shell = new Shell(display, SWT.SHELL_TRIM | SWT.DOUBLE_BUFFERED); | ||
shell.setText("Underline, Strike Out"); | ||
String text1 = "\r\nde\nep\rika\r\rudaya\n\ngiri\r"; | ||
|
||
FontData[] fontData = getFontData(shell.getFont(), SWT.BOLD); | ||
Font font = new Font(shell.getDisplay(), fontData); | ||
|
||
FontData[] fontData1 = getFontData(shell.getFont(), SWT.ITALIC | SWT.BOLD); | ||
Font font1 = new Font(shell.getDisplay(), fontData1); | ||
|
||
FontData[] fontData2 = getFontData(shell.getFont(), SWT.BOLD); | ||
Font font2 = new Font(shell.getDisplay(), fontData2); | ||
|
||
final TextLayout layout = new TextLayout(display); | ||
layout.setText(text1); | ||
|
||
TextStyle style1 = new TextStyle(font, null, null); | ||
layout.setStyle(style1, 3, 7); // eep in bold | ||
|
||
TextStyle style2 = new TextStyle(font1, null, null); | ||
layout.setStyle(style2, 12, 18); // udaya in bold | ||
|
||
TextStyle style3 = new TextStyle(font2, null, null); | ||
layout.setStyle(style3, 21, 24); // iri in bold | ||
|
||
int[] offsets = layout.getLineOffsets(); | ||
shell.addListener(SWT.Paint, event -> { | ||
Point point = new Point(10, 10); | ||
int width = shell.getClientArea().width - 2 * point.x; | ||
layout.setWidth(width); | ||
layout.draw(event.gc, point.x, point.y); | ||
}); | ||
shell.setSize(400, 300); | ||
shell.open(); | ||
while (!shell.isDisposed()) { | ||
if (!display.readAndDispatch()) | ||
display.sleep(); | ||
} | ||
layout.dispose(); | ||
display.dispose(); | ||
} | ||
} |