/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2015 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

layout DependentFileTransferDialog
{
    view dialog(margin: 0,
                name: "$$$/DependentFileTransferDialog/Label/Title=Dependent Files",
                placement: @place_column,
                resizeChildren: true,
                spacing: 0)
    {
        column(margin: 20)
        {
            row()
            {
                image(image: "MessageBoxCautionIcon");

                static_text(characters: 25,
                            name: "$$$/DependentFileTransferDialog/Label/Prompt=Changes to the following dependent files will also be saved. Deselect the files that you do not want to save");
            }

            row(placement: @place_column,
                spacing: 5)
            {
                subview(height: 120,
                        identifier: "IDC_DEPENDENTFILES_CONTAINER",
                        width: 366);
            }

            row()
            {
                checkbox(	name: "$$$/DependentFileTransferDialog/Label/AlwaysAutoSave=Always auto save dependent files",
							identifier: "IDC_DEPENDENTFILES_ALWAYS_SAVE");
            }
        }

        separator();

        column(horizontal: @align_right,
               indent: 10,
               margin: 10)
        {
            row(horizontal: @align_right)
            {
                column(placement: @place_row,
                       spacing: 4)
                {
                    button(action: @do_cancel,
                           identifier: "IDCANCEL",
                           name: "$$$/DependentFileTransferDialog/Label/Cancel=Cancel");

                    button(action: @do_ok,
                           default: true,
                           identifier: "IDOK",
                           name: "$$$/DependentFileTransferDialog/Label/Save=Save");
                }
            }
        }
    }
}
