/* * CiderPress * Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved. * See the file LICENSE for distribution terms. */ /* * Support for the "choose files" dialog. */ #include "stdafx.h" #include "ChooseFilesDlg.h" /* * Override base class version so we can move our stuff around. * * It's important that the base class be called last, because it calls * Invalidate to redraw the dialog. */ void ChooseFilesDlg::ShiftControls(int deltaX, int deltaY) { /* * These only need to be here so that the initial move puts them * where they belong. Once the dialog has been created, the * CFileDialog will move things where they need to go. */ MoveControl(this, IDC_CHOOSEFILES_STATIC1, 0, deltaY, false); SelectFilesDialog::ShiftControls(deltaX, deltaY); }