Package com.agifans.picedit.gui

Examples of com.agifans.picedit.gui.PictureCodeList


        this.application = application;
        this.defaultPictureName = defaultPictureName;
        this.editStatus = new EditStatus();
        this.editStatus.setZoomFactor(initialZoomFactor);
        this.picture = new Picture(editStatus);
        this.pictureCodeList = new PictureCodeList(picture);
        this.picture.addPictureChangeListener(pictureCodeList);
        this.egoTestHandler = new EgoTestHandler(editStatus, picture);
        this.picturePanel = new PicturePanel(editStatus, picture, egoTestHandler);
        mouseHandler = new MouseHandler(this, application);
        picturePanel.addMouseListener(mouseHandler);
View Full Code Here


   
    /**
     * Switches the PictureCodeList currently being displayed with the one for the current picture.
     */
    public void switchPictureCodeList() {
        PictureCodeList activeList = this.getPictureFrame().getPictureCodeList();
        pictureCodeScrollPane.setViewportView(activeList);
        pictureCodeScrollPane.repaint();
    }
View Full Code Here

TOP

Related Classes of com.agifans.picedit.gui.PictureCodeList

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.