Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9ef58f57d96bff49dadb0e2a7365b7ee489827b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;

public class Bug84054_TableActivateEventScroll {
	public static void main(String[] args) {
		Display display = new Display();
		Shell shell = new Shell(display);
		shell.setBounds(10,10,400,400);
		final Table table = new Table(shell, SWT.NONE);
		table.setBounds(10,10,100,100);
		for (int i = 0; i < 99; i++) {
			new TableItem(table, SWT.NONE).setText("item " + i);
		}
		
		final Table table2 = new Table(shell, SWT.NONE);
		table2.setBounds(10,130,100,100);
		for (int i = 0; i < 99; i++) {
			new TableItem(table2, SWT.NONE).setText("item " + i);
		}
		
		table.addListener(SWT.Activate, new Listener() {

			@Override
			public void handleEvent(Event arg0) {
				System.out.println(" 1 activated");
				
			}});
		
		table.addListener(SWT.Deactivate, new Listener() {

			@Override
			public void handleEvent(Event arg0) {
				System.out.println(" 1 deactivated");
				
			}});
		
		table2.addListener(SWT.Activate, new Listener() {

			@Override
			public void handleEvent(Event arg0) {
				System.out.println(" 2 activated");
				
			}});
		
		table2.addListener(SWT.Deactivate, new Listener() {

			@Override
			public void handleEvent(Event arg0) {
				System.out.println(" 2 deactivated");
				
			}});
		
		shell.open();
		
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) display.sleep();
		}
		display.dispose();
	}
}

Back to the top