1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/////////////////////////////////////////////////////////////////////////////
// Copyright (C) 1998 by Jorge Lodos
// All rights reserved
//
// Distribute and use freely, except:
// 1. Don't alter or remove this notice.
// 2. Mark the changes you made
//
// Send bug reports, bug fixes, enhancements, requests, etc. to:
// lodos@cigb.edu.cu
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_PREVIEWFILEDLG_H__1D054314_0872_11D2_8A46_0000E81D3D27__INCLUDED_)
#define AFX_PREVIEWFILEDLG_H__1D054314_0872_11D2_8A46_0000E81D3D27__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// PreviewFileDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPreviewFileDlg dialog
class CPreviewFileDlg : public CFileDialog
{
DECLARE_DYNAMIC(CPreviewFileDlg)
public:
CPreviewFileDlg(BOOL bOpenFileDialog, // true for FileOpen, false for FileSaveAs
LPCTSTR lpszDefExt = NULL,
LPCTSTR lpszFileName = NULL,
DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
LPCTSTR lpszFilter = NULL,
CWnd* pParentWnd = NULL);
// Attributes
private:
bool m_bPreview;
CDIBStatic m_DIBStaticCtrl;
protected:
//{{AFX_MSG(CPreviewFileDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPreview();
afx_msg BOOL OnQueryNewPalette();
afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
afx_msg void OnSetFocus(CWnd* pOldWnd);
//}}AFX_MSG
virtual void OnFileNameChange();
// Implementation
#ifdef _DEBUG
virtual void Dump(CDumpContext& dc) const;
#endif
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PREVIEWFILEDLG_H__1D054314_0872_11D2_8A46_0000E81D3D27__INCLUDED_)
/*
/--------------------------------------------------------------------
|
| $Log: PreView.h,v $
| Revision 1.7 2001/10/06 15:31:10 uzadow
| Fixed open file dialog bug.
|
| Revision 1.6 2001/09/16 19:03:23 uzadow
| Added global name prefix PL, changed most filenames.
|
| Revision 1.5 2000/03/28 21:05:04 Ulrich von Zadow
| Added zoom capability.
|
| Revision 1.4 2000/01/10 23:53:02 Ulrich von Zadow
| Changed formatting & removed tabs.
|
| Revision 1.3 1999/12/02 17:07:36 Ulrich von Zadow
| Changes by bdelmee.
|
|
--------------------------------------------------------------------
*/
|