view dwtx/jface/resource/DeviceResourceManager.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents 6c14e54dfc11
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2004, 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:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.jface.resource.DeviceResourceManager;

import dwtx.jface.resource.AbstractResourceManager;
import dwtx.jface.resource.DeviceResourceDescriptor;
import dwtx.jface.resource.ImageDescriptor;

import dwt.graphics.Device;
import dwt.graphics.Image;

import dwt.dwthelper.utils;

/**
 * Manages DWT resources for a particular device.
 *
 * <p>
 * IMPORTANT: in most cases clients should use a <code>LocalResourceManager</code> instead of a
 * <code>DeviceResourceManager</code>. To create a resource manager on a particular display,
 * use <code>new LocalResourceManager(JFaceResources.getResources(myDisplay))</code>.
 * <code>DeviceResourceManager</code> should only be used directly when managing
 * resources for a device other than a Display (such as a printer).
 * </p>
 *
 * @see LocalResourceManager
 *
 * @since 3.1
 */
public final class DeviceResourceManager : AbstractResourceManager {

    private Device device;
    private Image missingImage;

    /* (non-Javadoc)
     * @see dwtx.jface.resource.ResourceManager#getDevice()
     */
    public override Device getDevice() {
        return device;
    }

    /**
     * Creates a new registry for the given device.
     *
     * @param device device to manage
     */
    public this(Device device) {
        this.device = device;
    }

    /* (non-Javadoc)
     * @see dwtx.jface.resource.AbstractResourceManager#allocate(dwtx.jface.resource.DeviceResourceDescriptor)
     */
    protected override Object allocate(DeviceResourceDescriptor descriptor){
        return descriptor.createResource(device);
    }

    /* (non-Javadoc)
     * @see dwtx.jface.resource.AbstractResourceManager#deallocate(java.lang.Object, dwtx.jface.resource.DeviceResourceDescriptor)
     */
    protected override void deallocate(Object resource, DeviceResourceDescriptor descriptor) {
        descriptor.destroyResource(resource);
    }

    /* (non-Javadoc)
     * @see dwtx.jface.resource.ResourceManager#getDefaultImage()
     */
    protected override Image getDefaultImage() {
        if (missingImage is null) {
            missingImage = ImageDescriptor.getMissingImageDescriptor().createImage();
        }
        return missingImage;
    }

    /* (non-Javadoc)
     * @see dwtx.jface.resource.AbstractResourceManager#dispose()
     */
    public override void dispose() {
        super.dispose();
        if (missingImage !is null) {
            missingImage.dispose();
            missingImage = null;
        }
    }
}