- Timestamp:
- 10/05/11 04:32:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/ConsoleTabComposite.java
r195 r238 8 8 import org.eclipse.swt.layout.GridLayout; 9 9 import org.eclipse.swt.layout.GridData; 10 import org.eclipse.swt.custom.StyledText; 10 11 import org.eclipse.swt.events.SelectionAdapter; 11 12 import org.eclipse.swt.events.SelectionEvent; … … 29 30 protected Text textCommand; 30 31 31 protected Text textConsoleOutput;32 protected StyledText textConsoleOutput; 32 33 33 34 /** … … 69 70 btnEnter.setText("Enter"); 70 71 71 textConsoleOutput = new Text(this, SWT.BORDER | SWT.READ_ONLY | SWT.H_SCROLL | SWT.V_SCROLL | SWT.CANCEL);72 textConsoleOutput = new StyledText(this, SWT.BORDER | SWT.READ_ONLY | SWT.H_SCROLL | SWT.V_SCROLL | SWT.CANCEL); 72 73 GridData gd_textConsoleOutput = new GridData(SWT.FILL, SWT.FILL, true, true, 3, 1); 73 74 gd_textConsoleOutput.heightHint = 102;
Note: See TracChangeset
for help on using the changeset viewer.