view dwt/internal/cocoa/SWTScrollView.d @ 37:642f460a0908

Fixed a lot of compile errors, a "hello world" app compiles now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 10 Oct 2008 12:29:48 +0200
parents db5a898b2119
children d8635bb48c7c
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2007 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 <jacob.carlborg@gmail.com>
 *******************************************************************************/
module dwt.internal.cocoa.SWTScrollView;

import dwt.internal.cocoa.NSInteger;
import dwt.internal.cocoa.NSScrollView;
import dwt.internal.cocoa.OS;
import objc = dwt.internal.objc.runtime;

public class SWTScrollView : NSScrollView {

    public this () {
        super(null);
    }

    public this (objc.id id) {
        super(id);
    }

    public void setTag (NSInteger tag) {
        OS.objc_msgSend(id_, OS.sel_setTag_1, tag);
    }

}