Package org.photovault.swingui

Examples of org.photovault.swingui.PhotoInfoController$RawSettingFieldCtrl


     * @param photos Array of the photos that will be edited
     */
    public ColorSettingsDlg(java.awt.Frame parent, boolean modal, PhotoInfo[] photos ) {
        super(parent, modal);
        initComponents();
        ctrl = new PhotoInfoController();
        ctrl.setView( this );
        ctrl.setPhotos( photos );
        checkIsRawPhoto();
        final ColorSettingsDlg staticThis = this;
        this.colorCurvePanel1.addListener( new ColorCurveChangeListener() {
View Full Code Here


     * @param photo The photo that will be edited
     */
    public ColorSettingsDlg(java.awt.Frame parent, boolean modal, PhotoInfo photo ) {
        super(parent, modal);
        initComponents();
        ctrl = new PhotoInfoController();
        ctrl.setPhoto( photo );
        ctrl.setView( this );
        checkIsRawPhoto();
    }
View Full Code Here

TOP

Related Classes of org.photovault.swingui.PhotoInfoController$RawSettingFieldCtrl

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.