view dwtx/ui/internal/forms/widgets/IFocusSelectable.d @ 75:5d489b9f966c

Fix continue porting
author Frank Benoit <benoit@tionex.de>
date Sat, 24 May 2008 05:11:16 +0200
parents
children 04b47443bb01
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2003, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.ui.internal.forms.widgets.IFocusSelectable;

import tango.util.collection.HashMap;

import dwt.graphics.Rectangle;
import dwt.dwthelper.utils;

public interface IFocusSelectable {
    alias HashMap!(String,Object) Hashtable;
    bool isFocusSelectable(Hashtable resourceTable);
    bool setFocus(Hashtable resourceTable, bool direction);
    Rectangle getBounds();
}