mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-22 20:31:08 +00:00
30 lines
812 B
C++
30 lines
812 B
C++
/*
|
|
* 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);
|
|
}
|