mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-10 04:06:17 +00:00
63b9996009
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.
41 lines
958 B
C++
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__*/ |