Changeset 381 for trunk/EventBenchConsole/src/de
- Timestamp:
- 02/01/12 13:47:03 (13 years ago)
- Location:
- trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/ConsoleTabComposite.java
r357 r381 2 2 3 3 import org.eclipse.swt.SWT; 4 import org.eclipse.swt.widgets.Event; 5 import org.eclipse.swt.widgets.Listener; 4 6 import org.eclipse.swt.widgets.Text; 5 7 import org.eclipse.swt.widgets.Label; … … 76 78 gd_textConsoleOutput.widthHint = 456; 77 79 textConsoleOutput.setLayoutData(gd_textConsoleOutput); 80 textConsoleOutput.addListener(SWT.Modify, new Listener(){ 81 public void handleEvent(Event e){ 82 textConsoleOutput.setTopIndex(textConsoleOutput.getLineCount() - 1); 83 } 84 }); 85 78 86 } 79 87 -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/ModelPropertiesDialog.java
r287 r381 67 67 grpEvents.setText("Events"); 68 68 69 List list = new List(grpEvents, SWT.BORDER | SWT. V_SCROLL);69 List list = new List(grpEvents, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL); 70 70 for( String symbol : process.getSymbolStrings() ) { 71 71 list.add(symbol);
Note: See TracChangeset
for help on using the changeset viewer.