ciderpress/app/PasteSpecialDialog.h

41 lines
958 B
C
Raw Normal View History

2007-03-27 17:47:10 +00:00
/*
* CiderPress
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
* See the file LICENSE for distribution terms.
*/
/*
* Paste Special dialog.
*/
#ifndef __PASTESPECIALDIALOG__
#define __PASTESPECIALDIALOG__
#include "resource.h"
/*
* Simple dialog with a radio button.
*/
class PasteSpecialDialog : public CDialog {
public:
PasteSpecialDialog(CWnd* pParentWnd = nil) :
CDialog(IDD_PASTE_SPECIAL, pParentWnd),
fPasteHow(kPastePaths)
{}
virtual ~PasteSpecialDialog() {}
2007-03-27 17:47:10 +00:00
/* right now this is boolean, but that may change */
/* (e.g. "paste clipboard contents into new text file") */
enum {
kPasteUnknown = 0,
kPastePaths,
kPasteNoPaths,
};
int fPasteHow;
2007-03-27 17:47:10 +00:00
protected:
//virtual BOOL OnInitDialog(void);
void DoDataExchange(CDataExchange* pDX);
2007-03-27 17:47:10 +00:00
//DECLARE_MESSAGE_MAP()
2007-03-27 17:47:10 +00:00
};
#endif /*__PASTESPECIALDIALOG__*/