Package org.apache.isis.viewer.dnd.example

Source Code of org.apache.isis.viewer.dnd.example.DrawingView

/*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/


package org.apache.isis.viewer.dnd.example;

import org.apache.isis.nof.core.util.AsString;
import org.apache.isis.viewer.dnd.Canvas;
import org.apache.isis.viewer.dnd.Content;
import org.apache.isis.viewer.dnd.Toolkit;
import org.apache.isis.viewer.dnd.drawing.Color;
import org.apache.isis.viewer.dnd.drawing.Size;
import org.apache.isis.viewer.dnd.view.simple.AbstractView;


public abstract class DrawingView extends AbstractView {
    private Size requiredSize;

    public DrawingView(final Content content) {
        super(content, null, null);
    }

    public void draw(final Canvas canvas) {
        final int width = requiredSize.getWidth();
        final int height = requiredSize.getHeight();
        final int left = 0, top = 0;
        final int right = 10 + width - 1 + 10;
        final int bottom = 10 + height - 1 + 10;

        Color gray = Toolkit.getColor(0xcccccc);
        // horizontal lines
        canvas.drawLine(left, top + 10, right, top + 10, gray);
        canvas.drawLine(left, bottom - 10, right, bottom - 10, gray);

        // vertical lines
        canvas.drawLine(left + 10, top, left + 10, bottom, gray);
        canvas.drawLine(right - 10, top, right - 10, bottom, gray);

        canvas.drawRectangle(left + 10, top + 10, width - 1, height - 1, Toolkit.getColor(0xeeeeee));

        draw(canvas, left + 10, top + 10);
    }

    protected abstract void draw(final Canvas canvas, final int x, final int y);

    public Size getRequiredSize(final Size maximumSize) {
        Size s = new Size(requiredSize);
        s.extend(20, 20);
        return s;
    }

    public void setMaximumSize(final Size size) {
        this.requiredSize = size;
    }

    public String toString() {
        AsString ts = new AsString(this);
        ts.append("size", requiredSize);
        toString(ts);
        return ts.toString();
    }

    protected abstract void toString(final AsString ts);
}
TOP

Related Classes of org.apache.isis.viewer.dnd.example.DrawingView

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.