comparison org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet46.d @ 28:69b1fa94a4a8

Added SWT snippets
author Frank Benoit <benoit@tionex.de>
date Sun, 22 Mar 2009 15:17:04 +0100
parents
children 536e43f63c81
comparison
equal deleted inserted replaced
27:1bf55a6eb092 28:69b1fa94a4a8
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * D Port:
11 * Thomas Demmer <t_demmer AT web DOT de>
12 *******************************************************************************/
13 module org.eclipse.swt.snippets.Snippet46;
14
15 /*
16 * Composite example snippet: intercept mouse events (drag a button with the mouse)
17 *
18 * For a list of all SWT example snippets see
19 * http://www.eclipse.org/swt/snippets/
20 */
21 import org.eclipse.swt.SWT;
22 import org.eclipse.swt.graphics.Point;
23 import org.eclipse.swt.graphics.Rectangle;
24 import org.eclipse.swt.widgets.Button;
25 import org.eclipse.swt.widgets.Composite;
26 import org.eclipse.swt.widgets.Display;
27 import org.eclipse.swt.widgets.Event;
28 import org.eclipse.swt.widgets.Listener;
29 import org.eclipse.swt.widgets.Shell;
30 import org.eclipse.swt.layout.FillLayout;
31
32 import java.lang.all;
33
34 void main (String [] args) {
35 Display display = new Display ();
36 Shell shell = new Shell (display);
37 Composite composite = new Composite (shell, SWT.NONE);
38 composite.setEnabled (false);
39 composite.setLayout (new FillLayout ());
40 Button button = new Button (composite, SWT.PUSH);
41 button.setText ("Button");
42 composite.pack ();
43 composite.setLocation (10, 10);
44 Point [] offset = new Point [1];
45 Listener listener = new class() Listener{
46 public void handleEvent (Event event) {
47 switch (event.type) {
48 case SWT.MouseDown:
49 Rectangle rect = composite.getBounds ();
50 if (rect.contains (event.x, event.y)) {
51 Point pt1 = composite.toDisplay (0, 0);
52 Point pt2 = shell.toDisplay (event.x, event.y);
53 offset [0] = new Point (pt2.x - pt1.x, pt2.y - pt1.y);
54 }
55 break;
56 case SWT.MouseMove:
57 if (offset [0] !is null) {
58 Point pt = offset [0];
59 composite.setLocation (event.x - pt.x, event.y - pt.y);
60 }
61 break;
62 case SWT.MouseUp:
63 offset [0] = null;
64 break;
65 }
66 }
67 };
68 shell.addListener (SWT.MouseDown, listener);
69 shell.addListener (SWT.MouseUp, listener);
70 shell.addListener (SWT.MouseMove, listener);
71 shell.setSize (300, 300);
72 shell.open ();
73 while (!shell.isDisposed ()) {
74 if (!display.readAndDispatch ()) display.sleep ();
75 }
76 display.dispose ();
77 }
78