mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
41 lines
898 B
C++
41 lines
898 B
C++
/*
|
|
* 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() {}
|
|
|
|
/* 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;
|
|
|
|
protected:
|
|
//virtual BOOL OnInitDialog(void);
|
|
void DoDataExchange(CDataExchange* pDX);
|
|
|
|
//DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*__PASTESPECIALDIALOG__*/ |