view dwt/internal/theme/ToolItemDrawData.d @ 124:540fa4e9974a

Ported dwt.internal.theme
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:19:08 +0100
parents 1a8b3cb347e0
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2006 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:
 *     Jacob Carlborg <doob@me.com>
 *******************************************************************************/
module dwt.internal.theme.ToolItemDrawData;

import dwt.dwthelper.utils;
import dwt.internal.theme.DrawData;
import dwt.internal.theme.ToolBarDrawData;

public class ToolItemDrawData : DrawData {

    public ToolBarDrawData parent;

public this() {
    state = new int[2];
}

}