comparison dwt/custom/TableCursor.d @ 315:349b8c12e243

Sync dwt/custom with dwt-linux
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:18:26 +0200
parents fd9c62a2998e
children
comparison
equal deleted inserted replaced
314:0e2b4fed7a0f 315:349b8c12e243
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module dwt.custom.TableCursor; 13 module dwt.custom.TableCursor;
14
15 import dwt.dwthelper.utils;
14 16
15 17
16 import dwt.DWT; 18 import dwt.DWT;
17 import dwt.DWTException; 19 import dwt.DWTException;
18 import dwt.events.SelectionEvent; 20 import dwt.events.SelectionEvent;
30 import dwt.widgets.Table; 32 import dwt.widgets.Table;
31 import dwt.widgets.TableColumn; 33 import dwt.widgets.TableColumn;
32 import dwt.widgets.TableItem; 34 import dwt.widgets.TableItem;
33 import dwt.widgets.TypedListener; 35 import dwt.widgets.TypedListener;
34 import dwt.widgets.Widget; 36 import dwt.widgets.Widget;
35 import dwt.dwthelper.utils;
36 37
37 /** 38 /**
38 * A TableCursor provides a way for the user to navigate around a Table 39 * A TableCursor provides a way for the user to navigate around a Table
39 * using the keyboard. It also provides a mechanism for selecting an 40 * using the keyboard. It also provides a mechanism for selecting an
40 * individual cell in a table. 41 * individual cell in a table.