;the main program of the application

object MainForm: TMainForm
  BorderStyle = bsSizeable
  HorzScrollBar.Visible = False
  VertScrollBar.Visible = False
  ClientHeight = 434
  ClientWidth = 592
  FormStyle = fsMDIForm
  OnCloseQuery = FormCloseQuery
  object OpenDocDlg: TExOpenDialog
    Options = [ofAllowMultiSelect, ofPathMustExist, ofFileMustExist]
    Title = 'Abrir documento'
  end
  object OpenPicDlg: TExOpenDialog
    Options = [ofAllowMultiSelect, ofPathMustExist, ofFileMustExist]
    Title = 'Abrir imagen'
  end
  object SaveAsDlg: TExSaveDialog
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
  end
  object SavePicDlg: TExSaveDialog
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar imagen como'
  end
  object SaveAsZipDlg: TExSaveDialog
    Filter = 'Archivos Zip (*.zip)|*.zip|'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar documento(s) como Zip...'
  end
  object SaveAsWebDlg: TExSaveDialog
    Filter = 'Página web (*.htm; *.html)|*.htm;*.html'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar documento como página web...'
  end
  object SaveAsEbookDlg: TExSaveDialog
    Filter = 'eBook (*.epub)|*.epub'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar documento como eBook...'
  end
  object OpenDocProjectDlg: TExOpenDialog
    Filter = 'Documento de proyecto de Atlantis (*.adpr)|*.adpr'
    Options = [ofAllowMultiSelect, ofPathMustExist, ofFileMustExist]
    Title = 'Abrir documento de proyecto'
  end
  object SaveDocProjectDlg: TExSaveDialog
    Filter = 'Documento de proyecto de Atlantis (*.adpr)|*.adpr'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar documento de proyecto como...'
  end
end