comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/DefaultContent.d @ 36:d46287db17ed

rakefile reorg, swt win phobosification
author Frank Benoit <benoit@tionex.de>
date Tue, 24 Mar 2009 08:48:41 +0100
parents 950d84783eac
children b98647bc0aef
comparison
equal deleted inserted replaced
35:634e4380db78 36:d46287db17ed
23 import org.eclipse.swt.custom.StyledTextEvent; 23 import org.eclipse.swt.custom.StyledTextEvent;
24 import org.eclipse.swt.custom.StyledTextListener; 24 import org.eclipse.swt.custom.StyledTextListener;
25 import org.eclipse.swt.custom.StyledText; 25 import org.eclipse.swt.custom.StyledText;
26 26
27 class DefaultContent : StyledTextContent { 27 class DefaultContent : StyledTextContent {
28 private final static String LineDelimiter = "\r\n"; 28 private const static String LineDelimiter = "\r\n";
29 29
30 StyledTextListener[] textListeners; // stores text listeners for event sending 30 StyledTextListener[] textListeners; // stores text listeners for event sending
31 char[] textStore; // stores the actual text 31 char[] textStore; // stores the actual text
32 int gapStart = -1; // the character position start of the gap 32 int gapStart = -1; // the character position start of the gap
33 int gapEnd = -1; // the character position after the end of the gap 33 int gapEnd = -1; // the character position after the end of the gap