Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2005-07-07 22:30:35 +0000
committerSteve Northover2005-07-07 22:30:35 +0000
commit94c3b6440b49d6bba6ace54503f0a15dbfe61b4b (patch)
treeb6d119445fc3741aba41b46ae53400b970d5661b /examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java
parent868257735ebd0951be07baa5051c7d5525e636ee (diff)
downloadeclipse.platform.swt-94c3b6440b49d6bba6ace54503f0a15dbfe61b4b.tar.gz
eclipse.platform.swt-94c3b6440b49d6bba6ace54503f0a15dbfe61b4b.tar.xz
eclipse.platform.swt-94c3b6440b49d6bba6ace54503f0a15dbfe61b4b.zip
fix formatting
Diffstat (limited to 'examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java')
-rw-r--r--examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java88
1 files changed, 46 insertions, 42 deletions
diff --git a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java
index 7466de2035..539e200da5 100644
--- a/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java
+++ b/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet3.java
@@ -22,47 +22,51 @@ import org.eclipse.swt.graphics.*;
public class Snippet3 {
-public static void main (String [] args) {
- Display display = new Display ();
- Shell shell = new Shell (display);
- final Table table = new Table (shell, SWT.BORDER | SWT.V_SCROLL | SWT.FULL_SELECTION);
- table.setHeaderVisible (true);
- table.setLinesVisible (true);
- final int rowCount = 64, columnCount = 4;
- for (int i=0; i < columnCount; i++) {
- TableColumn column = new TableColumn (table, SWT.NONE);
- column.setText ("Column " + i);
- }
- for (int i=0; i < rowCount; i++) {
- TableItem item = new TableItem (table, SWT.NONE);
- for (int j=0; j < columnCount; j++) {
- item.setText (j, "Item " + i + "-" + j);
- }
- }
- for (int i=0; i < columnCount; i++) {
- table.getColumn (i).pack ();
- }
- Point size = table.computeSize (SWT.DEFAULT, 200);
- table.setSize (size);
- shell.pack ();
- table.addListener (SWT.MouseDown, new Listener () {
- public void handleEvent (Event event) {
- Point pt = new Point (event.x, event.y);
- TableItem item = table.getItem (pt);
- if (item == null) return;
- for (int i=0; i < columnCount; i++) {
- Rectangle rect = item.getBounds (i);
- if (rect.contains (pt)) {
- int index = table.indexOf (item);
- System.out.println ("Item " + index + "-" + i);
- }
- }
- }
- });
- shell.open ();
- while (!shell.isDisposed()) {
- if (!display.readAndDispatch ()) display.sleep ();
- }
- display.dispose ();
+public static void main(String[] args) {
+ Display display = new Display();
+ Shell shell = new Shell(display);
+ final Table table = new Table(shell, SWT.BORDER | SWT.V_SCROLL
+ | SWT.FULL_SELECTION);
+ table.setHeaderVisible(true);
+ table.setLinesVisible(true);
+ final int rowCount = 64, columnCount = 4;
+ for (int i = 0; i < columnCount; i++) {
+ TableColumn column = new TableColumn(table, SWT.NONE);
+ column.setText("Column " + i);
+ }
+ for (int i = 0; i < rowCount; i++) {
+ TableItem item = new TableItem(table, SWT.NONE);
+ for (int j = 0; j < columnCount; j++) {
+ item.setText(j, "Item " + i + "-" + j);
+ }
+ }
+ for (int i = 0; i < columnCount; i++) {
+ table.getColumn(i).pack();
+ }
+ Point size = table.computeSize(SWT.DEFAULT, 200);
+ table.setSize(size);
+ shell.pack();
+ table.addListener(SWT.MouseDown, new Listener() {
+ public void handleEvent(Event event) {
+ Point pt = new Point(event.x, event.y);
+ TableItem item = table.getItem(pt);
+ if (item == null)
+ return;
+ for (int i = 0; i < columnCount; i++) {
+ Rectangle rect = item.getBounds(i);
+ if (rect.contains(pt)) {
+ int index = table.indexOf(item);
+ System.out.println("Item " + index + "-" + i);
+ }
+ }
+ }
+ });
+ shell.open();
+ while (!shell.isDisposed()) {
+ if (!display.readAndDispatch())
+ display.sleep();
+ }
+ display.dispose();
}
+
}

Back to the top