view dwt/internal/theme/TabItemDrawData.d @ 126:38807a925e24

Fixed compile errors, support for SWT language files
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 23:35:40 +0100
parents 540fa4e9974a
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.TabItemDrawData;

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

public class TabItemDrawData : DrawData {
    
    public TabFolderDrawData parent;
    public int position;

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

}