view dwt/internal/cocoa/NSScreen.d @ 1:8b48be5454ce

The internal cocoa classes compile now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 19 Aug 2008 17:35:17 +0200
parents 380af2bdd8e5
children f565d3a95c0a
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.NSScreen;

import dwt.internal.cocoa.CGFloat;
import dwt.internal.cocoa.NSArray;
import dwt.internal.cocoa.NSDictionary;
import dwt.internal.cocoa.NSObject;
import dwt.internal.cocoa.NSRect;
import dwt.internal.cocoa.NSWindow : NSWindowDepth;
import dwt.internal.cocoa.OS;
import objc = dwt.internal.objc.runtime;

public class NSScreen : NSObject
{

    public this ()
    {
        super();
    }

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

    public static NSScreen deepestScreen ()
    {
        objc.id result = OS.objc_msgSend(OS.class_NSScreen, OS.sel_deepestScreen);
        return result !is null ? new NSScreen(result) : null;
    }

    public NSWindowDepth depth ()
    {
        return cast(NSWindowDepth) OS.objc_msgSend(this.id_, OS.sel_depth);
    }

    public NSDictionary deviceDescription ()
    {
        objc.id result = OS.objc_msgSend(this.id_, OS.sel_deviceDescription);
        return result !is null ? new NSDictionary(result) : null;
    }

    public NSRect frame ()
    {
        NSRect result;
        OS.objc_msgSend_stret(&result, this.id_, OS.sel_frame);
        return result;
    }

    public static NSScreen mainScreen ()
    {
        objc.id result = OS.objc_msgSend(OS.class_NSScreen, OS.sel_mainScreen);
        return result !is null ? new NSScreen(result) : null;
    }

    public static NSArray screens ()
    {
        objc.id result = OS.objc_msgSend(OS.class_NSScreen, OS.sel_screens);
        return result !is null ? new NSArray(result) : null;
    }

    public /*const*/NSWindowDepth* supportedWindowDepths ()
    {
        return cast(/*const*/NSWindowDepth*)OS.objc_msgSend(this.id_, OS.sel_supportedWindowDepths);
    }

    public CGFloat userSpaceScaleFactor ()
    {
        return cast(CGFloat) OS.objc_msgSend_fpret(this.id_, OS.sel_userSpaceScaleFactor);
    }

    public NSRect visibleFrame ()
    {
        NSRect result;
        OS.objc_msgSend_stret(&result, this.id_, OS.sel_visibleFrame);
        return result;
    }

}