* @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() {