# HG changeset patch # User Frank Benoit # Date 1199552317 -3600 # Node ID 63c023465156e9451248065bfb6da220f29521db # Parent ad2b69216039c1cf7284cda0a7c68bbc34ad53dd moved from org.eclipse.swt to dwt diff -r ad2b69216039 -r 63c023465156 dsss.conf --- a/dsss.conf Sat Jan 05 17:39:49 2008 +0100 +++ b/dsss.conf Sat Jan 05 17:58:37 2008 +0100 @@ -1,3 +1,3 @@ -[org/eclipse/swt] +[dwt] type=library diff -r ad2b69216039 -r 63c023465156 dwt/SWT.d --- a/dwt/SWT.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/SWT.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,14 +8,14 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.SWT; - - -import org.eclipse.swt.internal.Compatibility; -import org.eclipse.swt.internal.Library; -import org.eclipse.swt.internal.Platform; -import org.eclipse.swt.SWTError; -import org.eclipse.swt.SWTException; +module dwt.SWT; + + +import dwt.internal.Compatibility; +import dwt.internal.Library; +import dwt.internal.Platform; +import dwt.SWTError; +import dwt.SWTException; import tango.core.Exception; @@ -61,478 +61,478 @@ /** * The key down event type (value is 1). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addKeyListener - * @see org.eclipse.swt.widgets.Tracker#addKeyListener - * @see org.eclipse.swt.events.KeyListener#keyPressed - * @see org.eclipse.swt.events.KeyEvent + * @see dwt.widgets.Control#addKeyListener + * @see dwt.widgets.Tracker#addKeyListener + * @see dwt.events.KeyListener#keyPressed + * @see dwt.events.KeyEvent */ public static const int KeyDown = 1; /** * The key up event type (value is 2). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addKeyListener - * @see org.eclipse.swt.widgets.Tracker#addKeyListener - * @see org.eclipse.swt.events.KeyListener#keyReleased - * @see org.eclipse.swt.events.KeyEvent + * @see dwt.widgets.Control#addKeyListener + * @see dwt.widgets.Tracker#addKeyListener + * @see dwt.events.KeyListener#keyReleased + * @see dwt.events.KeyEvent */ public static const int KeyUp = 2; /** * The mouse down event type (value is 3). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseListener - * @see org.eclipse.swt.events.MouseListener#mouseDown - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseListener + * @see dwt.events.MouseListener#mouseDown + * @see dwt.events.MouseEvent */ public static const int MouseDown = 3; /** * The mouse up event type (value is 4). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseListener - * @see org.eclipse.swt.events.MouseListener#mouseUp - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseListener + * @see dwt.events.MouseListener#mouseUp + * @see dwt.events.MouseEvent */ public static const int MouseUp = 4; /** * The mouse move event type (value is 5). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseMoveListener - * @see org.eclipse.swt.events.MouseMoveListener#mouseMove - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseMoveListener + * @see dwt.events.MouseMoveListener#mouseMove + * @see dwt.events.MouseEvent */ public static const int MouseMove = 5; /** * The mouse enter event type (value is 6). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseTrackListener - * @see org.eclipse.swt.events.MouseTrackListener#mouseEnter - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseTrackListener + * @see dwt.events.MouseTrackListener#mouseEnter + * @see dwt.events.MouseEvent */ public static const int MouseEnter = 6; /** * The mouse exit event type (value is 7). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseTrackListener - * @see org.eclipse.swt.events.MouseTrackListener#mouseExit - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseTrackListener + * @see dwt.events.MouseTrackListener#mouseExit + * @see dwt.events.MouseEvent */ public static const int MouseExit = 7; /** * The mouse double click event type (value is 8). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseListener - * @see org.eclipse.swt.events.MouseListener#mouseDoubleClick - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseListener + * @see dwt.events.MouseListener#mouseDoubleClick + * @see dwt.events.MouseEvent */ public static const int MouseDoubleClick = 8; /** * The paint event type (value is 9). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addPaintListener - * @see org.eclipse.swt.events.PaintListener#paintControl - * @see org.eclipse.swt.events.PaintEvent + * @see dwt.widgets.Control#addPaintListener + * @see dwt.events.PaintListener#paintControl + * @see dwt.events.PaintEvent */ public static const int Paint = 9; /** * The move event type (value is 10). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addControlListener - * @see org.eclipse.swt.widgets.TableColumn#addControlListener - * @see org.eclipse.swt.widgets.Tracker#addControlListener - * @see org.eclipse.swt.widgets.TreeColumn#addControlListener - * @see org.eclipse.swt.events.ControlListener#controlMoved - * @see org.eclipse.swt.events.ControlEvent + * @see dwt.widgets.Control#addControlListener + * @see dwt.widgets.TableColumn#addControlListener + * @see dwt.widgets.Tracker#addControlListener + * @see dwt.widgets.TreeColumn#addControlListener + * @see dwt.events.ControlListener#controlMoved + * @see dwt.events.ControlEvent */ public static const int Move = 10; /** * The resize event type (value is 11). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addControlListener - * @see org.eclipse.swt.widgets.TableColumn#addControlListener - * @see org.eclipse.swt.widgets.Tracker#addControlListener - * @see org.eclipse.swt.widgets.TreeColumn#addControlListener - * @see org.eclipse.swt.events.ControlListener#controlResized - * @see org.eclipse.swt.events.ControlEvent + * @see dwt.widgets.Control#addControlListener + * @see dwt.widgets.TableColumn#addControlListener + * @see dwt.widgets.Tracker#addControlListener + * @see dwt.widgets.TreeColumn#addControlListener + * @see dwt.events.ControlListener#controlResized + * @see dwt.events.ControlEvent */ public static const int Resize = 11; /** * The dispose event type (value is 12). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Widget#addDisposeListener - * @see org.eclipse.swt.events.DisposeListener#widgetDisposed - * @see org.eclipse.swt.events.DisposeEvent + * @see dwt.widgets.Widget#addDisposeListener + * @see dwt.events.DisposeListener#widgetDisposed + * @see dwt.events.DisposeEvent */ public static const int Dispose = 12; /** * The selection event type (value is 13). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Button#addSelectionListener - * @see org.eclipse.swt.widgets.Combo#addSelectionListener - * @see org.eclipse.swt.widgets.CoolItem#addSelectionListener - * @see org.eclipse.swt.widgets.Link#addSelectionListener - * @see org.eclipse.swt.widgets.List#addSelectionListener - * @see org.eclipse.swt.widgets.MenuItem#addSelectionListener - * @see org.eclipse.swt.widgets.Sash#addSelectionListener - * @see org.eclipse.swt.widgets.Scale#addSelectionListener - * @see org.eclipse.swt.widgets.ScrollBar#addSelectionListener - * @see org.eclipse.swt.widgets.Slider#addSelectionListener - * @see org.eclipse.swt.widgets.TabFolder#addSelectionListener - * @see org.eclipse.swt.widgets.Table#addSelectionListener - * @see org.eclipse.swt.widgets.TableColumn#addSelectionListener - * @see org.eclipse.swt.widgets.ToolItem#addSelectionListener - * @see org.eclipse.swt.widgets.TrayItem#addSelectionListener - * @see org.eclipse.swt.widgets.Tree#addSelectionListener - * @see org.eclipse.swt.widgets.TreeColumn#addSelectionListener - * @see org.eclipse.swt.events.SelectionListener#widgetSelected - * @see org.eclipse.swt.events.SelectionEvent + * @see dwt.widgets.Button#addSelectionListener + * @see dwt.widgets.Combo#addSelectionListener + * @see dwt.widgets.CoolItem#addSelectionListener + * @see dwt.widgets.Link#addSelectionListener + * @see dwt.widgets.List#addSelectionListener + * @see dwt.widgets.MenuItem#addSelectionListener + * @see dwt.widgets.Sash#addSelectionListener + * @see dwt.widgets.Scale#addSelectionListener + * @see dwt.widgets.ScrollBar#addSelectionListener + * @see dwt.widgets.Slider#addSelectionListener + * @see dwt.widgets.TabFolder#addSelectionListener + * @see dwt.widgets.Table#addSelectionListener + * @see dwt.widgets.TableColumn#addSelectionListener + * @see dwt.widgets.ToolItem#addSelectionListener + * @see dwt.widgets.TrayItem#addSelectionListener + * @see dwt.widgets.Tree#addSelectionListener + * @see dwt.widgets.TreeColumn#addSelectionListener + * @see dwt.events.SelectionListener#widgetSelected + * @see dwt.events.SelectionEvent */ public static const int Selection = 13; /** * The default selection event type (value is 14). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Combo#addSelectionListener - * @see org.eclipse.swt.widgets.List#addSelectionListener - * @see org.eclipse.swt.widgets.Spinner#addSelectionListener - * @see org.eclipse.swt.widgets.Table#addSelectionListener - * @see org.eclipse.swt.widgets.Text#addSelectionListener - * @see org.eclipse.swt.widgets.TrayItem#addSelectionListener - * @see org.eclipse.swt.widgets.Tree#addSelectionListener - * @see org.eclipse.swt.events.SelectionListener#widgetDefaultSelected - * @see org.eclipse.swt.events.SelectionEvent + * @see dwt.widgets.Combo#addSelectionListener + * @see dwt.widgets.List#addSelectionListener + * @see dwt.widgets.Spinner#addSelectionListener + * @see dwt.widgets.Table#addSelectionListener + * @see dwt.widgets.Text#addSelectionListener + * @see dwt.widgets.TrayItem#addSelectionListener + * @see dwt.widgets.Tree#addSelectionListener + * @see dwt.events.SelectionListener#widgetDefaultSelected + * @see dwt.events.SelectionEvent */ public static const int DefaultSelection = 14; /** * The focus in event type (value is 15). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addFocusListener - * @see org.eclipse.swt.events.FocusListener#focusGained - * @see org.eclipse.swt.events.FocusEvent + * @see dwt.widgets.Control#addFocusListener + * @see dwt.events.FocusListener#focusGained + * @see dwt.events.FocusEvent */ public static const int FocusIn = 15; /** * The focus out event type (value is 16). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addFocusListener - * @see org.eclipse.swt.events.FocusListener#focusLost - * @see org.eclipse.swt.events.FocusEvent + * @see dwt.widgets.Control#addFocusListener + * @see dwt.events.FocusListener#focusLost + * @see dwt.events.FocusEvent */ public static const int FocusOut = 16; /** * The expand event type (value is 17). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Tree#addTreeListener - * @see org.eclipse.swt.events.TreeListener#treeExpanded - * @see org.eclipse.swt.events.TreeEvent + * @see dwt.widgets.Tree#addTreeListener + * @see dwt.events.TreeListener#treeExpanded + * @see dwt.events.TreeEvent */ public static const int Expand = 17; /** * The collapse event type (value is 18). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Tree#addTreeListener - * @see org.eclipse.swt.events.TreeListener#treeCollapsed - * @see org.eclipse.swt.events.TreeEvent + * @see dwt.widgets.Tree#addTreeListener + * @see dwt.events.TreeListener#treeCollapsed + * @see dwt.events.TreeEvent */ public static const int Collapse = 18; /** * The iconify event type (value is 19). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Shell#addShellListener - * @see org.eclipse.swt.events.ShellListener#shellIconified - * @see org.eclipse.swt.events.ShellEvent + * @see dwt.widgets.Shell#addShellListener + * @see dwt.events.ShellListener#shellIconified + * @see dwt.events.ShellEvent */ public static const int Iconify = 19; /** * The de-iconify event type (value is 20). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Shell#addShellListener - * @see org.eclipse.swt.events.ShellListener#shellDeiconified - * @see org.eclipse.swt.events.ShellEvent + * @see dwt.widgets.Shell#addShellListener + * @see dwt.events.ShellListener#shellDeiconified + * @see dwt.events.ShellEvent */ public static const int Deiconify = 20; /** * The close event type (value is 21). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Shell#addShellListener - * @see org.eclipse.swt.events.ShellListener#shellClosed - * @see org.eclipse.swt.events.ShellEvent + * @see dwt.widgets.Shell#addShellListener + * @see dwt.events.ShellListener#shellClosed + * @see dwt.events.ShellEvent */ public static const int Close = 21; /** * The show event type (value is 22). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Menu#addMenuListener - * @see org.eclipse.swt.events.MenuListener#menuShown - * @see org.eclipse.swt.events.MenuEvent + * @see dwt.widgets.Menu#addMenuListener + * @see dwt.events.MenuListener#menuShown + * @see dwt.events.MenuEvent */ public static const int Show = 22; /** * The hide event type (value is 23). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Menu#addMenuListener - * @see org.eclipse.swt.events.MenuListener#menuHidden - * @see org.eclipse.swt.events.MenuEvent + * @see dwt.widgets.Menu#addMenuListener + * @see dwt.events.MenuListener#menuHidden + * @see dwt.events.MenuEvent */ public static const int Hide = 23; /** * The modify event type (value is 24). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Combo#addModifyListener - * @see org.eclipse.swt.widgets.Spinner#addModifyListener - * @see org.eclipse.swt.widgets.Text#addModifyListener - * @see org.eclipse.swt.events.ModifyListener#modifyText - * @see org.eclipse.swt.events.ModifyEvent + * @see dwt.widgets.Combo#addModifyListener + * @see dwt.widgets.Spinner#addModifyListener + * @see dwt.widgets.Text#addModifyListener + * @see dwt.events.ModifyListener#modifyText + * @see dwt.events.ModifyEvent */ public static const int Modify = 24; /** * The verify event type (value is 25). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Combo#addVerifyListener - * @see org.eclipse.swt.widgets.Text#addVerifyListener - * @see org.eclipse.swt.events.VerifyListener#verifyText - * @see org.eclipse.swt.events.VerifyEvent + * @see dwt.widgets.Combo#addVerifyListener + * @see dwt.widgets.Text#addVerifyListener + * @see dwt.events.VerifyListener#verifyText + * @see dwt.events.VerifyEvent */ public static const int Verify = 25; /** * The activate event type (value is 26). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Shell#addShellListener - * @see org.eclipse.swt.events.ShellListener#shellActivated - * @see org.eclipse.swt.events.ShellEvent + * @see dwt.widgets.Shell#addShellListener + * @see dwt.events.ShellListener#shellActivated + * @see dwt.events.ShellEvent */ public static const int Activate = 26; /** * The deactivate event type (value is 27). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Shell#addShellListener - * @see org.eclipse.swt.events.ShellListener#shellDeactivated - * @see org.eclipse.swt.events.ShellEvent + * @see dwt.widgets.Shell#addShellListener + * @see dwt.events.ShellListener#shellDeactivated + * @see dwt.events.ShellEvent */ public static const int Deactivate = 27; /** * The help event type (value is 28). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addHelpListener - * @see org.eclipse.swt.widgets.Menu#addHelpListener - * @see org.eclipse.swt.widgets.MenuItem#addHelpListener - * @see org.eclipse.swt.events.HelpListener#helpRequested - * @see org.eclipse.swt.events.HelpEvent + * @see dwt.widgets.Control#addHelpListener + * @see dwt.widgets.Menu#addHelpListener + * @see dwt.widgets.MenuItem#addHelpListener + * @see dwt.events.HelpListener#helpRequested + * @see dwt.events.HelpEvent */ public static const int Help = 28; /** * The drag detect event type (value is 29). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.dnd.DragSource + * @see dwt.dnd.DragSource */ public static const int DragDetect = 29; /** * The arm event type (value is 30). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.MenuItem#addArmListener - * @see org.eclipse.swt.events.ArmListener#widgetArmed - * @see org.eclipse.swt.events.ArmEvent + * @see dwt.widgets.MenuItem#addArmListener + * @see dwt.events.ArmListener#widgetArmed + * @see dwt.events.ArmEvent */ public static const int Arm = 30; /** * The traverse event type (value is 31). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addTraverseListener - * @see org.eclipse.swt.events.TraverseListener#keyTraversed - * @see org.eclipse.swt.events.TraverseEvent + * @see dwt.widgets.Control#addTraverseListener + * @see dwt.events.TraverseListener#keyTraversed + * @see dwt.events.TraverseEvent */ public static const int Traverse = 31; /** * The mouse hover event type (value is 32). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Control#addMouseTrackListener - * @see org.eclipse.swt.events.MouseTrackListener#mouseHover - * @see org.eclipse.swt.events.MouseEvent + * @see dwt.widgets.Control#addMouseTrackListener + * @see dwt.events.MouseTrackListener#mouseHover + * @see dwt.events.MouseEvent */ public static const int MouseHover = 32; /** * The hardware key down event type (value is 33). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event */ public static const int HardKeyDown = 33; /** * The hardware key up event type (value is 34). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event */ public static const int HardKeyUp = 34; /** * The menu detect event type (value is 35). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * * @since 3.0 */ @@ -541,12 +541,12 @@ /** * The set data event type (value is 36). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * - * @see org.eclipse.swt.widgets.Table - * @see org.eclipse.swt.widgets.Tree + * @see dwt.widgets.Table + * @see dwt.widgets.Tree * * @since 3.0 */ @@ -555,9 +555,9 @@ /** * The mouse wheel event type (value is 37). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * * @since 3.1 */ @@ -577,8 +577,8 @@ * lays out all widgets after this event is sent. *

* - * @see org.eclipse.swt.widgets.Display#addListener - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Display#addListener + * @see dwt.widgets.Event * * @since 3.2 */ @@ -587,9 +587,9 @@ /** * The erase item event type (value is 40). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * * @since 3.2 */ @@ -598,9 +598,9 @@ /** * The measure item event type (value is 41). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * * @since 3.2 */ @@ -609,9 +609,9 @@ /** * The paint item event type (value is 42). * - * @see org.eclipse.swt.widgets.Widget#addListener - * @see org.eclipse.swt.widgets.Display#addFilter - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Widget#addListener + * @see dwt.widgets.Display#addFilter + * @see dwt.widgets.Event * * @since 3.2 */ @@ -2850,7 +2850,7 @@ * For additional information see the comment in * Widget.checkSubclass(). * - * @see org.eclipse.swt.widgets.Widget#checkSubclass + * @see dwt.widgets.Widget#checkSubclass */ public static const int ERROR_INVALID_SUBCLASS = 43; @@ -3057,8 +3057,8 @@ /** * Line drawing style for flat end caps (value is 1). * - * @see org.eclipse.swt.graphics.GC#setLineCap(int) - * @see org.eclipse.swt.graphics.GC#getLineCap() + * @see dwt.graphics.GC#setLineCap(int) + * @see dwt.graphics.GC#getLineCap() * * @since 3.1 */ @@ -3067,8 +3067,8 @@ /** * Line drawing style for rounded end caps (value is 2). * - * @see org.eclipse.swt.graphics.GC#setLineCap(int) - * @see org.eclipse.swt.graphics.GC#getLineCap() + * @see dwt.graphics.GC#setLineCap(int) + * @see dwt.graphics.GC#getLineCap() * * @since 3.1 */ @@ -3077,8 +3077,8 @@ /** * Line drawing style for square end caps (value is 3). * - * @see org.eclipse.swt.graphics.GC#setLineCap(int) - * @see org.eclipse.swt.graphics.GC#getLineCap() + * @see dwt.graphics.GC#setLineCap(int) + * @see dwt.graphics.GC#getLineCap() * * @since 3.1 */ @@ -3087,8 +3087,8 @@ /** * Line drawing style for miter joins (value is 1). * - * @see org.eclipse.swt.graphics.GC#setLineJoin(int) - * @see org.eclipse.swt.graphics.GC#getLineJoin() + * @see dwt.graphics.GC#setLineJoin(int) + * @see dwt.graphics.GC#getLineJoin() * * @since 3.1 */ @@ -3097,8 +3097,8 @@ /** * Line drawing style for rounded joins (value is 2). * - * @see org.eclipse.swt.graphics.GC#setLineJoin(int) - * @see org.eclipse.swt.graphics.GC#getLineJoin() + * @see dwt.graphics.GC#setLineJoin(int) + * @see dwt.graphics.GC#getLineJoin() * * @since 3.1 */ @@ -3107,8 +3107,8 @@ /** * Line drawing style for bevel joins (value is 3). * - * @see org.eclipse.swt.graphics.GC#setLineJoin(int) - * @see org.eclipse.swt.graphics.GC#getLineJoin() + * @see dwt.graphics.GC#setLineJoin(int) + * @see dwt.graphics.GC#getLineJoin() * * @since 3.1 */ @@ -3142,8 +3142,8 @@ /** * Line drawing style for custom dashed lines (value is 6). * - * @see org.eclipse.swt.graphics.GC#setLineDash(int[]) - * @see org.eclipse.swt.graphics.GC#getLineDash() + * @see dwt.graphics.GC#setLineDash(int[]) + * @see dwt.graphics.GC#getLineDash() * * @since 3.1 */ @@ -3299,8 +3299,8 @@ * The character movement type (value is 1<<0). * This constant is used to move a text offset over a character. * - * @see org.eclipse.swt.graphics.TextLayout#getNextOffset(int, int) - * @see org.eclipse.swt.graphics.TextLayout#getPreviousOffset(int, int) + * @see dwt.graphics.TextLayout#getNextOffset(int, int) + * @see dwt.graphics.TextLayout#getPreviousOffset(int, int) * * @since 3.0 */ @@ -3313,8 +3313,8 @@ * undivisible, this means that a caret offset can not be placed in the * middle of a cluster. * - * @see org.eclipse.swt.graphics.TextLayout#getNextOffset(int, int) - * @see org.eclipse.swt.graphics.TextLayout#getPreviousOffset(int, int) + * @see dwt.graphics.TextLayout#getNextOffset(int, int) + * @see dwt.graphics.TextLayout#getPreviousOffset(int, int) * * @since 3.0 */ @@ -3329,8 +3329,8 @@ * of the word if the direction is next and at the start of the word if the * direction is previous. * - * @see org.eclipse.swt.graphics.TextLayout#getNextOffset(int, int) - * @see org.eclipse.swt.graphics.TextLayout#getPreviousOffset(int, int) + * @see dwt.graphics.TextLayout#getNextOffset(int, int) + * @see dwt.graphics.TextLayout#getPreviousOffset(int, int) * * @since 3.0 */ @@ -3342,8 +3342,8 @@ * word end. The behavior of this constant does not depend on the platform. * * - * @see org.eclipse.swt.graphics.TextLayout#getNextOffset(int, int) - * @see org.eclipse.swt.graphics.TextLayout#getPreviousOffset(int, int) + * @see dwt.graphics.TextLayout#getNextOffset(int, int) + * @see dwt.graphics.TextLayout#getPreviousOffset(int, int) * * @since 3.3 */ @@ -3354,8 +3354,8 @@ * This constant is used to move a text offset to the next or previous * word start. The behavior of this constant does not depend on the platform. * - * @see org.eclipse.swt.graphics.TextLayout#getNextOffset(int, int) - * @see org.eclipse.swt.graphics.TextLayout#getPreviousOffset(int, int) + * @see dwt.graphics.TextLayout#getNextOffset(int, int) + * @see dwt.graphics.TextLayout#getPreviousOffset(int, int) * * @since 3.3 */ @@ -3468,9 +3468,9 @@ *
*
java.lang.IllegalArgumentException
*
thrown whenever one of the API methods is invoked with an illegal argument
- *
org.eclipse.swt.SWTException (extends java.lang.RuntimeException)
+ *
dwt.SWTException (extends java.lang.RuntimeException)
*
thrown whenever a recoverable error happens internally in SWT
- *
org.eclipse.swt.SWTError (extends java.lang.Error)
+ *
dwt.SWTError (extends java.lang.Error)
*
thrown whenever a non-recoverable error happens internally in SWT
*
* This method provides the logic which maps between error codes @@ -3497,9 +3497,9 @@ *
*
java.lang.IllegalArgumentException
*
thrown whenever one of the API methods is invoked with an illegal argument
- *
org.eclipse.swt.SWTException (extends java.lang.RuntimeException)
+ *
dwt.SWTException (extends java.lang.RuntimeException)
*
thrown whenever a recoverable error happens internally in SWT
- *
org.eclipse.swt.SWTError (extends java.lang.Error)
+ *
dwt.SWTError (extends java.lang.Error)
*
thrown whenever a non-recoverable error happens internally in SWT
*
* This method provides the logic which maps between error codes diff -r ad2b69216039 -r 63c023465156 dwt/SWTError.d --- a/dwt/SWTError.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/SWTError.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.SWTError; +module dwt.SWTError; -import org.eclipse.swt.SWT; +import dwt.SWT; import tango.core.Exception; import tango.io.Stdout; diff -r ad2b69216039 -r 63c023465156 dwt/SWTException.d --- a/dwt/SWTException.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/SWTException.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.SWTException; +module dwt.SWTException; -import org.eclipse.swt.SWT; +import dwt.SWT; import tango.core.Exception; import tango.io.Stdout; diff -r ad2b69216039 -r 63c023465156 dwt/events/ArmEvent.d --- a/dwt/events/ArmEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ArmEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ArmEvent; +module dwt.events.ArmEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/ArmListener.d --- a/dwt/events/ArmListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ArmListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ArmListener; +module dwt.events.ArmListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.ArmEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.ArmEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/ControlAdapter.d --- a/dwt/events/ControlAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ControlAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ControlAdapter; +module dwt.events.ControlAdapter; -import org.eclipse.swt.events.ControlListener; +import dwt.events.ControlListener; /** * This adapter class provides default implementations for the * methods described by the ControlListener interface. diff -r ad2b69216039 -r 63c023465156 dwt/events/ControlEvent.d --- a/dwt/events/ControlEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ControlEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ControlEvent; +module dwt.events.ControlEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/ControlListener.d --- a/dwt/events/ControlListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ControlListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ControlListener; +module dwt.events.ControlListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.ControlEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.ControlEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/DisposeEvent.d --- a/dwt/events/DisposeEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/DisposeEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.DisposeEvent; +module dwt.events.DisposeEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/DisposeListener.d --- a/dwt/events/DisposeListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/DisposeListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.DisposeListener; +module dwt.events.DisposeListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.DisposeEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.DisposeEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/DragDetectEvent.d --- a/dwt/events/DragDetectEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/DragDetectEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.DragDetectEvent; +module dwt.events.DragDetectEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.MouseEvent; +import dwt.widgets.Event; +import dwt.events.MouseEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/DragDetectListener.d --- a/dwt/events/DragDetectListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/DragDetectListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.DragDetectListener; +module dwt.events.DragDetectListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.DragDetectEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.DragDetectEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/ExpandAdapter.d --- a/dwt/events/ExpandAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ExpandAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ExpandAdapter; +module dwt.events.ExpandAdapter; -import org.eclipse.swt.events.ExpandListener; +import dwt.events.ExpandListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/ExpandEvent.d --- a/dwt/events/ExpandEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ExpandEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ExpandEvent; +module dwt.events.ExpandEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.SelectionEvent; +import dwt.widgets.Event; +import dwt.events.SelectionEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/ExpandListener.d --- a/dwt/events/ExpandListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ExpandListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ExpandListener; +module dwt.events.ExpandListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.ExpandEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.ExpandEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/FocusAdapter.d --- a/dwt/events/FocusAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/FocusAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.FocusAdapter; +module dwt.events.FocusAdapter; -import org.eclipse.swt.events.FocusListener; +import dwt.events.FocusListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/FocusEvent.d --- a/dwt/events/FocusEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/FocusEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.FocusEvent; +module dwt.events.FocusEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/FocusListener.d --- a/dwt/events/FocusListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/FocusListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.FocusListener; +module dwt.events.FocusListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.FocusEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.FocusEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/HelpEvent.d --- a/dwt/events/HelpEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/HelpEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.HelpEvent; +module dwt.events.HelpEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/HelpListener.d --- a/dwt/events/HelpListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/HelpListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.HelpListener; +module dwt.events.HelpListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.HelpEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.HelpEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/KeyAdapter.d --- a/dwt/events/KeyAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/KeyAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.KeyAdapter; +module dwt.events.KeyAdapter; -import org.eclipse.swt.events.KeyListener; +import dwt.events.KeyListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/KeyEvent.d --- a/dwt/events/KeyEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/KeyEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.KeyEvent; +module dwt.events.KeyEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; import tango.text.convert.Format; @@ -55,7 +55,7 @@ * typing Ctrl+M or Return both result in the character '\r' but the * keyCode field will also contain '\r' when Return was typed. * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int keyCode; @@ -64,7 +64,7 @@ * the event was generated, as defined by the key code * constants in class SWT. * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int stateMask; diff -r ad2b69216039 -r 63c023465156 dwt/events/KeyListener.d --- a/dwt/events/KeyListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/KeyListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.KeyListener; +module dwt.events.KeyListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.KeyEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.KeyEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/MenuAdapter.d --- a/dwt/events/MenuAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MenuAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MenuAdapter; +module dwt.events.MenuAdapter; -import org.eclipse.swt.events.MenuListener; +import dwt.events.MenuListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/MenuDetectEvent.d --- a/dwt/events/MenuDetectEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MenuDetectEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MenuDetectEvent; +module dwt.events.MenuDetectEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; import tango.text.convert.Format; /** diff -r ad2b69216039 -r 63c023465156 dwt/events/MenuDetectListener.d --- a/dwt/events/MenuDetectListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MenuDetectListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MenuDetectListener; +module dwt.events.MenuDetectListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MenuDetectEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MenuDetectEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/MenuEvent.d --- a/dwt/events/MenuEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MenuEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MenuEvent; +module dwt.events.MenuEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/MenuListener.d --- a/dwt/events/MenuListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MenuListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MenuListener; +module dwt.events.MenuListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MenuEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MenuEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/ModifyEvent.d --- a/dwt/events/ModifyEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ModifyEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ModifyEvent; +module dwt.events.ModifyEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/ModifyListener.d --- a/dwt/events/ModifyListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ModifyListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ModifyListener; +module dwt.events.ModifyListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.ModifyEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.ModifyEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseAdapter.d --- a/dwt/events/MouseAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseAdapter; +module dwt.events.MouseAdapter; -import org.eclipse.swt.events.MouseListener; +import dwt.events.MouseListener; /** * This adapter class provides default implementations for the @@ -34,7 +34,7 @@ * * @param e an event containing information about the mouse double click * - * @see org.eclipse.swt.widgets.Display#getDoubleClickTime() + * @see dwt.widgets.Display#getDoubleClickTime() */ public void mouseDoubleClick(MouseEvent e) { } diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseEvent.d --- a/dwt/events/MouseEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseEvent; +module dwt.events.MouseEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseListener.d --- a/dwt/events/MouseListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseListener; +module dwt.events.MouseListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MouseEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MouseEvent; /** * Classes which implement this interface provide methods @@ -38,7 +38,7 @@ * * @param e an event containing information about the mouse double click * - * @see org.eclipse.swt.widgets.Display#getDoubleClickTime() + * @see dwt.widgets.Display#getDoubleClickTime() */ public void mouseDoubleClick(MouseEvent e); diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseMoveListener.d --- a/dwt/events/MouseMoveListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseMoveListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseMoveListener; +module dwt.events.MouseMoveListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MouseEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MouseEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseTrackAdapter.d --- a/dwt/events/MouseTrackAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseTrackAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseTrackAdapter; +module dwt.events.MouseTrackAdapter; -import org.eclipse.swt.events.MouseTrackListener; +import dwt.events.MouseTrackListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseTrackListener.d --- a/dwt/events/MouseTrackListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseTrackListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseTrackListener; +module dwt.events.MouseTrackListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MouseEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MouseEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/MouseWheelListener.d --- a/dwt/events/MouseWheelListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/MouseWheelListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.MouseWheelListener; +module dwt.events.MouseWheelListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.MouseEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.MouseEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/PaintEvent.d --- a/dwt/events/PaintEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/PaintEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.PaintEvent; +module dwt.events.PaintEvent; -import org.eclipse.swt.widgets.Event; +import dwt.widgets.Event; //PROTING_LEFT -//import org.eclipse.swt.graphics.GC; +//import dwt.graphics.GC; -import org.eclipse.swt.events.TypedEvent; +import dwt.events.TypedEvent; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/events/PaintListener.d --- a/dwt/events/PaintListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/PaintListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.PaintListener; +module dwt.events.PaintListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.PaintEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.PaintEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/SelectionAdapter.d --- a/dwt/events/SelectionAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/SelectionAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.SelectionAdapter; +module dwt.events.SelectionAdapter; -import org.eclipse.swt.events.SelectionListener; +import dwt.events.SelectionListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/SelectionEvent.d --- a/dwt/events/SelectionEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/SelectionEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.SelectionEvent; +module dwt.events.SelectionEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; import tango.text.convert.Format; /** @@ -36,21 +36,21 @@ * Extra detail information about the selection, depending on the widget. * *

Sash

ScrollBar and Slider

Table and Tree

Text

CoolItem and ToolItem

*/ public int detail; @@ -86,7 +86,7 @@ * This will be either the text of the hyperlink or the value of its HREF, * if one was specified. * - * @see org.eclipse.swt.widgets.Link#setText(String) + * @see dwt.widgets.Link#setText(String) * @since 3.1 */ public char[] text; diff -r ad2b69216039 -r 63c023465156 dwt/events/SelectionListener.d --- a/dwt/events/SelectionListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/SelectionListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.SelectionListener; +module dwt.events.SelectionListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.SelectionEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.SelectionEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/ShellAdapter.d --- a/dwt/events/ShellAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ShellAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ShellAdapter; +module dwt.events.ShellAdapter; -import org.eclipse.swt.events.ShellListener; +import dwt.events.ShellListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/ShellEvent.d --- a/dwt/events/ShellEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ShellEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ShellEvent; +module dwt.events.ShellEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.TypedEvent; +import dwt.widgets.Event; +import dwt.events.TypedEvent; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/events/ShellListener.d --- a/dwt/events/ShellListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/ShellListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.ShellListener; +module dwt.events.ShellListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.ShellEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.ShellEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/TraverseEvent.d --- a/dwt/events/TraverseEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TraverseEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TraverseEvent; +module dwt.events.TraverseEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.KeyEvent; +import dwt.widgets.Event; +import dwt.events.KeyEvent; import tango.text.convert.Format; /** @@ -84,16 +84,16 @@ /** * The traversal type. *

* * Setting this field will change the type of traversal. diff -r ad2b69216039 -r 63c023465156 dwt/events/TraverseListener.d --- a/dwt/events/TraverseListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TraverseListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TraverseListener; +module dwt.events.TraverseListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.TraverseEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.TraverseEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/events/TreeAdapter.d --- a/dwt/events/TreeAdapter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TreeAdapter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TreeAdapter; +module dwt.events.TreeAdapter; -import org.eclipse.swt.events.TreeListener; +import dwt.events.TreeListener; /** * This adapter class provides default implementations for the diff -r ad2b69216039 -r 63c023465156 dwt/events/TreeEvent.d --- a/dwt/events/TreeEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TreeEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TreeEvent; +module dwt.events.TreeEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.SelectionEvent; +import dwt.widgets.Event; +import dwt.events.SelectionEvent; /** * Instances of this class are sent as a result of diff -r ad2b69216039 -r 63c023465156 dwt/events/TreeListener.d --- a/dwt/events/TreeListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TreeListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TreeListener; +module dwt.events.TreeListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.TreeEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.TreeEvent; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/events/TypedEvent.d --- a/dwt/events/TypedEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/TypedEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.TypedEvent; +module dwt.events.TypedEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.internal.SWTEventObject; +import dwt.widgets.Event; +import dwt.internal.SWTEventObject; import tango.text.convert.Format; import tango.text.Util : split; @@ -22,7 +22,7 @@ * by SWT. Typed events contain particular information which is * applicable to the event occurrence. * - * @see org.eclipse.swt.widgets.Event + * @see dwt.widgets.Event */ public class TypedEvent : SWTEventObject { diff -r ad2b69216039 -r 63c023465156 dwt/events/VerifyEvent.d --- a/dwt/events/VerifyEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/VerifyEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.VerifyEvent; +module dwt.events.VerifyEvent; -import org.eclipse.swt.widgets.Event; -import org.eclipse.swt.events.KeyEvent; +import dwt.widgets.Event; +import dwt.events.KeyEvent; import tango.text.convert.Format; /** diff -r ad2b69216039 -r 63c023465156 dwt/events/VerifyListener.d --- a/dwt/events/VerifyListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/events/VerifyListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.events.VerifyListener; +module dwt.events.VerifyListener; -public import org.eclipse.swt.internal.SWTEventListener; -public import org.eclipse.swt.events.VerifyEvent; +public import dwt.internal.SWTEventListener; +public import dwt.events.VerifyEvent; /** * Classes which implement this interface provide a method diff -r ad2b69216039 -r 63c023465156 dwt/graphics/DeviceData.d --- a/dwt/graphics/DeviceData.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/DeviceData.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.DeviceData; +module dwt.graphics.DeviceData; import tango.core.Exception; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/FontData.d --- a/dwt/graphics/FontData.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/FontData.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.FontData; +module dwt.graphics.FontData; -import org.eclipse.swt.SWT; +import dwt.SWT; import tango.text.convert.Format; import tango.text.Util : locate; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/FontMetrics.d --- a/dwt/graphics/FontMetrics.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/FontMetrics.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.FontMetrics; +module dwt.graphics.FontMetrics; /** diff -r ad2b69216039 -r 63c023465156 dwt/graphics/ImageData.d --- a/dwt/graphics/ImageData.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/ImageData.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,14 +8,14 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.ImageData; +module dwt.graphics.ImageData; -import org.eclipse.swt.graphics.PaletteData; -import org.eclipse.swt.graphics.RGB; -import org.eclipse.swt.graphics.ImageDataLoader; -import org.eclipse.swt.SWT; -import org.eclipse.swt.internal.CloneableCompatibility; +import dwt.graphics.PaletteData; +import dwt.graphics.RGB; +import dwt.graphics.ImageDataLoader; +import dwt.SWT; +import dwt.internal.CloneableCompatibility; import tango.io.model.IConduit; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/ImageDataLoader.d --- a/dwt/graphics/ImageDataLoader.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/ImageDataLoader.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.ImageDataLoader; +module dwt.graphics.ImageDataLoader; -public import org.eclipse.swt.graphics.ImageData; +public import dwt.graphics.ImageData; -import org.eclipse.swt.graphics.ImageLoader; +import dwt.graphics.ImageLoader; import tango.io.model.IConduit; /** diff -r ad2b69216039 -r 63c023465156 dwt/graphics/ImageLoader.d --- a/dwt/graphics/ImageLoader.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/ImageLoader.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.ImageLoader; +module dwt.graphics.ImageLoader; -public import org.eclipse.swt.graphics.ImageLoaderListener; -public import org.eclipse.swt.graphics.ImageLoaderEvent; -public import org.eclipse.swt.graphics.ImageData; +public import dwt.graphics.ImageLoaderListener; +public import dwt.graphics.ImageLoaderEvent; +public import dwt.graphics.ImageData; -import org.eclipse.swt.SWT; -import org.eclipse.swt.internal.Compatibility; -//import org.eclipse.swt.internal.image.*; +import dwt.SWT; +import dwt.internal.Compatibility; +//import dwt.internal.image.*; import tango.core.Exception; import tango.core.Array; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/ImageLoaderEvent.d --- a/dwt/graphics/ImageLoaderEvent.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/ImageLoaderEvent.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,12 +8,12 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.ImageLoaderEvent; +module dwt.graphics.ImageLoaderEvent; -public import org.eclipse.swt.internal.SWTEventObject; -public import org.eclipse.swt.graphics.ImageLoader; -public import org.eclipse.swt.graphics.ImageData; +public import dwt.internal.SWTEventObject; +public import dwt.graphics.ImageLoader; +public import dwt.graphics.ImageData; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/ImageLoaderListener.d --- a/dwt/graphics/ImageLoaderListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/ImageLoaderListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.ImageLoaderListener; +module dwt.graphics.ImageLoaderListener; -public import org.eclipse.swt.graphics.ImageLoaderEvent; -public import org.eclipse.swt.internal.SWTEventListener; +public import dwt.graphics.ImageLoaderEvent; +public import dwt.internal.SWTEventListener; /** * Classes which implement this interface provide methods diff -r ad2b69216039 -r 63c023465156 dwt/graphics/LineAttributes.d --- a/dwt/graphics/LineAttributes.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/LineAttributes.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.LineAttributes; +module dwt.graphics.LineAttributes; -import org.eclipse.swt.SWT; +import dwt.SWT; /** * LineAttributes defines a set of line attributes that @@ -36,30 +36,30 @@ /** * The line style. * - * @see org.eclipse.swt.SWT#LINE_CUSTOM - * @see org.eclipse.swt.SWT#LINE_DASH - * @see org.eclipse.swt.SWT#LINE_DASHDOT - * @see org.eclipse.swt.SWT#LINE_DASHDOTDOT - * @see org.eclipse.swt.SWT#LINE_DOT - * @see org.eclipse.swt.SWT#LINE_SOLID + * @see dwt.SWT#LINE_CUSTOM + * @see dwt.SWT#LINE_DASH + * @see dwt.SWT#LINE_DASHDOT + * @see dwt.SWT#LINE_DASHDOTDOT + * @see dwt.SWT#LINE_DOT + * @see dwt.SWT#LINE_SOLID */ public int style; /** * The line cap style. * - * @see org.eclipse.swt.SWT#CAP_FLAT - * @see org.eclipse.swt.SWT#CAP_ROUND - * @see org.eclipse.swt.SWT#CAP_SQUARE + * @see dwt.SWT#CAP_FLAT + * @see dwt.SWT#CAP_ROUND + * @see dwt.SWT#CAP_SQUARE */ public int cap; /** * The line join style. * - * @see org.eclipse.swt.SWT#JOIN_BEVEL - * @see org.eclipse.swt.SWT#JOIN_MITER - * @see org.eclipse.swt.SWT#JOIN_ROUND + * @see dwt.SWT#JOIN_BEVEL + * @see dwt.SWT#JOIN_MITER + * @see dwt.SWT#JOIN_ROUND */ public int join; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/PaletteData.d --- a/dwt/graphics/PaletteData.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/PaletteData.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.PaletteData; +module dwt.graphics.PaletteData; -import org.eclipse.swt.SWT; -import org.eclipse.swt.graphics.RGB; +import dwt.SWT; +import dwt.graphics.RGB; /** * Instances of this class describe the color data used by an image. diff -r ad2b69216039 -r 63c023465156 dwt/graphics/PathData.d --- a/dwt/graphics/PathData.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/PathData.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.PathData; +module dwt.graphics.PathData; /** diff -r ad2b69216039 -r 63c023465156 dwt/graphics/Point.d --- a/dwt/graphics/Point.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/Point.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.Point; +module dwt.graphics.Point; -public import org.eclipse.swt.internal.SerializableCompatibility; +public import dwt.internal.SerializableCompatibility; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/RGB.d --- a/dwt/graphics/RGB.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/RGB.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,11 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.RGB; +module dwt.graphics.RGB; -public import org.eclipse.swt.internal.SerializableCompatibility; +public import dwt.internal.SerializableCompatibility; -import org.eclipse.swt.SWT; +import dwt.SWT; import Math = tango.math.Math : min, max; import tango.text.convert.Format; diff -r ad2b69216039 -r 63c023465156 dwt/graphics/Rectangle.d --- a/dwt/graphics/Rectangle.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/Rectangle.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,13 +8,13 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.Rectangle; +module dwt.graphics.Rectangle; -public import org.eclipse.swt.graphics.Point; -public import org.eclipse.swt.internal.SerializableCompatibility; +public import dwt.graphics.Point; +public import dwt.internal.SerializableCompatibility; -import org.eclipse.swt.SWT; -import org.eclipse.swt.SWTError; +import dwt.SWT; +import dwt.SWTError; import tango.text.convert.Format; /** diff -r ad2b69216039 -r 63c023465156 dwt/graphics/Resource.d --- a/dwt/graphics/Resource.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/graphics/Resource.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.graphics.Resource; +module dwt.graphics.Resource; -import org.eclipse.swt.SWT; +import dwt.SWT; //PORTING_TYPE class Device{} diff -r ad2b69216039 -r 63c023465156 dwt/internal/BidiUtil.d --- a/dwt/internal/BidiUtil.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/BidiUtil.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.BidiUtil; +module dwt.internal.BidiUtil; -//import org.eclipse.swt.graphics.GC; +//import dwt.graphics.GC; // PORTING_TYPE class GC{} diff -r ad2b69216039 -r 63c023465156 dwt/internal/CloneableCompatibility.d --- a/dwt/internal/CloneableCompatibility.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/CloneableCompatibility.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.CloneableCompatibility; +module dwt.internal.CloneableCompatibility; //PORTING_TYPE interface Cloneable{} diff -r ad2b69216039 -r 63c023465156 dwt/internal/Compatibility.d --- a/dwt/internal/Compatibility.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/Compatibility.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.Compatibility; +module dwt.internal.Compatibility; /+ import java.io.*; @@ -18,7 +18,7 @@ import java.util.zip.InflaterInputStream; +/ -import org.eclipse.swt.SWT; +import dwt.SWT; import Math = tango.math.Math; import Unicode = tango.text.Unicode; @@ -281,7 +281,7 @@ } if (msgs == null) { try { - msgs = ResourceBundle.getBundle("org.eclipse.swt.internal.SWTMessages"); //$NON-NLS-1$ + msgs = ResourceBundle.getBundle("dwt.internal.SWTMessages"); //$NON-NLS-1$ } catch (MissingResourceException ex) { answer = key + " (no resource bundle)"; //$NON-NLS-1$ } @@ -302,7 +302,7 @@ } if (msgs == null) { try { - msgs = ResourceBundle.getBundle("org.eclipse.swt.internal.SWTMessages"); //$NON-NLS-1$ + msgs = ResourceBundle.getBundle("dwt.internal.SWTMessages"); //$NON-NLS-1$ } catch (MissingResourceException ex) { answer = key + " (no resource bundle)"; //$NON-NLS-1$ } diff -r ad2b69216039 -r 63c023465156 dwt/internal/Converter.d --- a/dwt/internal/Converter.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/Converter.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.Converter; +module dwt.internal.Converter; -//import org.eclipse.swt.internal.gtk.OS; +//import dwt.internal.gtk.OS; import tango.stdc.stringz; extern(C) { diff -r ad2b69216039 -r 63c023465156 dwt/internal/LONG.d --- a/dwt/internal/LONG.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/LONG.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.LONG; +module dwt.internal.LONG; public class LONG { public int /*long*/ value; diff -r ad2b69216039 -r 63c023465156 dwt/internal/Library.d --- a/dwt/internal/Library.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/Library.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.Library; +module dwt.internal.Library; import tango.util.Convert; diff -r ad2b69216039 -r 63c023465156 dwt/internal/Lock.d --- a/dwt/internal/Lock.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/Lock.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.Lock; +module dwt.internal.Lock; import tango.core.Thread; import tango.core.sync.Mutex; diff -r ad2b69216039 -r 63c023465156 dwt/internal/Platform.d --- a/dwt/internal/Platform.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/Platform.d Sat Jan 05 17:58:37 2008 +0100 @@ -12,9 +12,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.Platform; +module dwt.internal.Platform; -import org.eclipse.swt.internal.Lock; +import dwt.internal.Lock; public class Platform { public static const char[] PLATFORM = "gtk"; //$NON-NLS-1$ diff -r ad2b69216039 -r 63c023465156 dwt/internal/SWTEventListener.d --- a/dwt/internal/SWTEventListener.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/SWTEventListener.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.SWTEventListener; +module dwt.internal.SWTEventListener; //import java.util.EventListener; diff -r ad2b69216039 -r 63c023465156 dwt/internal/SWTEventObject.d --- a/dwt/internal/SWTEventObject.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/SWTEventObject.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.SWTEventObject; +module dwt.internal.SWTEventObject; //import java.util.EventObject; diff -r ad2b69216039 -r 63c023465156 dwt/internal/SerializableCompatibility.d --- a/dwt/internal/SerializableCompatibility.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/SerializableCompatibility.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.SerializableCompatibility; +module dwt.internal.SerializableCompatibility; //import java.io.Serializable; diff -r ad2b69216039 -r 63c023465156 dwt/internal/gtk/OS.d --- a/dwt/internal/gtk/OS.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/internal/gtk/OS.d Sat Jan 05 17:58:37 2008 +0100 @@ -12,9 +12,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.internal.gtk.OS; +module dwt.internal.gtk.OS; -import org.eclipse.swt.internal.Platform; +import dwt.internal.Platform; import tango.core.Traits; template NameOfFunc(alias f) { @@ -33,7 +33,7 @@ }"); } -//import org.eclipse.swt.internal.*; +//import dwt.internal.*; // opaque structs used in the parameters // they do not have a separated module diff -r ad2b69216039 -r 63c023465156 dwt/widgets/Event.d --- a/dwt/widgets/Event.d Sat Jan 05 17:39:49 2008 +0100 +++ b/dwt/widgets/Event.d Sat Jan 05 17:58:37 2008 +0100 @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -module org.eclipse.swt.widgets.Event; +module dwt.widgets.Event; import tango.text.convert.Format; @@ -33,7 +33,7 @@ *

* * @see Listener - * @see org.eclipse.swt.events.TypedEvent + * @see dwt.events.TypedEvent */ public class Event { @@ -54,7 +54,7 @@ * the type of event, as defined by the event type constants * in class SWT * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int type; @@ -62,7 +62,7 @@ * the event specific detail field, as defined by the detail constants * in class SWT * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int detail; @@ -158,7 +158,7 @@ * but the keyCode field will also contain '\r' when Enter was typed * and 'm' when Ctrl+M was typed. * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int keyCode; @@ -166,7 +166,7 @@ * depending on the event, the state of the keyboard modifier * keys and mouse masks at the time the event was generated. * - * @see org.eclipse.swt.SWT + * @see dwt.SWT */ public int stateMask;