view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/custom/StyledTextDropTargetEffect.d @ 120:536e43f63c81

Comprehensive update for Win32/Linux32 dmd-2.053/dmd-1.068+Tango-r5661 ===D2=== * added [Try]Immutable/Const/Shared templates to work with differenses in D1/D2 instead of version statements used these templates to work with strict type storage rules of dmd-2.053 * com.ibm.icu now also compilable with D2, but not tested yet * small fixes Snippet288 - shared data is in TLS ===Phobos=== * fixed critical bugs in Phobos implemention completely incorrect segfault prone fromStringz (Linux's port ruthless killer) terrible, incorrect StringBuffer realization (StyledText killer) * fixed small bugs as well Snippet72 - misprint in the snippet * implemented missed functionality for Phobos ByteArrayOutputStream implemented (image loading available) formatting correctly works for all DWT's cases As a result, folowing snippets now works with Phobos (Snippet### - what is fixed): Snippet24, 42, 111, 115, 130, 235, 276 - bad string formatting Snippet48, 282 - crash on image loading Snippet163, 189, 211, 213, 217, 218, 222 - crash on copy/cut in StyledText Snippet244 - hang-up ===Tango=== * few changes for the latest Tango trunc-r5661 * few small performance improvments ===General=== * implMissing-s for only one version changed to implMissingInTango/InPhobos * incorrect calls to Format in toString-s fixed * fixed loading \uXXXX characters in ResourceBundle * added good UTF-8 support for StyledText, TextLayout (Win32) and friends UTF functions revised and tested. It is now in java.nonstandard.*Utf modules StyledText and TextLayout (Win32) modules revised for UTF-8 support * removed small diferences in most identical files in *.swt.* folders *.swt.internal.image, *.swt.events and *.swt.custom are identical in Win32/Linux32 now 179 of 576 (~31%) files in *.swt.* folders are fully identical * Win32: snippets now have right subsystem, pretty icons and native system style controls * small fixes in snippets Snippet44 - it's not Snippet44 Snippet212 - functions work with different images and offsets arrays Win32: Snippet282 - crash on close if the button has an image Snippet293 - setGrayed is commented and others Win32: As a result, folowing snippets now works Snippet68 - color doesn't change Snippet163, 189, 211, 213, 217, 218, 222 - UTF-8 issues (see above) Snippet193 - no tabel headers
author Denis Shelomovskij <verylonglogin.reg@gmail.com>
date Sat, 09 Jul 2011 15:50:20 +0300
parents 7a2dd761a8b2
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2008 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 org.eclipse.swt.custom.StyledTextDropTargetEffect;


import org.eclipse.swt.SWT;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DropTargetAdapter;
import org.eclipse.swt.dnd.DropTargetEffect;
import org.eclipse.swt.dnd.DropTargetEvent;
import org.eclipse.swt.graphics.FontMetrics;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.custom.StyledTextContent;

import java.lang.all;

/**
 * This adapter class provides a default drag under effect (eg. select and scroll)
 * when a drag occurs over a <code>StyledText</code>.
 *
 * <p>Classes that wish to provide their own drag under effect for a <code>StyledText</code>
 * can extend this class, override the <code>StyledTextDropTargetEffect.dragOver</code>
 * method and override any other applicable methods in <code>StyledTextDropTargetEffect</code> to
 * display their own drag under effect.</p>
 *
 * Subclasses that override any methods of this class should call the corresponding
 * <code>super</code> method to get the default drag under effect implementation.
 *
 * <p>The feedback value is either one of the FEEDBACK constants defined in
 * class <code>DND</code> which is applicable to instances of this class,
 * or it must be built by <em>bitwise OR</em>'ing together
 * (that is, using the <code>int</code> "|" operator) two or more
 * of those <code>DND</code> effect constants.
 * </p>
 * <p>
 * <dl>
 * <dt><b>Feedback:</b></dt>
 * <dd>FEEDBACK_SELECT, FEEDBACK_SCROLL</dd>
 * </dl>
 * </p>
 *
 * @see DropTargetAdapter
 * @see DropTargetEvent
 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
 *
 * @since 3.3
 */
public class StyledTextDropTargetEffect : DropTargetEffect {
    static const int CARET_WIDTH = 2;
    static const int SCROLL_HYSTERESIS = 100; // milli seconds
    static const int SCROLL_TOLERANCE = 20; // pixels

    int currentOffset = -1;
    long scrollBeginTime;
    int scrollX = -1, scrollY = -1;
    Listener paintListener;

    /**
     * Creates a new <code>StyledTextDropTargetEffect</code> to handle the drag under effect on the specified
     * <code>StyledText</code>.
     *
     * @param styledText the <code>StyledText</code> over which the user positions the cursor to drop the data
     */
    public this(StyledText styledText) {
        super(styledText);
        paintListener = new class() Listener {
            public void handleEvent (Event event) {
                if (currentOffset !is -1) {
                    StyledText text = cast(StyledText) getControl();
                    Point position = text.getLocationAtOffset(currentOffset);
                    int height = text.getLineHeight(currentOffset);
                    event.gc.setBackground(event.display.getSystemColor (SWT.COLOR_BLACK));
                    event.gc.fillRectangle(position.x, position.y, CARET_WIDTH, height);
                }
            }
        };
    }

    /**
     * This implementation of <code>dragEnter</code> provides a default drag under effect
     * for the feedback specified in <code>event.feedback</code>.
     *
     * For additional information see <code>DropTargetAdapter.dragEnter</code>.
     *
     * Subclasses that override this method should call <code>super.dragEnter(event)</code>
     * to get the default drag under effect implementation.
     *
     * @param event  the information associated with the drag start event
     *
     * @see DropTargetAdapter
     * @see DropTargetEvent
     */
    public override void dragEnter(DropTargetEvent event) {
        currentOffset = -1;
        scrollBeginTime = 0;
        scrollX = -1;
        scrollY = -1;
        getControl().removeListener(SWT.Paint, paintListener);
        getControl().addListener (SWT.Paint, paintListener);
    }

    /**
     * This implementation of <code>dragLeave</code> provides a default drag under effect
     * for the feedback specified in <code>event.feedback</code>.
     *
     * For additional information see <code>DropTargetAdapter.dragLeave</code>.
     *
     * Subclasses that override this method should call <code>super.dragLeave(event)</code>
     * to get the default drag under effect implementation.
     *
     * @param event  the information associated with the drag leave event
     *
     * @see DropTargetAdapter
     * @see DropTargetEvent
     */
    public override void dragLeave(DropTargetEvent event) {
        StyledText text = cast(StyledText) getControl();
        if (currentOffset !is -1) {
            refreshCaret(text, currentOffset, -1);
        }
        text.removeListener(SWT.Paint, paintListener);
        scrollBeginTime = 0;
        scrollX = -1;
        scrollY = -1;
    }

    /**
     * This implementation of <code>dragOver</code> provides a default drag under effect
     * for the feedback specified in <code>event.feedback</code>.
     *
     * For additional information see <code>DropTargetAdapter.dragOver</code>.
     *
     * Subclasses that override this method should call <code>super.dragOver(event)</code>
     * to get the default drag under effect implementation.
     *
     * @param event  the information associated with the drag over event
     *
     * @see DropTargetAdapter
     * @see DropTargetEvent
     * @see DND#FEEDBACK_SELECT
     * @see DND#FEEDBACK_SCROLL
     */
    public override void dragOver(DropTargetEvent event) {
        int effect = event.feedback;
        StyledText text = cast(StyledText) getControl();

        Point pt = text.getDisplay().map(null, text, event.x, event.y);
        if ((effect & DND.FEEDBACK_SCROLL) is 0) {
            scrollBeginTime = 0;
            scrollX = scrollY = -1;
        } else {
            if (text.getCharCount() is 0) {
                scrollBeginTime = 0;
                scrollX = scrollY = -1;
            } else {
                if (scrollX !is -1 && scrollY !is -1 && scrollBeginTime !is 0 &&
                    (pt.x >= scrollX && pt.x <= (scrollX + SCROLL_TOLERANCE) ||
                     pt.y >= scrollY && pt.y <= (scrollY + SCROLL_TOLERANCE))) {
                    if (System.currentTimeMillis() >= scrollBeginTime) {
                        Rectangle area = text.getClientArea();
                        GC gc = new GC(text);
                        FontMetrics fm = gc.getFontMetrics();
                        gc.dispose();
                        int charWidth = fm.getAverageCharWidth();
                        int scrollAmount = 10*charWidth;
                        if (pt.x < area.x + 3*charWidth) {
                            int leftPixel = text.getHorizontalPixel();
                            text.setHorizontalPixel(leftPixel - scrollAmount);
                        }
                        if (pt.x > area.width - 3*charWidth) {
                            int leftPixel = text.getHorizontalPixel();
                            text.setHorizontalPixel(leftPixel + scrollAmount);
                        }
                        int lineHeight = text.getLineHeight();
                        if (pt.y < area.y + lineHeight) {
                            int topPixel = text.getTopPixel();
                            text.setTopPixel(topPixel - lineHeight);
                        }
                        if (pt.y > area.height - lineHeight) {
                            int topPixel = text.getTopPixel();
                            text.setTopPixel(topPixel + lineHeight);
                        }
                        scrollBeginTime = 0;
                        scrollX = scrollY = -1;
                    }
                } else {
                    scrollBeginTime = System.currentTimeMillis() + SCROLL_HYSTERESIS;
                    scrollX = pt.x;
                    scrollY = pt.y;
                }
            }
        }

        if ((effect & DND.FEEDBACK_SELECT) !is 0) {
            int[] trailing = new int [1];
            int newOffset = text.getOffsetAtPoint(pt.x, pt.y, trailing, false);
            newOffset += trailing [0];
            if (newOffset !is currentOffset) {
                refreshCaret(text, currentOffset, newOffset);
                currentOffset = newOffset;
            }
        }
    }

    void refreshCaret(StyledText text, int oldOffset, int newOffset) {
        if (oldOffset !is newOffset) {
            if (oldOffset !is -1) {
                Point oldPos = text.getLocationAtOffset(oldOffset);
                int oldHeight = text.getLineHeight(oldOffset);
                text.redraw (oldPos.x, oldPos.y, CARET_WIDTH, oldHeight, false);
            }
            if (newOffset !is -1) {
                Point newPos = text.getLocationAtOffset(newOffset);
                int newHeight = text.getLineHeight(newOffset);
                text.redraw (newPos.x, newPos.y, CARET_WIDTH, newHeight, false);
            }
        }
    }

    /**
     * This implementation of <code>dropAccept</code> provides a default drag under effect
     * for the feedback specified in <code>event.feedback</code>.
     *
     * For additional information see <code>DropTargetAdapter.dropAccept</code>.
     *
     * Subclasses that override this method should call <code>super.dropAccept(event)</code>
     * to get the default drag under effect implementation.
     *
     * @param event  the information associated with the drop accept event
     *
     * @see DropTargetAdapter
     * @see DropTargetEvent
     */
    public override void dropAccept(DropTargetEvent event) {
        if (currentOffset !is -1) {
            StyledText text = cast(StyledText) getControl();
            text.setSelection(currentOffset);
            currentOffset = -1;
        }
    }
}