ciderpress/app/PasteSpecialDialog.h
Andy McFadden 63b9996009 Normalize indentation and EOL
This updates all source files to use spaces instead of tabs for
indentation.  It also normalizes the end-of-line markers to be
Windows-style CRLF, and ensures that all files end with EOL.

No substantive changes were made; "diff -w" is empty.
2014-11-03 16:26:53 -08:00

41 lines
958 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__*/