Package com.lightcrafts.model

Examples of com.lightcrafts.model.Preview


    }

    TemplatePreview(Engine engine) {
        this();
        this.engine = engine;
        Preview preview = engine.getPreviews().iterator().next();
        add(preview);
    }
View Full Code Here


    void showNormalPreview() {
        if (editControls == null) {
            return;
        }
        disposeEditControls();
        Preview preview = engine.getPreviews().iterator().next();
        removeAll();
        add(preview);
        validate();
        repaint();
    }
View Full Code Here

        }
        revalidate();
    }

    void setDropper(Point p) {
        Preview preview = getPreview();
        if (preview != null) {
            preview.setDropper(p);
        }
    }
View Full Code Here

TOP

Related Classes of com.lightcrafts.model.Preview

Copyright © 2018 www.massapicom. 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.