mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
39 lines
939 B
C++
39 lines
939 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Choose files and directories.
|
|
*/
|
|
#ifndef __CHOOSEFILESDIALOG__
|
|
#define __CHOOSEFILESDIALOG__
|
|
|
|
#include "../util/UtilLib.h"
|
|
#include "resource.h"
|
|
|
|
class ChooseFilesDlg : public SelectFilesDialog {
|
|
public:
|
|
ChooseFilesDlg(CWnd* pParentWnd = NULL) :
|
|
SelectFilesDialog("IDD_CHOOSE_FILES", pParentWnd)
|
|
{
|
|
SetWindowTitle(_T("Choose Files..."));
|
|
|
|
fAcceptButtonID = IDC_SELECT_ACCEPT;
|
|
}
|
|
virtual ~ChooseFilesDlg(void) {}
|
|
|
|
private:
|
|
//virtual bool MyDataExchange(bool saveAndValidate);
|
|
virtual void ShiftControls(int deltaX, int deltaY);
|
|
//virtual UINT MyOnCommand(WPARAM wParam, LPARAM lParam);
|
|
|
|
//void OnIDHelp(void);
|
|
|
|
//int GetButtonCheck(int id);
|
|
//void SetButtonCheck(int id, int checkVal);
|
|
|
|
//DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*__CHOOSEFILESDIALOG__*/ |