view dwt/internal/cocoa/NSStepper.d @ 13:f565d3a95c0a

Ported dwt.internal
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 22 Aug 2008 16:46:34 +0200
parents 8b48be5454ce
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.NSStepper;

import dwt.internal.cocoa.NSControl;
import dwt.internal.cocoa.OS;
import objc = dwt.internal.objc.runtime;

public class NSStepper : NSControl
{

    public this ()
    {
        super();
    }

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

    public bool autorepeat ()
    {
        return OS.objc_msgSend(this.id_, OS.sel_autorepeat) !is null;
    }

    public double increment ()
    {
        return OS.objc_msgSend_fpret(this.id_, OS.sel_increment);
    }

    public double maxValue ()
    {
        return OS.objc_msgSend_fpret(this.id_, OS.sel_maxValue);
    }

    public double minValue ()
    {
        return OS.objc_msgSend_fpret(this.id_, OS.sel_minValue);
    }

    public void setAutorepeat (bool autorepeat)
    {
        OS.objc_msgSend(this.id_, OS.sel_setAutorepeat_1, autorepeat);
    }

    public void setIncrement (double increment)
    {
        OS.objc_msgSend(this.id_, OS.sel_setIncrement_1, increment);
    }

    public void setMaxValue (double maxValue)
    {
        OS.objc_msgSend(this.id_, OS.sel_setMaxValue_1, maxValue);
    }

    public void setMinValue (double minValue)
    {
        OS.objc_msgSend(this.id_, OS.sel_setMinValue_1, minValue);
    }

    public void setValueWraps (bool valueWraps)
    {
        OS.objc_msgSend(this.id_, OS.sel_setValueWraps_1, valueWraps);
    }

    public bool valueWraps ()
    {
        return OS.objc_msgSend(this.id_, OS.sel_valueWraps) !is null;
    }

}